rina.ipcProcess.enrollment
Enum EnrollmentHandler.state

java.lang.Object
  extended by java.lang.Enum<EnrollmentHandler.state>
      extended by rina.ipcProcess.enrollment.EnrollmentHandler.state
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<EnrollmentHandler.state>
Enclosing class:
EnrollmentHandler

public static enum EnrollmentHandler.state
extends java.lang.Enum<EnrollmentHandler.state>

NMS state

Since:
1.0
Version:
1.0

Enum Constant Summary
LISTENING
           
NULL
           
UPDATING_IDD
           
UPDATING_RIB
           
WAIT_FOR_DELETE
           
WAIT_FOR_DNS
           
WAIT_FOR_IDD
           
WAIT_FOR_START
           
 
Method Summary
static EnrollmentHandler.state valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static EnrollmentHandler.state[] values()
          Returns an array containing the constants of this enum type, in the order they are 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

LISTENING

public static final EnrollmentHandler.state LISTENING

WAIT_FOR_START

public static final EnrollmentHandler.state WAIT_FOR_START

WAIT_FOR_DELETE

public static final EnrollmentHandler.state WAIT_FOR_DELETE

UPDATING_RIB

public static final EnrollmentHandler.state UPDATING_RIB

UPDATING_IDD

public static final EnrollmentHandler.state UPDATING_IDD

WAIT_FOR_DNS

public static final EnrollmentHandler.state WAIT_FOR_DNS

WAIT_FOR_IDD

public static final EnrollmentHandler.state WAIT_FOR_IDD

NULL

public static final EnrollmentHandler.state NULL
Method Detail

values

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

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

valueOf

public static EnrollmentHandler.state 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