public enum AutopaymentMode extends java.lang.Enum<AutopaymentMode>
Modifier and Type | Method and Description |
---|---|
static AutopaymentMode |
getAutopaymentModeByCode(int code) |
int |
getCode() |
java.lang.String |
toString() |
static AutopaymentMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AutopaymentMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AutopaymentMode OFF
public static final AutopaymentMode WEEK
public static final AutopaymentMode MONTH
public static final AutopaymentMode AUTO
public static AutopaymentMode[] values()
for (AutopaymentMode c : AutopaymentMode.values()) System.out.println(c);
public static AutopaymentMode 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 nullpublic int getCode()
public java.lang.String toString()
toString
in class java.lang.Enum<AutopaymentMode>
public static AutopaymentMode getAutopaymentModeByCode(int code)