Package net.moewes.cloudui.ui5
Enum Ui5Title.Level
- java.lang.Object
-
- java.lang.Enum<Ui5Title.Level>
-
- net.moewes.cloudui.ui5.Ui5Title.Level
-
- All Implemented Interfaces:
Serializable
,Comparable<Ui5Title.Level>
- Enclosing class:
- Ui5Title
public static enum Ui5Title.Level extends Enum<Ui5Title.Level>
Defines the ui5-title level.
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static Ui5Title.Level
valueOf(String name)
Returns the enum constant of this type with the specified name.static Ui5Title.Level[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
H1
public static final Ui5Title.Level H1
-
H2
public static final Ui5Title.Level H2
-
H3
public static final Ui5Title.Level H3
-
H4
public static final Ui5Title.Level H4
-
H5
public static final Ui5Title.Level H5
-
H6
public static final Ui5Title.Level H6
-
-
Method Detail
-
values
public static Ui5Title.Level[] 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 (Ui5Title.Level c : Ui5Title.Level.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Ui5Title.Level 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
-
-