Package org.apache.myfaces.tobago.layout
Enum AlignItems
- java.lang.Object
-
- java.lang.Enum<AlignItems>
-
- org.apache.myfaces.tobago.layout.AlignItems
-
- All Implemented Interfaces:
Serializable
,Comparable<AlignItems>
public enum AlignItems extends Enum<AlignItems>
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static AlignItems
valueOf(String name)
Returns the enum constant of this type with the specified name.static AlignItems[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
flexStart
public static final AlignItems flexStart
-
flexEnd
public static final AlignItems flexEnd
-
center
public static final AlignItems center
-
baseline
public static final AlignItems baseline
-
stretch
public static final AlignItems stretch
-
-
Field Detail
-
FLEX_START
public static final String FLEX_START
- See Also:
- Constant Field Values
-
FLEX_END
public static final String FLEX_END
- See Also:
- Constant Field Values
-
CENTER
public static final String CENTER
- See Also:
- Constant Field Values
-
BASELINE
public static final String BASELINE
- See Also:
- Constant Field Values
-
STRETCH
public static final String STRETCH
- See Also:
- Constant Field Values
-
-
Method Detail
-
values
public static AlignItems[] 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 (AlignItems c : AlignItems.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static AlignItems 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
-
-