public enum LoyaltyHandlingEnumeration extends Enum<LoyaltyHandlingEnumeration>
Java class for LoyaltyHandlingEnumeration.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="LoyaltyHandlingEnumeration">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="Forbidden"/>
<enumeration value="Processed"/>
<enumeration value="Allowed"/>
<enumeration value="Proposed"/>
<enumeration value="Required"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
ALLOWED
The loyalty is accepted, but the POI has not to require or ask a loyalty card.
|
FORBIDDEN
No loyalty card to read and loyalty transaction to process.
|
PROCESSED
The loyalty transaction is already processed, no loyalty card or loyalty transaction to process.
|
PROPOSED
The loyalty is accepted, and the POI has to ask a loyalty card.
|
REQUIRED
The loyalty is required, and the POI refuses the processing of the message request if the cardholder does not entre a loyalty card
|
| Modifier and Type | Method and Description |
|---|---|
static LoyaltyHandlingEnumeration |
fromValue(String v) |
String |
value() |
static LoyaltyHandlingEnumeration |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static LoyaltyHandlingEnumeration[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LoyaltyHandlingEnumeration FORBIDDEN
public static final LoyaltyHandlingEnumeration PROCESSED
public static final LoyaltyHandlingEnumeration ALLOWED
public static final LoyaltyHandlingEnumeration PROPOSED
public static final LoyaltyHandlingEnumeration REQUIRED
public static LoyaltyHandlingEnumeration[] values()
for (LoyaltyHandlingEnumeration c : LoyaltyHandlingEnumeration.values()) System.out.println(c);
public static LoyaltyHandlingEnumeration 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 LoyaltyHandlingEnumeration fromValue(String v)
Copyright © 2018. All rights reserved.