Thread$State.h 901 B

123456789101112131415161718192021222324252627282930313233
  1. // DO NOT EDIT THIS FILE - it is machine generated -*- c++ -*-
  2. #ifndef __java_lang_Thread$State__
  3. #define __java_lang_Thread$State__
  4. #pragma interface
  5. #include <java/lang/Enum.h>
  6. #include <gcj/array.h>
  7. class java::lang::Thread$State : public ::java::lang::Enum
  8. {
  9. Thread$State(::java::lang::String *, jint);
  10. public:
  11. static JArray< ::java::lang::Thread$State * > * values();
  12. static ::java::lang::Thread$State * valueOf(::java::lang::String *);
  13. static ::java::lang::Thread$State * BLOCKED;
  14. static ::java::lang::Thread$State * NEW;
  15. static ::java::lang::Thread$State * RUNNABLE;
  16. static ::java::lang::Thread$State * TERMINATED;
  17. static ::java::lang::Thread$State * TIMED_WAITING;
  18. static ::java::lang::Thread$State * WAITING;
  19. private:
  20. static JArray< ::java::lang::Thread$State * > * ENUM$VALUES;
  21. public:
  22. static ::java::lang::Class class$;
  23. };
  24. #endif // __java_lang_Thread$State__