public static enum UserProfile.Notifies extends Enum<UserProfile.Notifies>
| Enum Constant and Description |
|---|
ONBLOCK |
ONCOMPLETE |
ONFAILURE |
ONFINISH |
ONFIRSTPICK |
ONPICK |
| Modifier and Type | Method and Description |
|---|---|
String |
toElementString() |
static UserProfile.Notifies |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static UserProfile.Notifies[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final UserProfile.Notifies ONBLOCK
public static final UserProfile.Notifies ONFAILURE
public static final UserProfile.Notifies ONPICK
public static final UserProfile.Notifies ONFIRSTPICK
public static final UserProfile.Notifies ONFINISH
public static final UserProfile.Notifies ONCOMPLETE
public static UserProfile.Notifies[] values()
for (UserProfile.Notifies c : UserProfile.Notifies.values()) System.out.println(c);
public static UserProfile.Notifies 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 toElementString()