Enum CKEditor.PropertyKeys
- java.lang.Object
-
- java.lang.Enum<CKEditor.PropertyKeys>
-
- org.primefaces.extensions.component.ckeditor.CKEditor.PropertyKeys
-
- All Implemented Interfaces:
Serializable
,Comparable<CKEditor.PropertyKeys>
- Enclosing class:
- CKEditor
protected static enum CKEditor.PropertyKeys extends Enum<CKEditor.PropertyKeys>
Properties that are tracked by state saving.- Version:
- $Revision$
- Author:
- Thomas Andraschko / last modified by $Author$
-
-
Enum Constant Summary
Enum Constants Enum Constant Description advancedContentFilter
contentsCss
customConfig
defaultLanguage
disableNativeSpellChecker
escape
height
interfaceColor
language
readonly
skin
tabindex
theme
toolbar
widgetVar
width
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description String
toString()
static CKEditor.PropertyKeys
valueOf(String name)
Returns the enum constant of this type with the specified name.static CKEditor.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 CKEditor.PropertyKeys widgetVar
-
height
public static final CKEditor.PropertyKeys height
-
width
public static final CKEditor.PropertyKeys width
-
theme
public static final CKEditor.PropertyKeys theme
-
skin
public static final CKEditor.PropertyKeys skin
-
toolbar
public static final CKEditor.PropertyKeys toolbar
-
readonly
public static final CKEditor.PropertyKeys readonly
-
interfaceColor
public static final CKEditor.PropertyKeys interfaceColor
-
language
public static final CKEditor.PropertyKeys language
-
defaultLanguage
public static final CKEditor.PropertyKeys defaultLanguage
-
contentsCss
public static final CKEditor.PropertyKeys contentsCss
-
customConfig
public static final CKEditor.PropertyKeys customConfig
-
tabindex
public static final CKEditor.PropertyKeys tabindex
-
escape
public static final CKEditor.PropertyKeys escape
-
advancedContentFilter
public static final CKEditor.PropertyKeys advancedContentFilter
-
disableNativeSpellChecker
public static final CKEditor.PropertyKeys disableNativeSpellChecker
-
-
Method Detail
-
values
public static CKEditor.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 (CKEditor.PropertyKeys c : CKEditor.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 CKEditor.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
-
toString
public String toString()
- Overrides:
toString
in classEnum<CKEditor.PropertyKeys>
-
-