Enum Icons
- java.lang.Object
-
- java.lang.Enum<Icons>
-
- org.apache.myfaces.tobago.renderkit.css.Icons
-
- All Implemented Interfaces:
Serializable
,Comparable<Icons>
,CssItem
public enum Icons extends Enum<Icons> implements CssItem
This is a list of used bootstrap icons in Tobago. Might be extended.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ARROW_DOWN
CALENDAR3
CARET_LEFT
CARET_RIGHT
CHEVRON_DOUBLE_LEFT
CHEVRON_DOUBLE_RIGHT
CHEVRON_LEFT
CHEVRON_RIGHT
CLOCK
DASH_SQUARE
EXCLAMATION
EXCLAMATION_LG
FOLDER2_OPEN
PLUS_SQUARE
QUESTION
QUESTION_LG
SKIP_END
SKIP_START
SQUARE
THREE_DOTS
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static CssItem
custom(String name)
String
getName()
static boolean
matches(String value)
static Icons
valueOf(String name)
Returns the enum constant of this type with the specified name.static Icons[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ARROW_DOWN
public static final Icons ARROW_DOWN
-
CHEVRON_DOUBLE_LEFT
public static final Icons CHEVRON_DOUBLE_LEFT
-
CHEVRON_DOUBLE_RIGHT
public static final Icons CHEVRON_DOUBLE_RIGHT
-
CHEVRON_LEFT
public static final Icons CHEVRON_LEFT
-
CHEVRON_RIGHT
public static final Icons CHEVRON_RIGHT
-
CARET_LEFT
public static final Icons CARET_LEFT
-
CALENDAR3
public static final Icons CALENDAR3
-
CLOCK
public static final Icons CLOCK
-
THREE_DOTS
public static final Icons THREE_DOTS
-
EXCLAMATION
public static final Icons EXCLAMATION
-
EXCLAMATION_LG
public static final Icons EXCLAMATION_LG
-
FOLDER2_OPEN
public static final Icons FOLDER2_OPEN
-
CARET_RIGHT
public static final Icons CARET_RIGHT
-
DASH_SQUARE
public static final Icons DASH_SQUARE
-
PLUS_SQUARE
public static final Icons PLUS_SQUARE
-
QUESTION
public static final Icons QUESTION
-
QUESTION_LG
public static final Icons QUESTION_LG
-
SQUARE
public static final Icons SQUARE
-
SKIP_START
public static final Icons SKIP_START
-
SKIP_END
public static final Icons SKIP_END
-
-
Method Detail
-
values
public static Icons[] 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 (Icons c : Icons.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Icons 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
-
matches
public static boolean matches(String value)
-
-