public enum TransactionType extends java.lang.Enum<TransactionType>
Enum Constant and Description |
---|
CRL_UPDATE |
LICENSE_ACQUISITION |
LINK_ACQUISITION |
LINK_RELEASE |
METERING_DATA_UPDATE |
PERSONALITY_UPDATE |
PERSONALIZATION |
SECURITY_DATA_CERTIFICATION |
SECURITY_DATA_UPDATE |
SERVICE_TOKEN_PROCESSING |
SUSPENSION_LIST_UPDATE |
USER_REGISTRATION |
Modifier and Type | Method and Description |
---|---|
static TransactionType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static TransactionType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TransactionType SERVICE_TOKEN_PROCESSING
public static final TransactionType PERSONALIZATION
public static final TransactionType USER_REGISTRATION
public static final TransactionType LINK_ACQUISITION
public static final TransactionType LINK_RELEASE
public static final TransactionType SECURITY_DATA_UPDATE
public static final TransactionType SECURITY_DATA_CERTIFICATION
public static final TransactionType SUSPENSION_LIST_UPDATE
public static final TransactionType METERING_DATA_UPDATE
public static final TransactionType LICENSE_ACQUISITION
public static final TransactionType CRL_UPDATE
public static final TransactionType PERSONALITY_UPDATE
public static TransactionType[] values()
for (TransactionType c : TransactionType.values()) System.out.println(c);
public static TransactionType valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant
with the specified namejava.lang.NullPointerException
- if the argument is null