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