public static enum EntityListView.RowLayout extends Enum<EntityListView.RowLayout>
An enum to specify the layout used for the rows.
| Enum Constant and Description |
|---|
Grid
Layout the list in a grid.
|
Y
Layout the list in a BoxLayout.Y layout (i.e.
|
| Modifier and Type | Method and Description |
|---|---|
static EntityListView.RowLayout |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EntityListView.RowLayout[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EntityListView.RowLayout Y
Layout the list in a BoxLayout.Y layout (i.e. vertical rows)
public static final EntityListView.RowLayout Grid
Layout the list in a grid. Use the EntityListView.COLUMNS and EntityListView.LANDSCAPE_COLUMNS view properties
to configure the number of columns in the grid.
public static EntityListView.RowLayout[] values()
for (EntityListView.RowLayout c : EntityListView.RowLayout.values()) System.out.println(c);
public static EntityListView.RowLayout 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 © 2022. All Rights Reserved.