public enum TransactionLocationTypeEnum extends Enum<TransactionLocationTypeEnum>
Java class for TransactionLocationTypeEnum.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="TransactionLocationTypeEnum">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="WithinFrance"/>
<enumeration value="FranceOverseas"/>
<enumeration value="OutsideFranceWithEU"/>
<enumeration value="OutsideEU"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
FRANCE_OVERSEAS |
OUTSIDE_EU |
OUTSIDE_FRANCE_WITH_EU |
WITHIN_FRANCE |
| Modifier and Type | Method and Description |
|---|---|
static TransactionLocationTypeEnum |
fromValue(String v) |
String |
value() |
static TransactionLocationTypeEnum |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TransactionLocationTypeEnum[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TransactionLocationTypeEnum WITHIN_FRANCE
public static final TransactionLocationTypeEnum FRANCE_OVERSEAS
public static final TransactionLocationTypeEnum OUTSIDE_FRANCE_WITH_EU
public static final TransactionLocationTypeEnum OUTSIDE_EU
public static TransactionLocationTypeEnum[] values()
for (TransactionLocationTypeEnum c : TransactionLocationTypeEnum.values()) System.out.println(c);
public static TransactionLocationTypeEnum 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 TransactionLocationTypeEnum fromValue(String v)
Copyright © 2017. All rights reserved.