@PublicAPI public enum RMEventType extends Enum<RMEventType>
RMMonitoring
Enum Constant and Description |
---|
NODE_ADDED
/**
A new node has been added to Resource manager, and is ready to
be provided to a RM user.
|
NODE_REMOVED
A node has been removed from Resource manager
|
NODE_STATE_CHANGED
Node state has been changed.
|
NODESOURCE_CREATED
The node source has been deployed, i.e.
|
NODESOURCE_DEFINED
The node source has been defined in the resource manager.
|
NODESOURCE_REMOVED
A node source has been removed from resource manager.
|
NODESOURCE_SHUTDOWN
The node source has been shutdown, i.e.
|
NODESOURCE_UPDATED
The node source has been updated, i.e.
|
SHUTDOWN
Resource manager has been shutdown.
|
SHUTTING_DOWN
Resource manager cessation as been asked, so Resource manager performs
shutting down operations.
|
STARTED
Resource manager has been launched.
|
Modifier and Type | Method and Description |
---|---|
String |
getDescription() |
static RMEventType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RMEventType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RMEventType SHUTDOWN
public static final RMEventType SHUTTING_DOWN
public static final RMEventType STARTED
public static final RMEventType NODESOURCE_DEFINED
public static final RMEventType NODESOURCE_CREATED
public static final RMEventType NODESOURCE_UPDATED
public static final RMEventType NODESOURCE_SHUTDOWN
public static final RMEventType NODESOURCE_REMOVED
public static final RMEventType NODE_ADDED
public static final RMEventType NODE_STATE_CHANGED
public static final RMEventType NODE_REMOVED
public static RMEventType[] values()
for (RMEventType c : RMEventType.values()) System.out.println(c);
public static RMEventType valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullpublic String getDescription()