public enum SectionLayout extends Enum<SectionLayout>
Enum Constant and Description |
---|
CARD |
DEFAULT |
PAGINATED_LIST |
SLIDER |
Modifier and Type | Method and Description |
---|---|
static SectionLayout |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SectionLayout[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SectionLayout DEFAULT
public static final SectionLayout CARD
public static final SectionLayout SLIDER
public static final SectionLayout PAGINATED_LIST
public static SectionLayout[] values()
for (SectionLayout c : SectionLayout.values()) System.out.println(c);
public static SectionLayout 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 © 2020. All rights reserved.