Package com.uc4.communication.requests
Enum ModifyNotificationMonitor.Action
- java.lang.Object
-
- java.lang.Enum<ModifyNotificationMonitor.Action>
-
- com.uc4.communication.requests.ModifyNotificationMonitor.Action
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<ModifyNotificationMonitor.Action>
- Enclosing class:
- ModifyNotificationMonitor
public static enum ModifyNotificationMonitor.Action extends java.lang.Enum<ModifyNotificationMonitor.Action>
Action in a notification monitor.
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ModifyNotificationMonitor.Action
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static ModifyNotificationMonitor.Action[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ACCEPT
public static final ModifyNotificationMonitor.Action ACCEPT
Accept (Type alert).
-
DONE
public static final ModifyNotificationMonitor.Action DONE
Done (Type alert).
-
REJECT
public static final ModifyNotificationMonitor.Action REJECT
Reject (Type alert).
-
YES
public static final ModifyNotificationMonitor.Action YES
Check back: Yes (Type request).
-
NO
public static final ModifyNotificationMonitor.Action NO
Check back: No (Type request).
-
OK
public static final ModifyNotificationMonitor.Action OK
Confirm (Type message).
-
-
Method Detail
-
values
public static ModifyNotificationMonitor.Action[] 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 (ModifyNotificationMonitor.Action c : ModifyNotificationMonitor.Action.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ModifyNotificationMonitor.Action valueOf(java.lang.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:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
-