public enum BillingStatus extends Enum<BillingStatus>
Enum Constant and Description |
---|
BILLABLE |
CLOSED |
FIXED_FEE_TRANSACTION |
IN_PROCESS |
NO_BILLING |
Modifier and Type | Method and Description |
---|---|
static BillingStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BillingStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BillingStatus BILLABLE
public static final BillingStatus IN_PROCESS
public static final BillingStatus CLOSED
public static final BillingStatus NO_BILLING
public static final BillingStatus FIXED_FEE_TRANSACTION
public static BillingStatus[] values()
for (BillingStatus c : BillingStatus.values()) System.out.println(c);
public static BillingStatus 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 © 2010–2016. All rights reserved.