Package io.sendon.sms.response
Enum GetGroup.immediatelyAction
- java.lang.Object
-
- java.lang.Enum<GetGroup.immediatelyAction>
-
- io.sendon.sms.response.GetGroup.immediatelyAction
-
- All Implemented Interfaces:
Serializable,Comparable<GetGroup.immediatelyAction>
- Enclosing class:
- GetGroup
public static enum GetGroup.immediatelyAction extends Enum<GetGroup.immediatelyAction>
-
-
Field Summary
Fields Modifier and Type Field Description StringimmediatelyAction
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static GetGroup.immediatelyActionvalueOf(String name)Returns the enum constant of this type with the specified name.static GetGroup.immediatelyAction[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NONE
public static final GetGroup.immediatelyAction NONE
-
CANCEL
public static final GetGroup.immediatelyAction CANCEL
-
SEND
public static final GetGroup.immediatelyAction SEND
-
-
Field Detail
-
immediatelyAction
public final String immediatelyAction
-
-
Method Detail
-
values
public static GetGroup.immediatelyAction[] 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 (GetGroup.immediatelyAction c : GetGroup.immediatelyAction.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static GetGroup.immediatelyAction 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
-
-