palio.modules.snmp.engine
Enum SnmpCommonEngine.EngineState

java.lang.Object
  extended by java.lang.Enum<SnmpCommonEngine.EngineState>
      extended by palio.modules.snmp.engine.SnmpCommonEngine.EngineState
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<SnmpCommonEngine.EngineState>
Enclosing class:
SnmpCommonEngine

public static enum SnmpCommonEngine.EngineState
extends java.lang.Enum<SnmpCommonEngine.EngineState>


Enum Constant Summary
CREATING
           
FAILED
           
LIMITED_LISTENING
           
LISTENING
           
STOPPED
           
 
Method Summary
 java.lang.Boolean isEqualOrHigherThan(SnmpCommonEngine.EngineState state)
           
static SnmpCommonEngine.EngineState valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static SnmpCommonEngine.EngineState[] 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

FAILED

public static final SnmpCommonEngine.EngineState FAILED

STOPPED

public static final SnmpCommonEngine.EngineState STOPPED

CREATING

public static final SnmpCommonEngine.EngineState CREATING

LIMITED_LISTENING

public static final SnmpCommonEngine.EngineState LIMITED_LISTENING

LISTENING

public static final SnmpCommonEngine.EngineState LISTENING
Method Detail

values

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

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

valueOf

public static SnmpCommonEngine.EngineState 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

isEqualOrHigherThan

public java.lang.Boolean isEqualOrHigherThan(SnmpCommonEngine.EngineState state)