public enum UndoStatus extends Enum<UndoStatus>
| Modifier and Type | Method and Description |
|---|---|
static UndoStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static UndoStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
@SerializedName(value="pending") public static final UndoStatus PENDING
@SerializedName(value="final") public static final UndoStatus FINAL
@SerializedName(value="canceled") public static final UndoStatus CANCELED
public static UndoStatus[] values()
for (UndoStatus c : UndoStatus.values()) System.out.println(c);
public static UndoStatus 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.