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