Enum WColumn.Alignment
- java.lang.Object
-
- java.lang.Enum<WColumn.Alignment>
-
- com.github.bordertech.wcomponents.WColumn.Alignment
-
- All Implemented Interfaces:
Serializable
,Comparable<WColumn.Alignment>
- Enclosing class:
- WColumn
public static enum WColumn.Alignment extends Enum<WColumn.Alignment>
Describes how content within a column should be aligned.
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static WColumn.Alignment
valueOf(String name)
Returns the enum constant of this type with the specified name.static WColumn.Alignment[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
LEFT
public static final WColumn.Alignment LEFT
Indicates that content should be left-aligned. This is the default alignment.
-
CENTER
public static final WColumn.Alignment CENTER
Indicates that content should be horizontally centered in the column.
-
RIGHT
public static final WColumn.Alignment RIGHT
Indicates that content should be right-aligned.
-
-
Method Detail
-
values
public static WColumn.Alignment[] 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 (WColumn.Alignment c : WColumn.Alignment.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static WColumn.Alignment 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
-
-