- java.lang.Object
-
- java.lang.Enum<MOServerLookupEvent.IntendedUse>
-
- org.snmp4j.agent.MOServerLookupEvent.IntendedUse
-
- All Implemented Interfaces:
Serializable
,Comparable<MOServerLookupEvent.IntendedUse>
- Enclosing class:
- MOServerLookupEvent
public static enum MOServerLookupEvent.IntendedUse extends Enum<MOServerLookupEvent.IntendedUse>
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static MOServerLookupEvent.IntendedUse
valueOf(String name)
Returns the enum constant of this type with the specified name.static MOServerLookupEvent.IntendedUse[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
undefined
public static final MOServerLookupEvent.IntendedUse undefined
-
register
public static final MOServerLookupEvent.IntendedUse register
-
get
public static final MOServerLookupEvent.IntendedUse get
-
getNext
public static final MOServerLookupEvent.IntendedUse getNext
-
prepare
public static final MOServerLookupEvent.IntendedUse prepare
-
commit
public static final MOServerLookupEvent.IntendedUse commit
-
undo
public static final MOServerLookupEvent.IntendedUse undo
-
cleanUp
public static final MOServerLookupEvent.IntendedUse cleanUp
-
update
public static final MOServerLookupEvent.IntendedUse update
-
unregister
public static final MOServerLookupEvent.IntendedUse unregister
-
-
Method Detail
-
values
public static MOServerLookupEvent.IntendedUse[] 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 (MOServerLookupEvent.IntendedUse c : MOServerLookupEvent.IntendedUse.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static MOServerLookupEvent.IntendedUse valueOf(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:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
-