public enum BillingMode extends java.lang.Enum<BillingMode>
| Enum Constant and Description |
|---|
IN_ADVANCE |
IN_ARREAR |
| Modifier and Type | Method and Description |
|---|---|
static BillingMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static BillingMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BillingMode IN_ADVANCE
public static final BillingMode IN_ARREAR
public static BillingMode[] values()
for (BillingMode c : BillingMode.values()) System.out.println(c);
public static BillingMode valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullCopyright © 2010-2019. All Rights Reserved.