Package org.forgerock.am.config
Enum Listener.ServiceListenerEvent
- java.lang.Object
-
- java.lang.Enum<Listener.ServiceListenerEvent>
-
- org.forgerock.am.config.Listener.ServiceListenerEvent
-
- All Implemented Interfaces:
Serializable
,Comparable<Listener.ServiceListenerEvent>
- Enclosing class:
- Listener
public static enum Listener.ServiceListenerEvent extends Enum<Listener.ServiceListenerEvent>
Represents an event provided to a service listener. Allows mapping from old integer representation.
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static Listener.ServiceListenerEvent
valueOf(String name)
Returns the enum constant of this type with the specified name.static Listener.ServiceListenerEvent[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ADDED
public static final Listener.ServiceListenerEvent ADDED
-
MODIFIED
public static final Listener.ServiceListenerEvent MODIFIED
-
REMOVED
public static final Listener.ServiceListenerEvent REMOVED
-
-
Method Detail
-
values
public static Listener.ServiceListenerEvent[] 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 (Listener.ServiceListenerEvent c : Listener.ServiceListenerEvent.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Listener.ServiceListenerEvent 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
-
-