public static enum UpdateManager.TransactionProperties extends java.lang.Enum<UpdateManager.TransactionProperties>
| Enum Constant and Description |
|---|
TRANSACTION_ENDED
signals that a transaction ended
|
TRANSACTION_LABEL
The event contains a label for the transaction.
|
TRANSACTION_STARTED
signals that a transaction started
|
| Modifier and Type | Method and Description |
|---|---|
static UpdateManager.TransactionProperties |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static UpdateManager.TransactionProperties[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final UpdateManager.TransactionProperties TRANSACTION_STARTED
public static final UpdateManager.TransactionProperties TRANSACTION_LABEL
public static final UpdateManager.TransactionProperties TRANSACTION_ENDED
public static UpdateManager.TransactionProperties[] values()
for (UpdateManager.TransactionProperties c : UpdateManager.TransactionProperties.values()) System.out.println(c);
public static UpdateManager.TransactionProperties 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