org.commonreality.identifier
Enum IIdentifier.Type

java.lang.Object
  extended by java.lang.Enum<IIdentifier.Type>
      extended by org.commonreality.identifier.IIdentifier.Type
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<IIdentifier.Type>
Enclosing interface:
IIdentifier

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


Enum Constant Summary
AFFERENT
           
AGENT
           
EFFERENT
           
EFFERENT_COMMAND
           
OBJECT
           
OTHER
           
REALITY
           
SENSOR
           
 
Method Summary
static IIdentifier.Type valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static IIdentifier.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

REALITY

public static final IIdentifier.Type REALITY

SENSOR

public static final IIdentifier.Type SENSOR

AGENT

public static final IIdentifier.Type AGENT

OBJECT

public static final IIdentifier.Type OBJECT

AFFERENT

public static final IIdentifier.Type AFFERENT

EFFERENT

public static final IIdentifier.Type EFFERENT

EFFERENT_COMMAND

public static final IIdentifier.Type EFFERENT_COMMAND

OTHER

public static final IIdentifier.Type OTHER
Method Detail

values

public static final IIdentifier.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(IIdentifier.Type c : IIdentifier.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 IIdentifier.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