Package net.moewes.cloudui.ui5
Enum Ui5Bar.Design
- java.lang.Object
-
- java.lang.Enum<Ui5Bar.Design>
-
- net.moewes.cloudui.ui5.Ui5Bar.Design
-
- All Implemented Interfaces:
Serializable
,Comparable<Ui5Bar.Design>
- Enclosing class:
- Ui5Bar
public static enum Ui5Bar.Design extends Enum<Ui5Bar.Design>
possible values for design attribute
-
-
Enum Constant Summary
Enum Constants Enum Constant Description FLOATING_FOOTER
FOOTER
HEADER
SUBHEADER
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static Ui5Bar.Design
valueOf(String name)
Returns the enum constant of this type with the specified name.static Ui5Bar.Design[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
HEADER
public static final Ui5Bar.Design HEADER
-
SUBHEADER
public static final Ui5Bar.Design SUBHEADER
-
FOOTER
public static final Ui5Bar.Design FOOTER
-
FLOATING_FOOTER
public static final Ui5Bar.Design FLOATING_FOOTER
-
-
Method Detail
-
values
public static Ui5Bar.Design[] 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 (Ui5Bar.Design c : Ui5Bar.Design.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Ui5Bar.Design 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
-
-