Package org.patternfly.layout
Enum PredefinedIcon
- java.lang.Object
-
- java.lang.Enum<PredefinedIcon>
-
- org.patternfly.layout.PredefinedIcon
-
- All Implemented Interfaces:
Serializable,Comparable<PredefinedIcon>
public enum PredefinedIcon extends Enum<PredefinedIcon>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static Stringfar(String name)Builds a FontAwesome regular icons class.static Stringfas(String name)Builds a FontAwesome solid icons class.static StringpfIcon(String name)Builds a PatternFly icons class.static PredefinedIconvalueOf(String name)Returns the enum constant of this type with the specified name.static PredefinedIcon[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
angleDoubleLeft
public static final PredefinedIcon angleDoubleLeft
-
angleDoubleRight
public static final PredefinedIcon angleDoubleRight
-
angleDown
public static final PredefinedIcon angleDown
-
angleLeft
public static final PredefinedIcon angleLeft
-
angleRight
public static final PredefinedIcon angleRight
-
arrowLeft
public static final PredefinedIcon arrowLeft
-
arrowRight
public static final PredefinedIcon arrowRight
-
arrowsAltV
public static final PredefinedIcon arrowsAltV
-
bars
public static final PredefinedIcon bars
-
bell
public static final PredefinedIcon bell
-
caretDown
public static final PredefinedIcon caretDown
-
check
public static final PredefinedIcon check
-
copy
public static final PredefinedIcon copy
-
checkCircle
public static final PredefinedIcon checkCircle
-
ellipsisV
public static final PredefinedIcon ellipsisV
-
exclamationCircle
public static final PredefinedIcon exclamationCircle
-
exclamationTriangle
public static final PredefinedIcon exclamationTriangle
-
externalLinkAlt
public static final PredefinedIcon externalLinkAlt
-
externalLinkSquareAlt
public static final PredefinedIcon externalLinkSquareAlt
-
filter
public static final PredefinedIcon filter
-
infoCircle
public static final PredefinedIcon infoCircle
-
longArrowAltDown
public static final PredefinedIcon longArrowAltDown
-
longArrowAltUp
public static final PredefinedIcon longArrowAltUp
-
play
public static final PredefinedIcon play
-
plusCircle
public static final PredefinedIcon plusCircle
-
search
public static final PredefinedIcon search
-
sortAmountDown
public static final PredefinedIcon sortAmountDown
-
star
public static final PredefinedIcon star
-
times
public static final PredefinedIcon times
-
timesCircle
public static final PredefinedIcon timesCircle
-
upload
public static final PredefinedIcon upload
-
-
Field Detail
-
className
public final String className
-
-
Method Detail
-
values
public static PredefinedIcon[] 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 (PredefinedIcon c : PredefinedIcon.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static PredefinedIcon 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
-
pfIcon
public static String pfIcon(String name)
Builds a PatternFly icons class.- Parameters:
name- the name of the PatternFly icon w/o any prefix.
-
fas
public static String fas(String name)
Builds a FontAwesome solid icons class.- Parameters:
name- the name of the FontAwesome icon w/o any prefix.
-
-