public enum ChangeStatus extends Enum<ChangeStatus>
| Enum Constant and Description |
|---|
CAS_FAILED_EQUALS |
CHANGED |
CREATED |
UNCHANGED |
| Modifier and Type | Method and Description |
|---|---|
static ChangeStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ChangeStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ChangeStatus CREATED
public static final ChangeStatus CHANGED
public static final ChangeStatus UNCHANGED
public static final ChangeStatus CAS_FAILED_EQUALS
public static ChangeStatus[] values()
for (ChangeStatus c : ChangeStatus.values()) System.out.println(c);
public static ChangeStatus 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 © 2018 trivago. All rights reserved.