@Deprecated public enum TransactionStatus extends Enum<TransactionStatus>
Enum Constant and Description |
---|
CANCELED
Deprecated.
Currently unused.
|
COMMITED
Deprecated.
The transaction has been successfully committed to backing store.
|
FAILED
Deprecated.
The transaction has failed to commit due to some underlying issue.
|
NEW
Deprecated.
The transaction has been freshly allocated.
|
SUBMITED
Deprecated.
The transaction has been completed by the user and sealed.
|
Modifier and Type | Method and Description |
---|---|
static TransactionStatus |
valueOf(String name)
Deprecated.
Returns the enum constant of this type with the specified name.
|
static TransactionStatus[] |
values()
Deprecated.
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TransactionStatus NEW
public static final TransactionStatus SUBMITED
public static final TransactionStatus COMMITED
public static final TransactionStatus FAILED
public static final TransactionStatus CANCELED
public static TransactionStatus[] values()
for (TransactionStatus c : TransactionStatus.values()) System.out.println(c);
public static TransactionStatus 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 © 2019 OpenDaylight. All rights reserved.