public enum AutopaymentModeParameter extends java.lang.Enum<AutopaymentModeParameter>
Enum Constant and Description |
---|
AUTO_DAY_SUM |
AUTO_MONTH_SUM |
AUTO_WEEK_SUM |
MONTH_DAY |
MONTH_SUM |
WEEK_DAY |
WEEK_SUM |
Modifier and Type | Method and Description |
---|---|
static AutopaymentModeParameter |
getAutopaymentModeParameterByKey(java.lang.String key) |
java.lang.String |
getKey() |
java.lang.String |
getTitle() |
static AutopaymentModeParameter |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AutopaymentModeParameter[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AutopaymentModeParameter WEEK_DAY
public static final AutopaymentModeParameter WEEK_SUM
public static final AutopaymentModeParameter MONTH_DAY
public static final AutopaymentModeParameter MONTH_SUM
public static final AutopaymentModeParameter AUTO_DAY_SUM
public static final AutopaymentModeParameter AUTO_WEEK_SUM
public static final AutopaymentModeParameter AUTO_MONTH_SUM
public static AutopaymentModeParameter[] values()
for (AutopaymentModeParameter c : AutopaymentModeParameter.values()) System.out.println(c);
public static AutopaymentModeParameter 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 java.lang.String getKey()
public java.lang.String getTitle()
public static AutopaymentModeParameter getAutopaymentModeParameterByKey(java.lang.String key)