public static enum EnhancedListModel.Direction extends Enum<EnhancedListModel.Direction>
| Enum Constant and Description |
|---|
DOWN
Increment list index.
|
UP
Decrement list index.
|
| Modifier and Type | Method and Description |
|---|---|
static EnhancedListModel.Direction |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EnhancedListModel.Direction[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EnhancedListModel.Direction UP
public static final EnhancedListModel.Direction DOWN
public static EnhancedListModel.Direction[] values()
for (EnhancedListModel.Direction c : EnhancedListModel.Direction.values()) System.out.println(c);
public static EnhancedListModel.Direction 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.