Enum HtmlEditor.PropertyKeys
- java.lang.Object
-
- java.lang.Enum<HtmlEditor.PropertyKeys>
-
- de.xima.fc.gui.component.htmleditor.HtmlEditor.PropertyKeys
-
- All Implemented Interfaces:
Serializable
,Comparable<HtmlEditor.PropertyKeys>
- Enclosing class:
- HtmlEditor
protected static enum HtmlEditor.PropertyKeys extends Enum<HtmlEditor.PropertyKeys>
Properties for theHtmlEditor
.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description advancedContentFilter
contentsCss
customConfig
defaultLanguage
disableNativeSpellChecker
enterMode
escape
fileBrowserUploadUrl
font
fontSize
height
interfaceColor
language
placeholder
readonly
shiftEnterMode
skin
tabindex
theme
toolbar
widgetVar
width
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static HtmlEditor.PropertyKeys
valueOf(String name)
Returns the enum constant of this type with the specified name.static HtmlEditor.PropertyKeys[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
advancedContentFilter
public static final HtmlEditor.PropertyKeys advancedContentFilter
-
contentsCss
public static final HtmlEditor.PropertyKeys contentsCss
-
customConfig
public static final HtmlEditor.PropertyKeys customConfig
-
defaultLanguage
public static final HtmlEditor.PropertyKeys defaultLanguage
-
disableNativeSpellChecker
public static final HtmlEditor.PropertyKeys disableNativeSpellChecker
-
enterMode
public static final HtmlEditor.PropertyKeys enterMode
-
escape
public static final HtmlEditor.PropertyKeys escape
-
fileBrowserUploadUrl
public static final HtmlEditor.PropertyKeys fileBrowserUploadUrl
-
font
public static final HtmlEditor.PropertyKeys font
-
fontSize
public static final HtmlEditor.PropertyKeys fontSize
-
height
public static final HtmlEditor.PropertyKeys height
-
interfaceColor
public static final HtmlEditor.PropertyKeys interfaceColor
-
language
public static final HtmlEditor.PropertyKeys language
-
placeholder
public static final HtmlEditor.PropertyKeys placeholder
-
readonly
public static final HtmlEditor.PropertyKeys readonly
-
shiftEnterMode
public static final HtmlEditor.PropertyKeys shiftEnterMode
-
skin
public static final HtmlEditor.PropertyKeys skin
-
tabindex
public static final HtmlEditor.PropertyKeys tabindex
-
theme
public static final HtmlEditor.PropertyKeys theme
-
toolbar
public static final HtmlEditor.PropertyKeys toolbar
-
widgetVar
public static final HtmlEditor.PropertyKeys widgetVar
-
width
public static final HtmlEditor.PropertyKeys width
-
-
Method Detail
-
values
public static HtmlEditor.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 (HtmlEditor.PropertyKeys c : HtmlEditor.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 HtmlEditor.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
-
-