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 font-awesome icons in Tobago. Feel free to extend.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ANGLE_DOUBLE_LEFT
ANGLE_DOUBLE_RIGHT
ANGLE_DOWN
ANGLE_LEFT
ANGLE_RIGHT
ANGLE_UP
BACKWARD
BARS
CALENDAR
CLOCK_O
ELLIPSIS_H
EXCLAMATION
FOLDER_OPEN
FORWARD
MINUS_SQUARE_O
PLUS_SQUARE_O
QUESTION
SQUARE_O
STEP_BACKWARD
STEP_FORWARD
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static CssItem
custom(String name)
String
getName()
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
-
ANGLE_DOUBLE_LEFT
public static final Icons ANGLE_DOUBLE_LEFT
-
ANGLE_DOUBLE_RIGHT
public static final Icons ANGLE_DOUBLE_RIGHT
-
ANGLE_DOWN
public static final Icons ANGLE_DOWN
-
ANGLE_LEFT
public static final Icons ANGLE_LEFT
-
ANGLE_RIGHT
public static final Icons ANGLE_RIGHT
-
ANGLE_UP
public static final Icons ANGLE_UP
-
BACKWARD
public static final Icons BACKWARD
-
BARS
public static final Icons BARS
-
CALENDAR
public static final Icons CALENDAR
-
CLOCK_O
public static final Icons CLOCK_O
-
ELLIPSIS_H
public static final Icons ELLIPSIS_H
-
EXCLAMATION
public static final Icons EXCLAMATION
-
FOLDER_OPEN
public static final Icons FOLDER_OPEN
-
FORWARD
public static final Icons FORWARD
-
MINUS_SQUARE_O
public static final Icons MINUS_SQUARE_O
-
PLUS_SQUARE_O
public static final Icons PLUS_SQUARE_O
-
QUESTION
public static final Icons QUESTION
-
SQUARE_O
public static final Icons SQUARE_O
-
STEP_BACKWARD
public static final Icons STEP_BACKWARD
-
STEP_FORWARD
public static final Icons STEP_FORWARD
-
-
Field Detail
-
FA
public static final CssItem FA
-
-
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
-
-