public static enum Transaction.Type extends java.lang.Enum<Transaction.Type>
The Type of actions a transaction can perform.
Enum Constant and Description |
---|
INVALIDATE
The same as UPDATE with the added effect of refreshing the bitmaps of the added markers.
|
REMOVE
The transaction will remove the added Markers.
|
UPDATE
The Transaction will add new Markers and update the parameters of existing ones.
|
Modifier and Type | Method and Description |
---|---|
static Transaction.Type |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Transaction.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Transaction.Type UPDATE
public static final Transaction.Type REMOVE
public static final Transaction.Type INVALIDATE
public static Transaction.Type[] values()
for (Transaction.Type c : Transaction.Type.values()) System.out.println(c);
public static Transaction.Type 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