public enum DelegateAction extends Enum<DelegateAction>
| Modifier and Type | Class and Description |
|---|---|
static class |
DelegateAction.Adapter
Converts a String to a DelegateAction, and vice versa.
|
| Modifier and Type | Method and Description |
|---|---|
static DelegateAction |
fromString(String stringValue)
Returns the DelegateAction represented by the supplied string.
|
String |
toString() |
static DelegateAction |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DelegateAction[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DelegateAction FOR
public static final DelegateAction AGAINST
public static final DelegateAction WITHDREW
public static DelegateAction[] values()
for (DelegateAction c : DelegateAction.values()) System.out.println(c);
public static DelegateAction 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 nullpublic String toString()
toString in class Enum<DelegateAction>public static DelegateAction fromString(String stringValue)
stringValue - the supplied string.Copyright © 2017. All rights reserved.