private static enum ServiceControllerImpl.ListenerNotification extends java.lang.Enum<ServiceControllerImpl.ListenerNotification>
| Enum Constant and Description |
|---|
DEPENDENCY_FAILURE
Notify the listener that a dependency failure occurred.
|
DEPENDENCY_FAILURE_CLEAR
Notify the listener that all dependency failures are cleared.
|
IMMEDIATE_DEPENDENCY_AVAILABLE
Notify the listener that all previously unavailable immediate dependencies are now available.
|
IMMEDIATE_DEPENDENCY_UNAVAILABLE
Notify the listener that an immediate dependency is unavailable.
|
LISTENER_ADDED
Notify the listener that is has been added.
|
REMOVE_REQUEST_CLEARED
Notify the listener that the service is no longer going to be removed.
|
REMOVE_REQUESTED
Notify the listener that the service is going to be removed.
|
TRANSITION
Notifications related to the current state.
|
TRANSITIVE_DEPENDENCY_AVAILABLE
Notify the listener that all previously unavailable transitive dependencies are now available.
|
TRANSITIVE_DEPENDENCY_UNAVAILABLE
Notify the listener a transitive dependency is unavailable.
|
| Modifier and Type | Method and Description |
|---|---|
static ServiceControllerImpl.ListenerNotification |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ServiceControllerImpl.ListenerNotification[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ServiceControllerImpl.ListenerNotification LISTENER_ADDED
public static final ServiceControllerImpl.ListenerNotification TRANSITION
public static final ServiceControllerImpl.ListenerNotification DEPENDENCY_FAILURE
public static final ServiceControllerImpl.ListenerNotification DEPENDENCY_FAILURE_CLEAR
public static final ServiceControllerImpl.ListenerNotification IMMEDIATE_DEPENDENCY_UNAVAILABLE
public static final ServiceControllerImpl.ListenerNotification IMMEDIATE_DEPENDENCY_AVAILABLE
public static final ServiceControllerImpl.ListenerNotification TRANSITIVE_DEPENDENCY_UNAVAILABLE
public static final ServiceControllerImpl.ListenerNotification TRANSITIVE_DEPENDENCY_AVAILABLE
public static final ServiceControllerImpl.ListenerNotification REMOVE_REQUESTED
public static final ServiceControllerImpl.ListenerNotification REMOVE_REQUEST_CLEARED
public static ServiceControllerImpl.ListenerNotification[] values()
for (ServiceControllerImpl.ListenerNotification c : ServiceControllerImpl.ListenerNotification.values()) System.out.println(c);
public static ServiceControllerImpl.ListenerNotification valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null