public enum GridFlow extends Enum<GridFlow>
Property.GRID_FLOW.| Enum Constant and Description |
|---|
COLUMN
Defines column flow from top to bottom of a grid.
|
COLUMN_DENSE
Same as
COLUMN but uses dense algorithm for cell placement. |
ROW
Defines row flow from left to right of a grid.
|
ROW_DENSE
Same as
ROW but uses dense algorithm for cell placement. |
| Modifier and Type | Method and Description |
|---|---|
static GridFlow |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static GridFlow[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GridFlow ROW
public static final GridFlow COLUMN
public static final GridFlow ROW_DENSE
ROW but uses dense algorithm for cell placement.public static final GridFlow COLUMN_DENSE
COLUMN but uses dense algorithm for cell placement.public static GridFlow[] values()
for (GridFlow c : GridFlow.values()) System.out.println(c);
public static GridFlow 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 © 1998–2025 Apryse Group NV. All rights reserved.