public enum InstalmentTypeEnumeration extends Enum<InstalmentTypeEnumeration>
Java class for InstalmentTypeEnumeration.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="InstalmentTypeEnumeration">
<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 InstalmentTypeEnumeration |
fromValue(String v) |
String |
value() |
static InstalmentTypeEnumeration |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static InstalmentTypeEnumeration[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final InstalmentTypeEnumeration DEFERRED_INSTALMENTS
public static final InstalmentTypeEnumeration EQUAL_INSTALMENTS
public static final InstalmentTypeEnumeration INEQUAL_INSTALMENTS
public static InstalmentTypeEnumeration[] values()
for (InstalmentTypeEnumeration c : InstalmentTypeEnumeration.values()) System.out.println(c);
public static InstalmentTypeEnumeration 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 InstalmentTypeEnumeration fromValue(String v)
Copyright © 2018. All rights reserved.