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