public enum SmsOperationExecution extends java.lang.Enum<SmsOperationExecution>
| Enum Constant and Description |
|---|
ALL
There is no restriction to the execution of an operation
|
ONLY_BY_GUESTS
Only guests can execute an operation.
|
ONLY_BY_REGISTERED_USERS
Only already registered users can execute an operation.
|
| Modifier and Type | Method and Description |
|---|---|
static SmsOperationExecution |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static SmsOperationExecution[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SmsOperationExecution ALL
public static final SmsOperationExecution ONLY_BY_REGISTERED_USERS
public static final SmsOperationExecution ONLY_BY_GUESTS
public static SmsOperationExecution[] values()
for (SmsOperationExecution c : SmsOperationExecution.values()) System.out.println(c);
public static SmsOperationExecution 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