Serializable, Comparable<InstallmentPlanType>public enum InstallmentPlanType extends Enum<InstallmentPlanType>
| Enum Constant | Description |
|---|---|
FIXED_CYCLE_AMOUNT |
|
FIXED_CYCLES |
|
REVOLVING |
| Modifier and Type | Method | Description |
|---|---|---|
static InstallmentPlanType |
valueOf(String name) |
Returns the enum constant of this type with the specified name.
|
static InstallmentPlanType[] |
values() |
Returns an array containing the constants of this enum type, in
the order they are declared.
|
@SerializedName("revolving")
public static final InstallmentPlanType REVOLVING
@SerializedName("fixed_cycles")
public static final InstallmentPlanType FIXED_CYCLES
@SerializedName("fixed_cycle_amount")
public static final InstallmentPlanType FIXED_CYCLE_AMOUNT
public static InstallmentPlanType[] values()
for (InstallmentPlanType c : InstallmentPlanType.values()) System.out.println(c);
public static InstallmentPlanType 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 © 2018 The Apache Software Foundation. All rights reserved.