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