public enum LayoutSectionStyle extends Enum<LayoutSectionStyle>
Java class for LayoutSectionStyle.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="LayoutSectionStyle">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="TwoColumnsTopToBottom"/>
<enumeration value="TwoColumnsLeftToRight"/>
<enumeration value="OneColumn"/>
<enumeration value="CustomLinks"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
CUSTOM_LINKS |
ONE_COLUMN |
TWO_COLUMNS_LEFT_TO_RIGHT |
TWO_COLUMNS_TOP_TO_BOTTOM |
| Modifier and Type | Method and Description |
|---|---|
static LayoutSectionStyle |
fromValue(String v) |
String |
value() |
static LayoutSectionStyle |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static LayoutSectionStyle[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LayoutSectionStyle TWO_COLUMNS_TOP_TO_BOTTOM
public static final LayoutSectionStyle TWO_COLUMNS_LEFT_TO_RIGHT
public static final LayoutSectionStyle ONE_COLUMN
public static final LayoutSectionStyle CUSTOM_LINKS
public static LayoutSectionStyle[] values()
for (LayoutSectionStyle c : LayoutSectionStyle.values()) System.out.println(c);
public static LayoutSectionStyle 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 value()
public static LayoutSectionStyle fromValue(String v)
Copyright © 2016. All rights reserved.