public enum InstalmentType extends Enum<InstalmentType>
Java class for InstalmentType.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="InstalmentType">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="DeferredInstalments"/>
<enumeration value="EqualInstalments"/>
<enumeration value="InequalInstalments"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
DEFERRED_INSTALMENTS
The payment of the service or goods is deferred.
|
EQUAL_INSTALMENTS
The payment is split in several instalments of equal amounts.
|
INEQUAL_INSTALMENTS
The payment is split in several instalments of different amounts.
|
| Modifier and Type | Method and Description |
|---|---|
static InstalmentType |
fromValue(String v)
From value instalment type.
|
String |
value()
Value string.
|
static InstalmentType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static InstalmentType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final InstalmentType DEFERRED_INSTALMENTS
public static final InstalmentType EQUAL_INSTALMENTS
public static final InstalmentType INEQUAL_INSTALMENTS
public static InstalmentType[] values()
for (InstalmentType c : InstalmentType.values()) System.out.println(c);
public static InstalmentType 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 nullpublic String value()
public static InstalmentType fromValue(String v)
v - the vCopyright © 2022. All rights reserved.