public static enum Row.Flags extends Enum<Row.Flags>
Enum Constant and Description |
---|
EndTransaction
This row is the last row in a transaction.
|
None
This row does not start or stop a transaction.
|
SingleRow
This row is the only row in a transaction.
|
StartTransaction
This row is the first row in a transaction.
|
Modifier and Type | Method and Description |
---|---|
static Row.Flags |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Row.Flags[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Row.Flags None
public static final Row.Flags StartTransaction
public static final Row.Flags EndTransaction
public static final Row.Flags SingleRow
public static Row.Flags[] values()
for (Row.Flags c : Row.Flags.values()) System.out.println(c);
public static Row.Flags 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 null