/**@class java.lang.Thread.State
@extends java.lang.Enum

 A representation of a thread's state. A given thread may only be in one
 state at a time.
*/
var State = {

/** The thread has been created, but has never been started.
*/
NEW : "null",
/** The thread may be run.
*/
RUNNABLE : "null",
/** The thread is blocked and waiting for a lock.
*/
BLOCKED : "null",
/** The thread is waiting.
*/
WAITING : "null",
/** The thread is waiting for a specified amount of time.
*/
TIMED_WAITING : "null",
/** The thread has been terminated.
*/
TERMINATED : "null",
/**
*/
values : function(  ) {},

/**
*/
valueOf : function(  ) {},


};