public static enum IMonitorSpendingStatusResultListener.MonitoringAction extends java.lang.Enum<IMonitorSpendingStatusResultListener.MonitoringAction>
enumeration lists the possible actions: no action, created, changed, or canceled.| Enum Constant and Description |
|---|
CANCELED
When a same monitoring (identified by monitoringId) is requested with a
null set of spending status. |
CHANGED
When a same monitoring (identified by monitoringId) has already done with at least one different argument in:
identifier of the report listener
user service identifier
set of spending status
By this way, the monitoring is updated.
|
CREATED
When a monitoring (identified by monitoringId) is requested for the first time.
|
NO_ACTION
When a same monitoring (identified by monitoringId) has already done with same:
identifier of the report listener
user service identifier
set of spending status
By this way, nothing changed regarding the monitoring.
|
| Modifier and Type | Method and Description |
|---|---|
static IMonitorSpendingStatusResultListener.MonitoringAction |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static IMonitorSpendingStatusResultListener.MonitoringAction[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final IMonitorSpendingStatusResultListener.MonitoringAction NO_ACTION
NO_ACTIONpublic static final IMonitorSpendingStatusResultListener.MonitoringAction CREATED
CREATEDpublic static final IMonitorSpendingStatusResultListener.MonitoringAction CHANGED
CHANGEDpublic static final IMonitorSpendingStatusResultListener.MonitoringAction CANCELED
null set of spending status.
By this way, the monitoring is stopped and removed.
The result of the request is set to CANCELEDpublic static IMonitorSpendingStatusResultListener.MonitoringAction[] values()
for (IMonitorSpendingStatusResultListener.MonitoringAction c : IMonitorSpendingStatusResultListener.MonitoringAction.values()) System.out.println(c);
public static IMonitorSpendingStatusResultListener.MonitoringAction 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