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