public enum IdentificationSupportEnumeration extends Enum<IdentificationSupportEnumeration>
Java class for IdentificationSupportEnumeration.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="IdentificationSupportEnumeration">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="NoCard"/>
<enumeration value="LoyaltyCard"/>
<enumeration value="HybridCard"/>
<enumeration value="LinkedCard"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
HYBRID_CARD
The identification is on a card which might be used both for the loyalty and the payment.
|
LINKED_CARD
The loyalty account is implicitly attached to the payment card.
|
LOYALTY_CARD
The identification is on a card dedicated to this loyalty brand.
|
NO_CARD
The identification is not found on a card
|
| Modifier and Type | Method and Description |
|---|---|
static IdentificationSupportEnumeration |
fromValue(String v) |
String |
value() |
static IdentificationSupportEnumeration |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static IdentificationSupportEnumeration[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final IdentificationSupportEnumeration NO_CARD
public static final IdentificationSupportEnumeration LOYALTY_CARD
public static final IdentificationSupportEnumeration HYBRID_CARD
public static final IdentificationSupportEnumeration LINKED_CARD
public static IdentificationSupportEnumeration[] values()
for (IdentificationSupportEnumeration c : IdentificationSupportEnumeration.values()) System.out.println(c);
public static IdentificationSupportEnumeration 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 IdentificationSupportEnumeration fromValue(String v)
Copyright © 2018. All rights reserved.