palio.modules.snmp.engine
Enum SnmpCommonEngine.EngineState
java.lang.Object
   java.lang.Enum<SnmpCommonEngine.EngineState>
java.lang.Enum<SnmpCommonEngine.EngineState>
       palio.modules.snmp.engine.SnmpCommonEngine.EngineState
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>
 
 
| 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 | 
 
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
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)
-