public static enum DbOperation.State extends Enum<DbOperation.State>
Enum Constant and Description |
---|
APPLIED |
FAILED_CONCURRENT_MODIFICATION
Indicates that the operation was not performed and that the reason
was a concurrent modification to the data to be updated.
|
FAILED_ERROR
Indicates that the operation was not performed for any reason except
concurrent modifications.
|
NOT_APPLIED |
Modifier and Type | Method and Description |
---|---|
static DbOperation.State |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DbOperation.State[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DbOperation.State NOT_APPLIED
public static final DbOperation.State APPLIED
public static final DbOperation.State FAILED_ERROR
public static final DbOperation.State FAILED_CONCURRENT_MODIFICATION
public static DbOperation.State[] values()
for (DbOperation.State c : DbOperation.State.values()) System.out.println(c);
public static DbOperation.State 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 © 2020. All rights reserved.