Enum UIKeynoteItem.PropertyKeys
- java.lang.Object
-
- java.lang.Enum<UIKeynoteItem.PropertyKeys>
-
- org.primefaces.extensions.component.keynote.UIKeynoteItem.PropertyKeys
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<UIKeynoteItem.PropertyKeys>
- Enclosing class:
- UIKeynoteItem
protected static enum UIKeynoteItem.PropertyKeys extends java.lang.Enum<UIKeynoteItem.PropertyKeys>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description backgroundColorbackgroundImagebackgroundOpacitybackgroundPositionbackgroundRepeatbackgroundSizebackgroundVideobackgroundVideoLoopbackgroundVideoMutedmarkdownnoteseparatorseparatorVerticalstyleClasstypevisibility
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static UIKeynoteItem.PropertyKeysvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static UIKeynoteItem.PropertyKeys[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
backgroundColor
public static final UIKeynoteItem.PropertyKeys backgroundColor
-
backgroundImage
public static final UIKeynoteItem.PropertyKeys backgroundImage
-
backgroundSize
public static final UIKeynoteItem.PropertyKeys backgroundSize
-
backgroundPosition
public static final UIKeynoteItem.PropertyKeys backgroundPosition
-
backgroundRepeat
public static final UIKeynoteItem.PropertyKeys backgroundRepeat
-
backgroundOpacity
public static final UIKeynoteItem.PropertyKeys backgroundOpacity
-
backgroundVideo
public static final UIKeynoteItem.PropertyKeys backgroundVideo
-
backgroundVideoLoop
public static final UIKeynoteItem.PropertyKeys backgroundVideoLoop
-
backgroundVideoMuted
public static final UIKeynoteItem.PropertyKeys backgroundVideoMuted
-
markdown
public static final UIKeynoteItem.PropertyKeys markdown
-
note
public static final UIKeynoteItem.PropertyKeys note
-
separator
public static final UIKeynoteItem.PropertyKeys separator
-
separatorVertical
public static final UIKeynoteItem.PropertyKeys separatorVertical
-
styleClass
public static final UIKeynoteItem.PropertyKeys styleClass
-
type
public static final UIKeynoteItem.PropertyKeys type
-
visibility
public static final UIKeynoteItem.PropertyKeys visibility
-
-
Method Detail
-
values
public static UIKeynoteItem.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 (UIKeynoteItem.PropertyKeys c : UIKeynoteItem.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 UIKeynoteItem.PropertyKeys valueOf(java.lang.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:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
-