public enum IdentificationSupportType extends Enum<IdentificationSupportType>
Java class for IdentificationSupportType.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="IdentificationSupportType">
<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 IdentificationSupportType |
fromValue(String v)
From value identification support type.
|
String |
value()
Value string.
|
static IdentificationSupportType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static IdentificationSupportType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final IdentificationSupportType NO_CARD
public static final IdentificationSupportType LOYALTY_CARD
public static final IdentificationSupportType HYBRID_CARD
public static final IdentificationSupportType LINKED_CARD
public static IdentificationSupportType[] values()
for (IdentificationSupportType c : IdentificationSupportType.values()) System.out.println(c);
public static IdentificationSupportType 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 IdentificationSupportType fromValue(String v)
v - the vCopyright © 2022. All rights reserved.