net.sf.rej.gui.event
Enum EventType
java.lang.Object
java.lang.Enum<EventType>
net.sf.rej.gui.event.EventType
- All Implemented Interfaces:
- java.io.Serializable, java.lang.Comparable<EventType>
public enum EventType
- extends java.lang.Enum<EventType>
Method Summary |
static EventType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static EventType[] |
values()
Returns an array containing the constants of this enum type, in
the order they're declared. |
Methods inherited from class java.lang.Enum |
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
getClass, notify, notifyAll, wait, wait, wait |
INIT
public static final EventType INIT
PROJECT_UPDATE
public static final EventType PROJECT_UPDATE
CLASS_OPEN
public static final EventType CLASS_OPEN
CLASS_UPDATE
public static final EventType CLASS_UPDATE
CLASS_REPARSE
public static final EventType CLASS_REPARSE
CLASS_PARSE_ERROR
public static final EventType CLASS_PARSE_ERROR
DEBUG_ATTACH
public static final EventType DEBUG_ATTACH
DEBUG_DETACH
public static final EventType DEBUG_DETACH
DEBUG_THREAD_CHANGE_REQUESTED
public static final EventType DEBUG_THREAD_CHANGE_REQUESTED
DEBUG_THREAD_CHANGED
public static final EventType DEBUG_THREAD_CHANGED
DEBUG_STACK_FRAME_CHANGE_REQUESTED
public static final EventType DEBUG_STACK_FRAME_CHANGE_REQUESTED
DEBUG_STACK_FRAME_CHANGED
public static final EventType DEBUG_STACK_FRAME_CHANGED
DEBUG_SUSPEND_REQUESTED
public static final EventType DEBUG_SUSPEND_REQUESTED
DEBUG_RESUME_REQUESTED
public static final EventType DEBUG_RESUME_REQUESTED
DEBUG_SUSPENDED
public static final EventType DEBUG_SUSPENDED
DEBUG_RESUMED
public static final EventType DEBUG_RESUMED
DEBUG_STEP_INTO_REQUESTED
public static final EventType DEBUG_STEP_INTO_REQUESTED
DEBUG_STEP_OVER_REQUESTED
public static final EventType DEBUG_STEP_OVER_REQUESTED
DEBUG_STEP_OUT_REQUESTED
public static final EventType DEBUG_STEP_OUT_REQUESTED
DISPLAY_PARAMETER_UPDATE
public static final EventType DISPLAY_PARAMETER_UPDATE
values
public static final EventType[] values()
- Returns an array containing the constants of this enum type, in
the order they're declared. This method may be used to iterate
over the constants as follows:
for(EventType c : EventType.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they're declared
valueOf
public static EventType valueOf(java.lang.String name)
- Returns the enum constant of this type with the specified name.
The string must match exactly an identifier used to declare an
enum constant in this type. (Extraneous whitespace characters are
not permitted.)
- Parameters:
name
- the name of the enum constant to be returned.
- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException
- if this enum type has no constant
with the specified name