org.jactr.modules.pm.visual.event
Enum VisualModuleEvent.Type

java.lang.Object
  extended by java.lang.Enum<VisualModuleEvent.Type>
      extended by org.jactr.modules.pm.visual.event.VisualModuleEvent.Type
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<VisualModuleEvent.Type>
Enclosing class:
VisualModuleEvent

public static enum VisualModuleEvent.Type
extends java.lang.Enum<VisualModuleEvent.Type>


Enum Constant Summary
ENCODED
           
PARAMETER_CHANGED
           
RESET
           
SEARCHED
           
START_TRACKING
           
STOP_TRACKING
           
TRACKING_MOVED
           
 
Method Summary
static VisualModuleEvent.Type valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static VisualModuleEvent.Type[] 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
 

Enum Constant Detail

START_TRACKING

public static final VisualModuleEvent.Type START_TRACKING

STOP_TRACKING

public static final VisualModuleEvent.Type STOP_TRACKING

TRACKING_MOVED

public static final VisualModuleEvent.Type TRACKING_MOVED

ENCODED

public static final VisualModuleEvent.Type ENCODED

SEARCHED

public static final VisualModuleEvent.Type SEARCHED

RESET

public static final VisualModuleEvent.Type RESET

PARAMETER_CHANGED

public static final VisualModuleEvent.Type PARAMETER_CHANGED
Method Detail

values

public static final VisualModuleEvent.Type[] 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(VisualModuleEvent.Type c : VisualModuleEvent.Type.values())
        System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they're declared

valueOf

public static VisualModuleEvent.Type 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