Package org.linkki.core.ui.aspects.types
Enum TextAlignment
- java.lang.Object
-
- java.lang.Enum<TextAlignment>
-
- org.linkki.core.ui.aspects.types.TextAlignment
-
- All Implemented Interfaces:
Serializable,Comparable<TextAlignment>
public enum TextAlignment extends Enum<TextAlignment>
Defines the text alignment.- See Also:
UITableColumn.textAlign(),UIComboBox.textAlign()
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static TextAlignmentvalueOf(String name)Returns the enum constant of this type with the specified name.static TextAlignment[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
DEFAULT
public static final TextAlignment DEFAULT
Text alignment is not changed
-
LEFT
public static final TextAlignment LEFT
Text is left-aligned
-
CENTER
public static final TextAlignment CENTER
Text is center-aligned
-
RIGHT
public static final TextAlignment RIGHT
Text is right-aligned
-
-
Method Detail
-
values
public static TextAlignment[] 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 (TextAlignment c : TextAlignment.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static TextAlignment 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
-
-