Package org.wicketstuff.selectize
Enum SelectizeCssResourceReference.Theme
- java.lang.Object
-
- java.lang.Enum<SelectizeCssResourceReference.Theme>
-
- org.wicketstuff.selectize.SelectizeCssResourceReference.Theme
-
- All Implemented Interfaces:
Serializable,Comparable<SelectizeCssResourceReference.Theme>
- Enclosing class:
- SelectizeCssResourceReference
public static enum SelectizeCssResourceReference.Theme extends Enum<SelectizeCssResourceReference.Theme>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description BOOTSTRAP2Theme for bootstrap 2BOOTSTRAP3Theme for bootstrap 3DEFAULTdefaul themeLEGACYLegacy themeNONEnone theme
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static SelectizeCssResourceReference.ThemevalueOf(String name)Returns the enum constant of this type with the specified name.static SelectizeCssResourceReference.Theme[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NONE
public static final SelectizeCssResourceReference.Theme NONE
none theme
-
DEFAULT
public static final SelectizeCssResourceReference.Theme DEFAULT
defaul theme
-
LEGACY
public static final SelectizeCssResourceReference.Theme LEGACY
Legacy theme
-
BOOTSTRAP2
public static final SelectizeCssResourceReference.Theme BOOTSTRAP2
Theme for bootstrap 2
-
BOOTSTRAP3
public static final SelectizeCssResourceReference.Theme BOOTSTRAP3
Theme for bootstrap 3
-
-
Method Detail
-
values
public static SelectizeCssResourceReference.Theme[] 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 (SelectizeCssResourceReference.Theme c : SelectizeCssResourceReference.Theme.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static SelectizeCssResourceReference.Theme 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
-
-