Enum ESemanticHighlightingEnabled
java.lang.Object
java.lang.Enum<ESemanticHighlightingEnabled>
org.primefaces.extensions.model.monacoeditor.ESemanticHighlightingEnabled
- All Implemented Interfaces:
Serializable
,Comparable<ESemanticHighlightingEnabled>
rols whether the semanticHighlighting is shown for the languages that support it.
true
: Semantic highlighting
is enabled for all themes false
: Semantic highlighting is disabled for all themes. configuredByTheme
:
Semantic highlighting is controlled by the current color theme's semanticHighlighting
setting. Defaults to
configuredByTheme
.-
Enum Constant Summary
Enum Constants -
Method Summary
Modifier and TypeMethodDescriptionstatic ESemanticHighlightingEnabled
parseString
(String name) toString()
static ESemanticHighlightingEnabled
Returns the enum constant of this type with the specified name.static ESemanticHighlightingEnabled[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
TRUE
-
FALSE
-
CONFIGURED_BY_THEME
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
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
- Overrides:
toString
in classEnum<ESemanticHighlightingEnabled>
-
parseString
-