Enum HorizontalAlignment
java.lang.Object
java.lang.Enum<HorizontalAlignment>
org.pushingpixels.radiance.component.api.common.HorizontalAlignment
- All Implemented Interfaces:
Serializable
,Comparable<HorizontalAlignment>
Enumerates the available values for horizontal alignment.
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionIf the preferred width is less than the available width, the relevant content is horizontally centered in its container.The content is placed to fill all available width from its container.If the preferred width is less than the available width, the relevant content is placed at the leading position in its container (left for LTR and right for RTL).If the preferred width is less than the available width, the relevant content is placed at the trailing position in its container (right for LTR and left for RTL). -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionstatic HorizontalAlignment
Returns the enum constant of this type with the specified name.static HorizontalAlignment[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
LEADING
If the preferred width is less than the available width, the relevant content is placed at the leading position in its container (left for LTR and right for RTL). -
CENTER
If the preferred width is less than the available width, the relevant content is horizontally centered in its container. -
TRAILING
If the preferred width is less than the available width, the relevant content is placed at the trailing position in its container (right for LTR and left for RTL). -
FILL
The content is placed to fill all available width from its container.
-
-
Constructor Details
-
HorizontalAlignment
private HorizontalAlignment()
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
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
-