jeters.core
Enum UIRequest.Type

java.lang.Object
  extended by java.lang.Enum<UIRequest.Type>
      extended by jeters.core.UIRequest.Type
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<UIRequest.Type>
Enclosing class:
UIRequest

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

enumeration of possible request types. Every request type has a corresponding class, e.g. UIRequest_Boolean for Type.Request_Boolean. These are the only possible types of requests, as UI classes won't recognize other types and subclasses.


Enum Constant Summary
Request_Boolean
           
Request_Float
           
Request_Integer
           
Request_Output
           
Request_Selection
           
Request_String
           
 
Method Summary
static UIRequest.Type valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static UIRequest.Type[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

Request_Boolean

public static final UIRequest.Type Request_Boolean

Request_String

public static final UIRequest.Type Request_String

Request_Integer

public static final UIRequest.Type Request_Integer

Request_Float

public static final UIRequest.Type Request_Float

Request_Selection

public static final UIRequest.Type Request_Selection

Request_Output

public static final UIRequest.Type Request_Output
Method Detail

values

public static UIRequest.Type[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
for (UIRequest.Type c : UIRequest.Type.values())
    System.out.println(c);

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

valueOf

public static UIRequest.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
java.lang.NullPointerException - if the argument is null