public enum TransactionStage extends Enum<TransactionStage>
| Enum Constant and Description |
|---|
INTERFACE_ANSWER |
INTERFACE_CALL |
REQUEST |
RESPONSE |
| Modifier and Type | Method and Description |
|---|---|
static TransactionStage |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TransactionStage[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TransactionStage REQUEST
public static final TransactionStage RESPONSE
public static final TransactionStage INTERFACE_CALL
public static final TransactionStage INTERFACE_ANSWER
public static TransactionStage[] values()
for (TransactionStage c : TransactionStage.values()) System.out.println(c);
public static TransactionStage 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 nullCopyright © 2020. All rights reserved.