Enum SlideOut.PropertyKeys
- java.lang.Object
-
- java.lang.Enum<SlideOut.PropertyKeys>
-
- org.primefaces.extensions.component.slideout.SlideOut.PropertyKeys
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<SlideOut.PropertyKeys>
- Enclosing class:
- SlideOut
protected static enum SlideOut.PropertyKeys extends java.lang.Enum<SlideOut.PropertyKeys>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static SlideOut.PropertyKeysvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static SlideOut.PropertyKeys[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
widgetVar
public static final SlideOut.PropertyKeys widgetVar
-
panelStyle
public static final SlideOut.PropertyKeys panelStyle
-
panelStyleClass
public static final SlideOut.PropertyKeys panelStyleClass
-
handleStyle
public static final SlideOut.PropertyKeys handleStyle
-
handleStyleClass
public static final SlideOut.PropertyKeys handleStyleClass
-
title
public static final SlideOut.PropertyKeys title
-
icon
public static final SlideOut.PropertyKeys icon
-
showOn
public static final SlideOut.PropertyKeys showOn
-
location
public static final SlideOut.PropertyKeys location
-
offset
public static final SlideOut.PropertyKeys offset
-
offsetReverse
public static final SlideOut.PropertyKeys offsetReverse
-
handleOffset
public static final SlideOut.PropertyKeys handleOffset
-
handleOffsetReverse
public static final SlideOut.PropertyKeys handleOffsetReverse
-
sticky
public static final SlideOut.PropertyKeys sticky
-
clickScreenToClose
public static final SlideOut.PropertyKeys clickScreenToClose
-
autoOpen
public static final SlideOut.PropertyKeys autoOpen
-
animateSpeed
public static final SlideOut.PropertyKeys animateSpeed
-
bounceDistance
public static final SlideOut.PropertyKeys bounceDistance
-
bounceTimes
public static final SlideOut.PropertyKeys bounceTimes
-
onopen
public static final SlideOut.PropertyKeys onopen
-
onclose
public static final SlideOut.PropertyKeys onclose
-
onslide
public static final SlideOut.PropertyKeys onslide
-
onbeforeopen
public static final SlideOut.PropertyKeys onbeforeopen
-
onbeforeclose
public static final SlideOut.PropertyKeys onbeforeclose
-
onbeforeslide
public static final SlideOut.PropertyKeys onbeforeslide
-
-
Method Detail
-
values
public static SlideOut.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 (SlideOut.PropertyKeys c : SlideOut.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 SlideOut.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
-
-