Package org.teamapps.ux.css
Enum CssFlexDirection
- java.lang.Object
-
- java.lang.Enum<CssFlexDirection>
-
- org.teamapps.ux.css.CssFlexDirection
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<CssFlexDirection>
public enum CssFlexDirection extends java.lang.Enum<CssFlexDirection>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description COLUMNCOLUMN_REVERSEROWROW_REVERSE
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description org.teamapps.dto.UiCssFlexDirectiontoUiCssFlexDirection()static CssFlexDirectionvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static CssFlexDirection[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ROW
public static final CssFlexDirection ROW
-
ROW_REVERSE
public static final CssFlexDirection ROW_REVERSE
-
COLUMN
public static final CssFlexDirection COLUMN
-
COLUMN_REVERSE
public static final CssFlexDirection COLUMN_REVERSE
-
-
Method Detail
-
values
public static CssFlexDirection[] 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 (CssFlexDirection c : CssFlexDirection.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static CssFlexDirection valueOf(java.lang.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:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
toUiCssFlexDirection
public org.teamapps.dto.UiCssFlexDirection toUiCssFlexDirection()
-
-