public enum ServicesEnabledType extends Enum<ServicesEnabledType>
Java class for ServicesEnabledType.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="ServicesEnabledType">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="CardAcquisition"/>
<enumeration value="Payment"/>
<enumeration value="Loyalty"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
CARD_ACQUISITION
Enable the POI to process a card acquisition before the request of the Sale System (e.g.
|
LOYALTY
Enable the POI to start a loyalty transaction before the request of the Sale System (e.g.
|
PAYMENT
Enable the POI to start a payment transaction before the request of the Sale System (e.g.
|
| Modifier and Type | Method and Description |
|---|---|
static ServicesEnabledType |
fromValue(String v)
From value services enabled type.
|
String |
value()
Value string.
|
static ServicesEnabledType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ServicesEnabledType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ServicesEnabledType CARD_ACQUISITION
public static final ServicesEnabledType PAYMENT
public static final ServicesEnabledType LOYALTY
public static ServicesEnabledType[] values()
for (ServicesEnabledType c : ServicesEnabledType.values()) System.out.println(c);
public static ServicesEnabledType 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 ServicesEnabledType fromValue(String v)
v - the vCopyright © 2022. All rights reserved.