Enum LetterAvatar.PropertyKeys
- java.lang.Object
-
- java.lang.Enum<LetterAvatar.PropertyKeys>
-
- org.primefaces.extensions.component.letteravatar.LetterAvatar.PropertyKeys
-
- All Implemented Interfaces:
Serializable
,Comparable<LetterAvatar.PropertyKeys>
- Enclosing class:
- LetterAvatar
protected static enum LetterAvatar.PropertyKeys extends Enum<LetterAvatar.PropertyKeys>
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static LetterAvatar.PropertyKeys
valueOf(String name)
Returns the enum constant of this type with the specified name.static LetterAvatar.PropertyKeys[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
style
public static final LetterAvatar.PropertyKeys style
-
styleClass
public static final LetterAvatar.PropertyKeys styleClass
-
value
public static final LetterAvatar.PropertyKeys value
-
rounded
public static final LetterAvatar.PropertyKeys rounded
-
width
public static final LetterAvatar.PropertyKeys width
-
height
public static final LetterAvatar.PropertyKeys height
-
-
Method Detail
-
values
public static LetterAvatar.PropertyKeys[] 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 (LetterAvatar.PropertyKeys c : LetterAvatar.PropertyKeys.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static LetterAvatar.PropertyKeys 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
-
-