public enum DryRunType extends Enum<DryRunType>
| Enum Constant and Description |
|---|
SUBSCRIPTION_ACTION |
TARGET_DATE |
UPCOMING_INVOICE |
| Modifier and Type | Method and Description |
|---|---|
static DryRunType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DryRunType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DryRunType TARGET_DATE
public static final DryRunType UPCOMING_INVOICE
public static final DryRunType SUBSCRIPTION_ACTION
public static DryRunType[] values()
for (DryRunType c : DryRunType.values()) System.out.println(c);
public static DryRunType 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 © 2010-2016. All Rights Reserved.