Class EditorQuickSuggestionsOptions

  • All Implemented Interfaces:
    java.io.Serializable

    public class EditorQuickSuggestionsOptions
    extends org.primefaces.shaded.json.JSONObject
    implements java.io.Serializable
    Configuration options for quick suggestions
    See Also:
    Serialized Form
    • Field Summary

      • Fields inherited from class org.primefaces.shaded.json.JSONObject

        NULL
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      java.lang.Boolean isComments()  
      java.lang.Boolean isOther()  
      java.lang.Boolean isStrings()  
      EditorQuickSuggestionsOptions setComments​(java.lang.Boolean comments)  
      EditorQuickSuggestionsOptions setOther​(java.lang.Boolean other)  
      EditorQuickSuggestionsOptions setStrings​(java.lang.Boolean strings)  
      • Methods inherited from class org.primefaces.shaded.json.JSONObject

        accumulate, append, clear, doubleToString, entrySet, get, getBigDecimal, getBigInteger, getBoolean, getDouble, getEnum, getFloat, getInt, getJSONArray, getJSONObject, getLong, getMapType, 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, 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
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
    • Constructor Detail

      • EditorQuickSuggestionsOptions

        public EditorQuickSuggestionsOptions()
    • 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.