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