@Deprecated public enum ActionOperationType extends Enum<ActionOperationType>
DeliveryPreferenceDeliveryPreference,
UserRuleSet| Enum Constant and Description |
|---|
BROADCAST
Deprecated.
Broadcast -- send message to all the addresses in the list
|
DO_NOT_SEND
Deprecated.
Do not send to any address.
|
FAIL_OVER
Deprecated.
Fail Over -- send message in order to the addresses in the list.
|
| Modifier and Type | Method and Description |
|---|---|
static ActionOperationType |
valueOf(String name)
Deprecated.
Returns the enum constant of this type with the specified name.
|
static ActionOperationType[] |
values()
Deprecated.
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ActionOperationType BROADCAST
public static final ActionOperationType FAIL_OVER
public static final ActionOperationType DO_NOT_SEND
public static ActionOperationType[] values()
for (ActionOperationType c : ActionOperationType.values()) System.out.println(c);
public static ActionOperationType 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 nullCopyright © 2009,2013 Oracle and/or its affiliates. All rights reserved.