public enum TransactionDelayIndicator extends Enum<TransactionDelayIndicator>
Enum Constant and Description |
---|
DELAYED
Transaction delayed.
|
NO_VALUE
Identifies no value.
|
NOT_DELAYED
Transaction not delayed.
|
Modifier and Type | Method and Description |
---|---|
static TransactionDelayIndicator |
forValue(byte value) |
byte |
getValue() |
static TransactionDelayIndicator |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TransactionDelayIndicator[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TransactionDelayIndicator NO_VALUE
public static final TransactionDelayIndicator NOT_DELAYED
public static final TransactionDelayIndicator DELAYED
public static TransactionDelayIndicator[] values()
for (TransactionDelayIndicator c : TransactionDelayIndicator.values()) System.out.println(c);
public static TransactionDelayIndicator 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 byte getValue()
public static TransactionDelayIndicator forValue(byte value)
Copyright © 2012–2024 Onix Solutions. All rights reserved.