Package com.atlassian.adf.model.node
Enum Table.Layout
- java.lang.Object
-
- java.lang.Enum<Table.Layout>
-
- com.atlassian.adf.model.node.Table.Layout
-
- All Implemented Interfaces:
Serializable,Comparable<Table.Layout>
- Enclosing class:
- Table
public static enum Table.Layout extends Enum<Table.Layout>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description DEFAULTFULL_WIDTHWIDE
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description Stringlayout()static Table.LayoutvalueOf(String name)Returns the enum constant of this type with the specified name.static Table.Layout[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
DEFAULT
public static final Table.Layout DEFAULT
-
FULL_WIDTH
public static final Table.Layout FULL_WIDTH
-
WIDE
public static final Table.Layout WIDE
-
-
Method Detail
-
values
public static Table.Layout[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (Table.Layout c : Table.Layout.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Table.Layout valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
layout
public String layout()
-
-