public static enum TwinColGrid.Orientation extends Enum<TwinColGrid.Orientation>
| Enum Constant and Description |
|---|
HORIZONTAL |
HORIZONTAL_REVERSE |
VERTICAL |
VERTICAL_REVERSE |
| Modifier and Type | Method and Description |
|---|---|
static TwinColGrid.Orientation |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TwinColGrid.Orientation[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TwinColGrid.Orientation HORIZONTAL
public static final TwinColGrid.Orientation VERTICAL
public static final TwinColGrid.Orientation HORIZONTAL_REVERSE
public static final TwinColGrid.Orientation VERTICAL_REVERSE
public static TwinColGrid.Orientation[] values()
for (TwinColGrid.Orientation c : TwinColGrid.Orientation.values()) System.out.println(c);
public static TwinColGrid.Orientation 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 © 2017–2022 Flowing Code. All rights reserved.