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