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