public enum DestinyType extends Enum<DestinyType>
| Enum Constant and Description |
|---|
CUSTOM_EMAIL |
CUSTOMER |
THIRD_PARTY |
| Modifier and Type | Method and Description |
|---|---|
static DestinyType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DestinyType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DestinyType CUSTOMER
public static final DestinyType THIRD_PARTY
public static final DestinyType CUSTOM_EMAIL
public static DestinyType[] values()
for (DestinyType c : DestinyType.values()) System.out.println(c);
public static DestinyType 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 © 2017. All rights reserved.