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