public static enum Grid.RowOrder extends Enum<Grid.RowOrder>
Enum Constant and Description |
---|
BOTTOM_TO_TOP |
ENUMERATED |
TOP_TO_BOTTOM |
Modifier and Type | Method and Description |
---|---|
String |
toString() |
static Grid.RowOrder |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Grid.RowOrder[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Grid.RowOrder ENUMERATED
public static final Grid.RowOrder TOP_TO_BOTTOM
public static final Grid.RowOrder BOTTOM_TO_TOP
public static Grid.RowOrder[] values()
for (Grid.RowOrder c : Grid.RowOrder.values()) System.out.println(c);
public static Grid.RowOrder 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 nullpublic String toString()
toString
in class Enum<Grid.RowOrder>
Copyright © 2019. All rights reserved.