Class EditorQuickSuggestionsOptions
- java.lang.Object
-
- org.primefaces.shaded.json.JSONObject
-
- org.primefaces.extensions.model.monacoeditor.EditorQuickSuggestionsOptions
-
- All Implemented Interfaces:
java.io.Serializable
public class EditorQuickSuggestionsOptions extends org.primefaces.shaded.json.JSONObject implements java.io.Serializable- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description EditorQuickSuggestionsOptions()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.BooleanisComments()java.lang.BooleanisOther()java.lang.BooleanisStrings()EditorQuickSuggestionsOptionssetComments(java.lang.Boolean comments)EditorQuickSuggestionsOptionssetOther(java.lang.Boolean other)EditorQuickSuggestionsOptionssetStrings(java.lang.Boolean strings)-
Methods inherited from class org.primefaces.shaded.json.JSONObject
accumulate, append, doubleToString, entrySet, get, getBigDecimal, getBigInteger, getBoolean, getDouble, getEnum, getFloat, getInt, getJSONArray, getJSONObject, getLong, getNames, getNames, getNumber, getString, has, increment, isDecimalNotation, isEmpty, isNull, keys, keySet, length, names, numberToString, opt, optBigDecimal, optBigInteger, optBoolean, optBoolean, optDouble, optDouble, optEnum, optEnum, optFloat, optFloat, optInt, optInt, optJSONArray, optJSONObject, optLong, optLong, optNumber, optNumber, optQuery, optQuery, optString, optString, put, put, put, put, put, put, put, put, putOnce, putOpt, query, query, quote, quote, remove, similar, stringToNumber, stringToValue, testValidity, toJSONArray, toMap, toString, toString, valueToString, wrap, write, write
-
-
-
-
Method Detail
-
isComments
public java.lang.Boolean isComments()
- Returns:
- Whether to include comments in quick suggestions (shadow suggestions)
-
setComments
public EditorQuickSuggestionsOptions setComments(java.lang.Boolean comments)
- Parameters:
comments- Whether to include comments in quick suggestions (shadow suggestions)- Returns:
- This same instance, useful for chaining multiple setter methods in one call.
-
isOther
public java.lang.Boolean isOther()
- Returns:
- Whether to include other types in quick suggestions (shadow suggestions)
-
setOther
public EditorQuickSuggestionsOptions setOther(java.lang.Boolean other)
- Parameters:
other- Whether to include other types in quick suggestions (shadow suggestions)- Returns:
- This same instance, useful for chaining multiple setter methods in one call.
-
isStrings
public java.lang.Boolean isStrings()
- Returns:
- Whether to include strings in quick suggestions (shadow suggestions)
-
setStrings
public EditorQuickSuggestionsOptions setStrings(java.lang.Boolean strings)
- Parameters:
strings- Whether to include strings in quick suggestions (shadow suggestions)- Returns:
- This same instance, useful for chaining multiple setter methods in one call.
-
-