Enum CodeMirror.PropertyKeys
- java.lang.Object
-
- java.lang.Enum<CodeMirror.PropertyKeys>
-
- org.primefaces.extensions.component.codemirror.CodeMirror.PropertyKeys
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<CodeMirror.PropertyKeys>
- Enclosing class:
- CodeMirror
protected static enum CodeMirror.PropertyKeys extends java.lang.Enum<CodeMirror.PropertyKeys>
Properties that are tracked by state saving.- Version:
- $Revision$
- Author:
- Thomas Andraschko / last modified by $Author$
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static CodeMirror.PropertyKeysvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static CodeMirror.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 CodeMirror.PropertyKeys widgetVar
-
theme
public static final CodeMirror.PropertyKeys theme
-
mode
public static final CodeMirror.PropertyKeys mode
-
indentUnit
public static final CodeMirror.PropertyKeys indentUnit
-
smartIndent
public static final CodeMirror.PropertyKeys smartIndent
-
tabSize
public static final CodeMirror.PropertyKeys tabSize
-
indentWithTabs
public static final CodeMirror.PropertyKeys indentWithTabs
-
electricChars
public static final CodeMirror.PropertyKeys electricChars
-
keyMap
public static final CodeMirror.PropertyKeys keyMap
-
lineWrapping
public static final CodeMirror.PropertyKeys lineWrapping
-
lineNumbers
public static final CodeMirror.PropertyKeys lineNumbers
-
firstLineNumber
public static final CodeMirror.PropertyKeys firstLineNumber
-
gutter
public static final CodeMirror.PropertyKeys gutter
-
fixedGutter
public static final CodeMirror.PropertyKeys fixedGutter
-
readonly
public static final CodeMirror.PropertyKeys readonly
-
matchBrackets
public static final CodeMirror.PropertyKeys matchBrackets
-
workTime
public static final CodeMirror.PropertyKeys workTime
-
workDelay
public static final CodeMirror.PropertyKeys workDelay
-
pollInterval
public static final CodeMirror.PropertyKeys pollInterval
-
undoDepth
public static final CodeMirror.PropertyKeys undoDepth
-
tabindex
public static final CodeMirror.PropertyKeys tabindex
-
extraKeys
public static final CodeMirror.PropertyKeys extraKeys
-
completeMethod
public static final CodeMirror.PropertyKeys completeMethod
-
process
public static final CodeMirror.PropertyKeys process
-
onstart
public static final CodeMirror.PropertyKeys onstart
-
oncomplete
public static final CodeMirror.PropertyKeys oncomplete
-
onerror
public static final CodeMirror.PropertyKeys onerror
-
onsuccess
public static final CodeMirror.PropertyKeys onsuccess
-
global
public static final CodeMirror.PropertyKeys global
-
async
public static final CodeMirror.PropertyKeys async
-
escape
public static final CodeMirror.PropertyKeys escape
-
escapeSuggestions
public static final CodeMirror.PropertyKeys escapeSuggestions
-
-
Method Detail
-
values
public static CodeMirror.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 (CodeMirror.PropertyKeys c : CodeMirror.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 CodeMirror.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
-
-