public enum TokenRequestedTypeEnumeration extends Enum<TokenRequestedTypeEnumeration>
Java class for TokenRequestedTypeEnumeration.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="TokenRequestedTypeEnumeration">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="Transaction"/>
<enumeration value="Customer"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
CUSTOMER
The token is generated to recognise a customer for a longer period.
|
TRANSACTION
The token is generated to recognise a customer during the time of a transaction.
|
| Modifier and Type | Method and Description |
|---|---|
static TokenRequestedTypeEnumeration |
fromValue(String v) |
String |
value() |
static TokenRequestedTypeEnumeration |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TokenRequestedTypeEnumeration[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TokenRequestedTypeEnumeration TRANSACTION
public static final TokenRequestedTypeEnumeration CUSTOMER
public static TokenRequestedTypeEnumeration[] values()
for (TokenRequestedTypeEnumeration c : TokenRequestedTypeEnumeration.values()) System.out.println(c);
public static TokenRequestedTypeEnumeration 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 TokenRequestedTypeEnumeration fromValue(String v)
Copyright © 2018. All rights reserved.