public static enum UndoChangeEvent.ChangeType extends Enum<UndoChangeEvent.ChangeType>
| Enum Constant and Description |
|---|
ADD_EDIT |
REDO |
REDO_TO |
UNDO |
UNDO_OR_REDO |
UNDO_TO |
| Modifier and Type | Method and Description |
|---|---|
static UndoChangeEvent.ChangeType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static UndoChangeEvent.ChangeType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final UndoChangeEvent.ChangeType ADD_EDIT
public static final UndoChangeEvent.ChangeType UNDO
public static final UndoChangeEvent.ChangeType REDO
public static final UndoChangeEvent.ChangeType UNDO_OR_REDO
public static final UndoChangeEvent.ChangeType UNDO_TO
public static final UndoChangeEvent.ChangeType REDO_TO
public static UndoChangeEvent.ChangeType[] values()
for (UndoChangeEvent.ChangeType c : UndoChangeEvent.ChangeType.values()) System.out.println(c);
public static UndoChangeEvent.ChangeType 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.