public static enum BottomSheet.Style extends java.lang.Enum<BottomSheet.Style>
BottomSheet.| Enum Constant and Description |
|---|
GRID
If the bottom sheet's items should be shown in a grid.
|
LIST
If the bottom sheet's items should be shown in a list.
|
LIST_COLUMNS
If the bottom sheet's items should be shown as a two-columned list on tablet devices and
in landscape mode.
|
| Modifier and Type | Method and Description |
|---|---|
static BottomSheet.Style |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static BottomSheet.Style[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BottomSheet.Style LIST
public static final BottomSheet.Style LIST_COLUMNS
public static final BottomSheet.Style GRID
public static BottomSheet.Style[] values()
for (BottomSheet.Style c : BottomSheet.Style.values()) System.out.println(c);
public static BottomSheet.Style valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null