public static enum Transaction.Status extends Enum<Transaction.Status>
Resource that is part of the current active Transaction| Modifier and Type | Field and Description |
|---|---|
int |
order
priority of this
Transaction.Status compared to the other Transaction.Status |
| Modifier and Type | Method and Description |
|---|---|
String |
toString() |
static Transaction.Status |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Transaction.Status[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Transaction.Status ADDED
public static final Transaction.Status DELETED
public static final Transaction.Status EXISTS
public static final Transaction.Status MODIFIED
public final int order
Transaction.Status compared to the other Transaction.Statuspublic static Transaction.Status[] values()
for (Transaction.Status c : Transaction.Status.values()) System.out.println(c);
public static Transaction.Status 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 String toString()
toString in class Enum<Transaction.Status>Copyright © 2013–2014 shadowhunt. All rights reserved.