Class GeneratedSolrSearchQueryProperty

    • Field Detail

      • PRIORITY

        public static final java.lang.String PRIORITY
        Qualifier of the SolrSearchQueryProperty.priority attribute
        See Also:
        Constant Field Values
      • INCLUDEINRESPONSE

        public static final java.lang.String INCLUDEINRESPONSE
        Qualifier of the SolrSearchQueryProperty.includeInResponse attribute
        See Also:
        Constant Field Values
      • USEFORHIGHLIGHTING

        public static final java.lang.String USEFORHIGHLIGHTING
        Qualifier of the SolrSearchQueryProperty.useForHighlighting attribute
        See Also:
        Constant Field Values
      • FACET

        public static final java.lang.String FACET
        Qualifier of the SolrSearchQueryProperty.facet attribute
        See Also:
        Constant Field Values
      • FACETTYPE

        public static final java.lang.String FACETTYPE
        Qualifier of the SolrSearchQueryProperty.facetType attribute
        See Also:
        Constant Field Values
      • FACETDISPLAYNAMEPROVIDER

        public static final java.lang.String FACETDISPLAYNAMEPROVIDER
        Qualifier of the SolrSearchQueryProperty.facetDisplayNameProvider attribute
        See Also:
        Constant Field Values
      • FACETSORTPROVIDER

        public static final java.lang.String FACETSORTPROVIDER
        Qualifier of the SolrSearchQueryProperty.facetSortProvider attribute
        See Also:
        Constant Field Values
      • FACETTOPVALUESPROVIDER

        public static final java.lang.String FACETTOPVALUESPROVIDER
        Qualifier of the SolrSearchQueryProperty.facetTopValuesProvider attribute
        See Also:
        Constant Field Values
      • FTSQUERY

        public static final java.lang.String FTSQUERY
        Qualifier of the SolrSearchQueryProperty.ftsQuery attribute
        See Also:
        Constant Field Values
      • FTSQUERYMINTERMLENGTH

        public static final java.lang.String FTSQUERYMINTERMLENGTH
        Qualifier of the SolrSearchQueryProperty.ftsQueryMinTermLength attribute
        See Also:
        Constant Field Values
      • FTSQUERYBOOST

        public static final java.lang.String FTSQUERYBOOST
        Qualifier of the SolrSearchQueryProperty.ftsQueryBoost attribute
        See Also:
        Constant Field Values
      • FTSFUZZYQUERY

        public static final java.lang.String FTSFUZZYQUERY
        Qualifier of the SolrSearchQueryProperty.ftsFuzzyQuery attribute
        See Also:
        Constant Field Values
      • FTSFUZZYQUERYMINTERMLENGTH

        public static final java.lang.String FTSFUZZYQUERYMINTERMLENGTH
        Qualifier of the SolrSearchQueryProperty.ftsFuzzyQueryMinTermLength attribute
        See Also:
        Constant Field Values
      • FTSFUZZYQUERYFUZZINESS

        public static final java.lang.String FTSFUZZYQUERYFUZZINESS
        Qualifier of the SolrSearchQueryProperty.ftsFuzzyQueryFuzziness attribute
        See Also:
        Constant Field Values
      • FTSFUZZYQUERYBOOST

        public static final java.lang.String FTSFUZZYQUERYBOOST
        Qualifier of the SolrSearchQueryProperty.ftsFuzzyQueryBoost attribute
        See Also:
        Constant Field Values
      • FTSWILDCARDQUERY

        public static final java.lang.String FTSWILDCARDQUERY
        Qualifier of the SolrSearchQueryProperty.ftsWildcardQuery attribute
        See Also:
        Constant Field Values
      • FTSWILDCARDQUERYMINTERMLENGTH

        public static final java.lang.String FTSWILDCARDQUERYMINTERMLENGTH
        Qualifier of the SolrSearchQueryProperty.ftsWildcardQueryMinTermLength attribute
        See Also:
        Constant Field Values
      • FTSWILDCARDQUERYTYPE

        public static final java.lang.String FTSWILDCARDQUERYTYPE
        Qualifier of the SolrSearchQueryProperty.ftsWildcardQueryType attribute
        See Also:
        Constant Field Values
      • FTSWILDCARDQUERYBOOST

        public static final java.lang.String FTSWILDCARDQUERYBOOST
        Qualifier of the SolrSearchQueryProperty.ftsWildcardQueryBoost attribute
        See Also:
        Constant Field Values
      • FTSPHRASEQUERY

        public static final java.lang.String FTSPHRASEQUERY
        Qualifier of the SolrSearchQueryProperty.ftsPhraseQuery attribute
        See Also:
        Constant Field Values
      • FTSPHRASEQUERYSLOP

        public static final java.lang.String FTSPHRASEQUERYSLOP
        Qualifier of the SolrSearchQueryProperty.ftsPhraseQuerySlop attribute
        See Also:
        Constant Field Values
      • FTSPHRASEQUERYBOOST

        public static final java.lang.String FTSPHRASEQUERYBOOST
        Qualifier of the SolrSearchQueryProperty.ftsPhraseQueryBoost attribute
        See Also:
        Constant Field Values
      • INDEXEDPROPERTYPOS

        public static final java.lang.String INDEXEDPROPERTYPOS
        Qualifier of the SolrSearchQueryProperty.indexedPropertyPOS attribute
        See Also:
        Constant Field Values
      • INDEXEDPROPERTY

        public static final java.lang.String INDEXEDPROPERTY
        Qualifier of the SolrSearchQueryProperty.indexedProperty attribute
        See Also:
        Constant Field Values
      • SEARCHQUERYTEMPLATEPOS

        public static final java.lang.String SEARCHQUERYTEMPLATEPOS
        Qualifier of the SolrSearchQueryProperty.searchQueryTemplatePOS attribute
        See Also:
        Constant Field Values
      • SEARCHQUERYTEMPLATE

        public static final java.lang.String SEARCHQUERYTEMPLATE
        Qualifier of the SolrSearchQueryProperty.searchQueryTemplate attribute
        See Also:
        Constant Field Values
      • DEFAULT_INITIAL_ATTRIBUTES

        protected static final java.util.Map<java.lang.String,​Item.AttributeMode> DEFAULT_INITIAL_ATTRIBUTES
    • Constructor Detail

      • GeneratedSolrSearchQueryProperty

        public GeneratedSolrSearchQueryProperty()
    • Method Detail

      • createItem

        protected Item createItem​(SessionContext ctx,
                                  ComposedType type,
                                  Item.ItemAttributeMap allAttributes)
                           throws JaloBusinessException
        Description copied from class: Item
        Has to be implemented for each concrete subtype of item. This method is responsible for creating a new item instance ( by calling managers, ejb homes, etc. ) during ComposedType.newInstance(Map).

        In case this method uses any of the attribute values during creation it is required to override Item.getNonInitialAttributes(SessionContext, ItemAttributeMap) too.
        Sn example:

        
         public static final String MY_ATTRIBUTE = "someAttribute"; ... protected Item createItem(SessionContext
         ctx, ComposedType type, Map allAttributes ) throws JaloBusinessException { MyManager man = ... return
         man.createMyItem( (String)allAttributes.get(MY_ATTRIBUTE) );
         // here MY_ATTRIBUTE is used for creation, so it must not be set again } protected Map getNonInitialAttributes(
         SessionContext ctx, Map allAttributes ) { // let superclass remove its own initial attributes Map ret =
         super.getNonInitialAttributes( ctx, allAttributes );
         // remove MY_ATTRIBUTE from all attributes since if has already been set ret.remove(MY_ATTRIBUTE); return ret; }
        
         
        Overrides:
        createItem in class GenericItem
        Parameters:
        ctx - the current session context which this item is created within
        type - the actual item type ( since subtypes may not provide a own jalo class this may be different from the type which this method was implemented for )
        Returns:
        the new item instance
        Throws:
        JaloBusinessException - indicates an error during creation - any changes will be rollbacked
      • isFacet

        public java.lang.Boolean isFacet​(SessionContext ctx)
        Generated method - Getter of the SolrSearchQueryProperty.facet attribute.
        Returns:
        the facet
      • isFacet

        public java.lang.Boolean isFacet()
        Generated method - Getter of the SolrSearchQueryProperty.facet attribute.
        Returns:
        the facet
      • isFacetAsPrimitive

        public boolean isFacetAsPrimitive​(SessionContext ctx)
        Generated method - Getter of the SolrSearchQueryProperty.facet attribute.
        Returns:
        the facet
      • isFacetAsPrimitive

        public boolean isFacetAsPrimitive()
        Generated method - Getter of the SolrSearchQueryProperty.facet attribute.
        Returns:
        the facet
      • setFacet

        public void setFacet​(SessionContext ctx,
                             java.lang.Boolean value)
        Generated method - Setter of the SolrSearchQueryProperty.facet attribute.
        Parameters:
        value - the facet
      • setFacet

        public void setFacet​(java.lang.Boolean value)
        Generated method - Setter of the SolrSearchQueryProperty.facet attribute.
        Parameters:
        value - the facet
      • setFacet

        public void setFacet​(SessionContext ctx,
                             boolean value)
        Generated method - Setter of the SolrSearchQueryProperty.facet attribute.
        Parameters:
        value - the facet
      • setFacet

        public void setFacet​(boolean value)
        Generated method - Setter of the SolrSearchQueryProperty.facet attribute.
        Parameters:
        value - the facet
      • getFacetDisplayNameProvider

        public java.lang.String getFacetDisplayNameProvider​(SessionContext ctx)
        Generated method - Getter of the SolrSearchQueryProperty.facetDisplayNameProvider attribute.
        Returns:
        the facetDisplayNameProvider
      • getFacetDisplayNameProvider

        public java.lang.String getFacetDisplayNameProvider()
        Generated method - Getter of the SolrSearchQueryProperty.facetDisplayNameProvider attribute.
        Returns:
        the facetDisplayNameProvider
      • setFacetDisplayNameProvider

        public void setFacetDisplayNameProvider​(SessionContext ctx,
                                                java.lang.String value)
        Generated method - Setter of the SolrSearchQueryProperty.facetDisplayNameProvider attribute.
        Parameters:
        value - the facetDisplayNameProvider
      • setFacetDisplayNameProvider

        public void setFacetDisplayNameProvider​(java.lang.String value)
        Generated method - Setter of the SolrSearchQueryProperty.facetDisplayNameProvider attribute.
        Parameters:
        value - the facetDisplayNameProvider
      • getFacetSortProvider

        public java.lang.String getFacetSortProvider​(SessionContext ctx)
        Generated method - Getter of the SolrSearchQueryProperty.facetSortProvider attribute.
        Returns:
        the facetSortProvider
      • getFacetSortProvider

        public java.lang.String getFacetSortProvider()
        Generated method - Getter of the SolrSearchQueryProperty.facetSortProvider attribute.
        Returns:
        the facetSortProvider
      • setFacetSortProvider

        public void setFacetSortProvider​(SessionContext ctx,
                                         java.lang.String value)
        Generated method - Setter of the SolrSearchQueryProperty.facetSortProvider attribute.
        Parameters:
        value - the facetSortProvider
      • setFacetSortProvider

        public void setFacetSortProvider​(java.lang.String value)
        Generated method - Setter of the SolrSearchQueryProperty.facetSortProvider attribute.
        Parameters:
        value - the facetSortProvider
      • getFacetTopValuesProvider

        public java.lang.String getFacetTopValuesProvider​(SessionContext ctx)
        Generated method - Getter of the SolrSearchQueryProperty.facetTopValuesProvider attribute.
        Returns:
        the facetTopValuesProvider
      • getFacetTopValuesProvider

        public java.lang.String getFacetTopValuesProvider()
        Generated method - Getter of the SolrSearchQueryProperty.facetTopValuesProvider attribute.
        Returns:
        the facetTopValuesProvider
      • setFacetTopValuesProvider

        public void setFacetTopValuesProvider​(SessionContext ctx,
                                              java.lang.String value)
        Generated method - Setter of the SolrSearchQueryProperty.facetTopValuesProvider attribute.
        Parameters:
        value - the facetTopValuesProvider
      • setFacetTopValuesProvider

        public void setFacetTopValuesProvider​(java.lang.String value)
        Generated method - Setter of the SolrSearchQueryProperty.facetTopValuesProvider attribute.
        Parameters:
        value - the facetTopValuesProvider
      • getFacetType

        public EnumerationValue getFacetType​(SessionContext ctx)
        Generated method - Getter of the SolrSearchQueryProperty.facetType attribute.
        Returns:
        the facetType
      • getFacetType

        public EnumerationValue getFacetType()
        Generated method - Getter of the SolrSearchQueryProperty.facetType attribute.
        Returns:
        the facetType
      • setFacetType

        public void setFacetType​(SessionContext ctx,
                                 EnumerationValue value)
        Generated method - Setter of the SolrSearchQueryProperty.facetType attribute.
        Parameters:
        value - the facetType
      • setFacetType

        public void setFacetType​(EnumerationValue value)
        Generated method - Setter of the SolrSearchQueryProperty.facetType attribute.
        Parameters:
        value - the facetType
      • isFtsFuzzyQuery

        public java.lang.Boolean isFtsFuzzyQuery​(SessionContext ctx)
        Generated method - Getter of the SolrSearchQueryProperty.ftsFuzzyQuery attribute.
        Returns:
        the ftsFuzzyQuery
      • isFtsFuzzyQuery

        public java.lang.Boolean isFtsFuzzyQuery()
        Generated method - Getter of the SolrSearchQueryProperty.ftsFuzzyQuery attribute.
        Returns:
        the ftsFuzzyQuery
      • isFtsFuzzyQueryAsPrimitive

        public boolean isFtsFuzzyQueryAsPrimitive​(SessionContext ctx)
        Generated method - Getter of the SolrSearchQueryProperty.ftsFuzzyQuery attribute.
        Returns:
        the ftsFuzzyQuery
      • isFtsFuzzyQueryAsPrimitive

        public boolean isFtsFuzzyQueryAsPrimitive()
        Generated method - Getter of the SolrSearchQueryProperty.ftsFuzzyQuery attribute.
        Returns:
        the ftsFuzzyQuery
      • setFtsFuzzyQuery

        public void setFtsFuzzyQuery​(SessionContext ctx,
                                     java.lang.Boolean value)
        Generated method - Setter of the SolrSearchQueryProperty.ftsFuzzyQuery attribute.
        Parameters:
        value - the ftsFuzzyQuery
      • setFtsFuzzyQuery

        public void setFtsFuzzyQuery​(java.lang.Boolean value)
        Generated method - Setter of the SolrSearchQueryProperty.ftsFuzzyQuery attribute.
        Parameters:
        value - the ftsFuzzyQuery
      • setFtsFuzzyQuery

        public void setFtsFuzzyQuery​(SessionContext ctx,
                                     boolean value)
        Generated method - Setter of the SolrSearchQueryProperty.ftsFuzzyQuery attribute.
        Parameters:
        value - the ftsFuzzyQuery
      • setFtsFuzzyQuery

        public void setFtsFuzzyQuery​(boolean value)
        Generated method - Setter of the SolrSearchQueryProperty.ftsFuzzyQuery attribute.
        Parameters:
        value - the ftsFuzzyQuery
      • getFtsFuzzyQueryBoost

        public java.lang.Float getFtsFuzzyQueryBoost​(SessionContext ctx)
        Generated method - Getter of the SolrSearchQueryProperty.ftsFuzzyQueryBoost attribute.
        Returns:
        the ftsFuzzyQueryBoost
      • getFtsFuzzyQueryBoost

        public java.lang.Float getFtsFuzzyQueryBoost()
        Generated method - Getter of the SolrSearchQueryProperty.ftsFuzzyQueryBoost attribute.
        Returns:
        the ftsFuzzyQueryBoost
      • getFtsFuzzyQueryBoostAsPrimitive

        public float getFtsFuzzyQueryBoostAsPrimitive​(SessionContext ctx)
        Generated method - Getter of the SolrSearchQueryProperty.ftsFuzzyQueryBoost attribute.
        Returns:
        the ftsFuzzyQueryBoost
      • getFtsFuzzyQueryBoostAsPrimitive

        public float getFtsFuzzyQueryBoostAsPrimitive()
        Generated method - Getter of the SolrSearchQueryProperty.ftsFuzzyQueryBoost attribute.
        Returns:
        the ftsFuzzyQueryBoost
      • setFtsFuzzyQueryBoost

        public void setFtsFuzzyQueryBoost​(SessionContext ctx,
                                          java.lang.Float value)
        Generated method - Setter of the SolrSearchQueryProperty.ftsFuzzyQueryBoost attribute.
        Parameters:
        value - the ftsFuzzyQueryBoost
      • setFtsFuzzyQueryBoost

        public void setFtsFuzzyQueryBoost​(java.lang.Float value)
        Generated method - Setter of the SolrSearchQueryProperty.ftsFuzzyQueryBoost attribute.
        Parameters:
        value - the ftsFuzzyQueryBoost
      • setFtsFuzzyQueryBoost

        public void setFtsFuzzyQueryBoost​(SessionContext ctx,
                                          float value)
        Generated method - Setter of the SolrSearchQueryProperty.ftsFuzzyQueryBoost attribute.
        Parameters:
        value - the ftsFuzzyQueryBoost
      • setFtsFuzzyQueryBoost

        public void setFtsFuzzyQueryBoost​(float value)
        Generated method - Setter of the SolrSearchQueryProperty.ftsFuzzyQueryBoost attribute.
        Parameters:
        value - the ftsFuzzyQueryBoost
      • getFtsFuzzyQueryFuzziness

        public java.lang.Integer getFtsFuzzyQueryFuzziness​(SessionContext ctx)
        Generated method - Getter of the SolrSearchQueryProperty.ftsFuzzyQueryFuzziness attribute.
        Returns:
        the ftsFuzzyQueryFuzziness
      • getFtsFuzzyQueryFuzziness

        public java.lang.Integer getFtsFuzzyQueryFuzziness()
        Generated method - Getter of the SolrSearchQueryProperty.ftsFuzzyQueryFuzziness attribute.
        Returns:
        the ftsFuzzyQueryFuzziness
      • getFtsFuzzyQueryFuzzinessAsPrimitive

        public int getFtsFuzzyQueryFuzzinessAsPrimitive​(SessionContext ctx)
        Generated method - Getter of the SolrSearchQueryProperty.ftsFuzzyQueryFuzziness attribute.
        Returns:
        the ftsFuzzyQueryFuzziness
      • getFtsFuzzyQueryFuzzinessAsPrimitive

        public int getFtsFuzzyQueryFuzzinessAsPrimitive()
        Generated method - Getter of the SolrSearchQueryProperty.ftsFuzzyQueryFuzziness attribute.
        Returns:
        the ftsFuzzyQueryFuzziness
      • setFtsFuzzyQueryFuzziness

        public void setFtsFuzzyQueryFuzziness​(SessionContext ctx,
                                              java.lang.Integer value)
        Generated method - Setter of the SolrSearchQueryProperty.ftsFuzzyQueryFuzziness attribute.
        Parameters:
        value - the ftsFuzzyQueryFuzziness
      • setFtsFuzzyQueryFuzziness

        public void setFtsFuzzyQueryFuzziness​(java.lang.Integer value)
        Generated method - Setter of the SolrSearchQueryProperty.ftsFuzzyQueryFuzziness attribute.
        Parameters:
        value - the ftsFuzzyQueryFuzziness
      • setFtsFuzzyQueryFuzziness

        public void setFtsFuzzyQueryFuzziness​(SessionContext ctx,
                                              int value)
        Generated method - Setter of the SolrSearchQueryProperty.ftsFuzzyQueryFuzziness attribute.
        Parameters:
        value - the ftsFuzzyQueryFuzziness
      • setFtsFuzzyQueryFuzziness

        public void setFtsFuzzyQueryFuzziness​(int value)
        Generated method - Setter of the SolrSearchQueryProperty.ftsFuzzyQueryFuzziness attribute.
        Parameters:
        value - the ftsFuzzyQueryFuzziness
      • getFtsFuzzyQueryMinTermLength

        public java.lang.Integer getFtsFuzzyQueryMinTermLength​(SessionContext ctx)
        Generated method - Getter of the SolrSearchQueryProperty.ftsFuzzyQueryMinTermLength attribute.
        Returns:
        the ftsFuzzyQueryMinTermLength
      • getFtsFuzzyQueryMinTermLength

        public java.lang.Integer getFtsFuzzyQueryMinTermLength()
        Generated method - Getter of the SolrSearchQueryProperty.ftsFuzzyQueryMinTermLength attribute.
        Returns:
        the ftsFuzzyQueryMinTermLength
      • getFtsFuzzyQueryMinTermLengthAsPrimitive

        public int getFtsFuzzyQueryMinTermLengthAsPrimitive​(SessionContext ctx)
        Generated method - Getter of the SolrSearchQueryProperty.ftsFuzzyQueryMinTermLength attribute.
        Returns:
        the ftsFuzzyQueryMinTermLength
      • getFtsFuzzyQueryMinTermLengthAsPrimitive

        public int getFtsFuzzyQueryMinTermLengthAsPrimitive()
        Generated method - Getter of the SolrSearchQueryProperty.ftsFuzzyQueryMinTermLength attribute.
        Returns:
        the ftsFuzzyQueryMinTermLength
      • setFtsFuzzyQueryMinTermLength

        public void setFtsFuzzyQueryMinTermLength​(SessionContext ctx,
                                                  java.lang.Integer value)
        Generated method - Setter of the SolrSearchQueryProperty.ftsFuzzyQueryMinTermLength attribute.
        Parameters:
        value - the ftsFuzzyQueryMinTermLength
      • setFtsFuzzyQueryMinTermLength

        public void setFtsFuzzyQueryMinTermLength​(java.lang.Integer value)
        Generated method - Setter of the SolrSearchQueryProperty.ftsFuzzyQueryMinTermLength attribute.
        Parameters:
        value - the ftsFuzzyQueryMinTermLength
      • setFtsFuzzyQueryMinTermLength

        public void setFtsFuzzyQueryMinTermLength​(SessionContext ctx,
                                                  int value)
        Generated method - Setter of the SolrSearchQueryProperty.ftsFuzzyQueryMinTermLength attribute.
        Parameters:
        value - the ftsFuzzyQueryMinTermLength
      • setFtsFuzzyQueryMinTermLength

        public void setFtsFuzzyQueryMinTermLength​(int value)
        Generated method - Setter of the SolrSearchQueryProperty.ftsFuzzyQueryMinTermLength attribute.
        Parameters:
        value - the ftsFuzzyQueryMinTermLength
      • isFtsPhraseQuery

        public java.lang.Boolean isFtsPhraseQuery​(SessionContext ctx)
        Generated method - Getter of the SolrSearchQueryProperty.ftsPhraseQuery attribute.
        Returns:
        the ftsPhraseQuery
      • isFtsPhraseQuery

        public java.lang.Boolean isFtsPhraseQuery()
        Generated method - Getter of the SolrSearchQueryProperty.ftsPhraseQuery attribute.
        Returns:
        the ftsPhraseQuery
      • isFtsPhraseQueryAsPrimitive

        public boolean isFtsPhraseQueryAsPrimitive​(SessionContext ctx)
        Generated method - Getter of the SolrSearchQueryProperty.ftsPhraseQuery attribute.
        Returns:
        the ftsPhraseQuery
      • isFtsPhraseQueryAsPrimitive

        public boolean isFtsPhraseQueryAsPrimitive()
        Generated method - Getter of the SolrSearchQueryProperty.ftsPhraseQuery attribute.
        Returns:
        the ftsPhraseQuery
      • setFtsPhraseQuery

        public void setFtsPhraseQuery​(SessionContext ctx,
                                      java.lang.Boolean value)
        Generated method - Setter of the SolrSearchQueryProperty.ftsPhraseQuery attribute.
        Parameters:
        value - the ftsPhraseQuery
      • setFtsPhraseQuery

        public void setFtsPhraseQuery​(java.lang.Boolean value)
        Generated method - Setter of the SolrSearchQueryProperty.ftsPhraseQuery attribute.
        Parameters:
        value - the ftsPhraseQuery
      • setFtsPhraseQuery

        public void setFtsPhraseQuery​(SessionContext ctx,
                                      boolean value)
        Generated method - Setter of the SolrSearchQueryProperty.ftsPhraseQuery attribute.
        Parameters:
        value - the ftsPhraseQuery
      • setFtsPhraseQuery

        public void setFtsPhraseQuery​(boolean value)
        Generated method - Setter of the SolrSearchQueryProperty.ftsPhraseQuery attribute.
        Parameters:
        value - the ftsPhraseQuery
      • getFtsPhraseQueryBoost

        public java.lang.Float getFtsPhraseQueryBoost​(SessionContext ctx)
        Generated method - Getter of the SolrSearchQueryProperty.ftsPhraseQueryBoost attribute.
        Returns:
        the ftsPhraseQueryBoost
      • getFtsPhraseQueryBoost

        public java.lang.Float getFtsPhraseQueryBoost()
        Generated method - Getter of the SolrSearchQueryProperty.ftsPhraseQueryBoost attribute.
        Returns:
        the ftsPhraseQueryBoost
      • getFtsPhraseQueryBoostAsPrimitive

        public float getFtsPhraseQueryBoostAsPrimitive​(SessionContext ctx)
        Generated method - Getter of the SolrSearchQueryProperty.ftsPhraseQueryBoost attribute.
        Returns:
        the ftsPhraseQueryBoost
      • getFtsPhraseQueryBoostAsPrimitive

        public float getFtsPhraseQueryBoostAsPrimitive()
        Generated method - Getter of the SolrSearchQueryProperty.ftsPhraseQueryBoost attribute.
        Returns:
        the ftsPhraseQueryBoost
      • setFtsPhraseQueryBoost

        public void setFtsPhraseQueryBoost​(SessionContext ctx,
                                           java.lang.Float value)
        Generated method - Setter of the SolrSearchQueryProperty.ftsPhraseQueryBoost attribute.
        Parameters:
        value - the ftsPhraseQueryBoost
      • setFtsPhraseQueryBoost

        public void setFtsPhraseQueryBoost​(java.lang.Float value)
        Generated method - Setter of the SolrSearchQueryProperty.ftsPhraseQueryBoost attribute.
        Parameters:
        value - the ftsPhraseQueryBoost
      • setFtsPhraseQueryBoost

        public void setFtsPhraseQueryBoost​(SessionContext ctx,
                                           float value)
        Generated method - Setter of the SolrSearchQueryProperty.ftsPhraseQueryBoost attribute.
        Parameters:
        value - the ftsPhraseQueryBoost
      • setFtsPhraseQueryBoost

        public void setFtsPhraseQueryBoost​(float value)
        Generated method - Setter of the SolrSearchQueryProperty.ftsPhraseQueryBoost attribute.
        Parameters:
        value - the ftsPhraseQueryBoost
      • getFtsPhraseQuerySlop

        public java.lang.Float getFtsPhraseQuerySlop​(SessionContext ctx)
        Generated method - Getter of the SolrSearchQueryProperty.ftsPhraseQuerySlop attribute.
        Returns:
        the ftsPhraseQuerySlop
      • getFtsPhraseQuerySlop

        public java.lang.Float getFtsPhraseQuerySlop()
        Generated method - Getter of the SolrSearchQueryProperty.ftsPhraseQuerySlop attribute.
        Returns:
        the ftsPhraseQuerySlop
      • getFtsPhraseQuerySlopAsPrimitive

        public float getFtsPhraseQuerySlopAsPrimitive​(SessionContext ctx)
        Generated method - Getter of the SolrSearchQueryProperty.ftsPhraseQuerySlop attribute.
        Returns:
        the ftsPhraseQuerySlop
      • getFtsPhraseQuerySlopAsPrimitive

        public float getFtsPhraseQuerySlopAsPrimitive()
        Generated method - Getter of the SolrSearchQueryProperty.ftsPhraseQuerySlop attribute.
        Returns:
        the ftsPhraseQuerySlop
      • setFtsPhraseQuerySlop

        public void setFtsPhraseQuerySlop​(SessionContext ctx,
                                          java.lang.Float value)
        Generated method - Setter of the SolrSearchQueryProperty.ftsPhraseQuerySlop attribute.
        Parameters:
        value - the ftsPhraseQuerySlop
      • setFtsPhraseQuerySlop

        public void setFtsPhraseQuerySlop​(java.lang.Float value)
        Generated method - Setter of the SolrSearchQueryProperty.ftsPhraseQuerySlop attribute.
        Parameters:
        value - the ftsPhraseQuerySlop
      • setFtsPhraseQuerySlop

        public void setFtsPhraseQuerySlop​(SessionContext ctx,
                                          float value)
        Generated method - Setter of the SolrSearchQueryProperty.ftsPhraseQuerySlop attribute.
        Parameters:
        value - the ftsPhraseQuerySlop
      • setFtsPhraseQuerySlop

        public void setFtsPhraseQuerySlop​(float value)
        Generated method - Setter of the SolrSearchQueryProperty.ftsPhraseQuerySlop attribute.
        Parameters:
        value - the ftsPhraseQuerySlop
      • isFtsQuery

        public java.lang.Boolean isFtsQuery​(SessionContext ctx)
        Generated method - Getter of the SolrSearchQueryProperty.ftsQuery attribute.
        Returns:
        the ftsQuery
      • isFtsQuery

        public java.lang.Boolean isFtsQuery()
        Generated method - Getter of the SolrSearchQueryProperty.ftsQuery attribute.
        Returns:
        the ftsQuery
      • isFtsQueryAsPrimitive

        public boolean isFtsQueryAsPrimitive​(SessionContext ctx)
        Generated method - Getter of the SolrSearchQueryProperty.ftsQuery attribute.
        Returns:
        the ftsQuery
      • isFtsQueryAsPrimitive

        public boolean isFtsQueryAsPrimitive()
        Generated method - Getter of the SolrSearchQueryProperty.ftsQuery attribute.
        Returns:
        the ftsQuery
      • setFtsQuery

        public void setFtsQuery​(SessionContext ctx,
                                java.lang.Boolean value)
        Generated method - Setter of the SolrSearchQueryProperty.ftsQuery attribute.
        Parameters:
        value - the ftsQuery
      • setFtsQuery

        public void setFtsQuery​(java.lang.Boolean value)
        Generated method - Setter of the SolrSearchQueryProperty.ftsQuery attribute.
        Parameters:
        value - the ftsQuery
      • setFtsQuery

        public void setFtsQuery​(SessionContext ctx,
                                boolean value)
        Generated method - Setter of the SolrSearchQueryProperty.ftsQuery attribute.
        Parameters:
        value - the ftsQuery
      • setFtsQuery

        public void setFtsQuery​(boolean value)
        Generated method - Setter of the SolrSearchQueryProperty.ftsQuery attribute.
        Parameters:
        value - the ftsQuery
      • getFtsQueryBoost

        public java.lang.Float getFtsQueryBoost​(SessionContext ctx)
        Generated method - Getter of the SolrSearchQueryProperty.ftsQueryBoost attribute.
        Returns:
        the ftsQueryBoost
      • getFtsQueryBoost

        public java.lang.Float getFtsQueryBoost()
        Generated method - Getter of the SolrSearchQueryProperty.ftsQueryBoost attribute.
        Returns:
        the ftsQueryBoost
      • getFtsQueryBoostAsPrimitive

        public float getFtsQueryBoostAsPrimitive​(SessionContext ctx)
        Generated method - Getter of the SolrSearchQueryProperty.ftsQueryBoost attribute.
        Returns:
        the ftsQueryBoost
      • getFtsQueryBoostAsPrimitive

        public float getFtsQueryBoostAsPrimitive()
        Generated method - Getter of the SolrSearchQueryProperty.ftsQueryBoost attribute.
        Returns:
        the ftsQueryBoost
      • setFtsQueryBoost

        public void setFtsQueryBoost​(SessionContext ctx,
                                     java.lang.Float value)
        Generated method - Setter of the SolrSearchQueryProperty.ftsQueryBoost attribute.
        Parameters:
        value - the ftsQueryBoost
      • setFtsQueryBoost

        public void setFtsQueryBoost​(java.lang.Float value)
        Generated method - Setter of the SolrSearchQueryProperty.ftsQueryBoost attribute.
        Parameters:
        value - the ftsQueryBoost
      • setFtsQueryBoost

        public void setFtsQueryBoost​(SessionContext ctx,
                                     float value)
        Generated method - Setter of the SolrSearchQueryProperty.ftsQueryBoost attribute.
        Parameters:
        value - the ftsQueryBoost
      • setFtsQueryBoost

        public void setFtsQueryBoost​(float value)
        Generated method - Setter of the SolrSearchQueryProperty.ftsQueryBoost attribute.
        Parameters:
        value - the ftsQueryBoost
      • getFtsQueryMinTermLength

        public java.lang.Integer getFtsQueryMinTermLength​(SessionContext ctx)
        Generated method - Getter of the SolrSearchQueryProperty.ftsQueryMinTermLength attribute.
        Returns:
        the ftsQueryMinTermLength
      • getFtsQueryMinTermLength

        public java.lang.Integer getFtsQueryMinTermLength()
        Generated method - Getter of the SolrSearchQueryProperty.ftsQueryMinTermLength attribute.
        Returns:
        the ftsQueryMinTermLength
      • getFtsQueryMinTermLengthAsPrimitive

        public int getFtsQueryMinTermLengthAsPrimitive​(SessionContext ctx)
        Generated method - Getter of the SolrSearchQueryProperty.ftsQueryMinTermLength attribute.
        Returns:
        the ftsQueryMinTermLength
      • getFtsQueryMinTermLengthAsPrimitive

        public int getFtsQueryMinTermLengthAsPrimitive()
        Generated method - Getter of the SolrSearchQueryProperty.ftsQueryMinTermLength attribute.
        Returns:
        the ftsQueryMinTermLength
      • setFtsQueryMinTermLength

        public void setFtsQueryMinTermLength​(SessionContext ctx,
                                             java.lang.Integer value)
        Generated method - Setter of the SolrSearchQueryProperty.ftsQueryMinTermLength attribute.
        Parameters:
        value - the ftsQueryMinTermLength
      • setFtsQueryMinTermLength

        public void setFtsQueryMinTermLength​(java.lang.Integer value)
        Generated method - Setter of the SolrSearchQueryProperty.ftsQueryMinTermLength attribute.
        Parameters:
        value - the ftsQueryMinTermLength
      • setFtsQueryMinTermLength

        public void setFtsQueryMinTermLength​(SessionContext ctx,
                                             int value)
        Generated method - Setter of the SolrSearchQueryProperty.ftsQueryMinTermLength attribute.
        Parameters:
        value - the ftsQueryMinTermLength
      • setFtsQueryMinTermLength

        public void setFtsQueryMinTermLength​(int value)
        Generated method - Setter of the SolrSearchQueryProperty.ftsQueryMinTermLength attribute.
        Parameters:
        value - the ftsQueryMinTermLength
      • isFtsWildcardQuery

        public java.lang.Boolean isFtsWildcardQuery​(SessionContext ctx)
        Generated method - Getter of the SolrSearchQueryProperty.ftsWildcardQuery attribute.
        Returns:
        the ftsWildcardQuery
      • isFtsWildcardQuery

        public java.lang.Boolean isFtsWildcardQuery()
        Generated method - Getter of the SolrSearchQueryProperty.ftsWildcardQuery attribute.
        Returns:
        the ftsWildcardQuery
      • isFtsWildcardQueryAsPrimitive

        public boolean isFtsWildcardQueryAsPrimitive​(SessionContext ctx)
        Generated method - Getter of the SolrSearchQueryProperty.ftsWildcardQuery attribute.
        Returns:
        the ftsWildcardQuery
      • isFtsWildcardQueryAsPrimitive

        public boolean isFtsWildcardQueryAsPrimitive()
        Generated method - Getter of the SolrSearchQueryProperty.ftsWildcardQuery attribute.
        Returns:
        the ftsWildcardQuery
      • setFtsWildcardQuery

        public void setFtsWildcardQuery​(SessionContext ctx,
                                        java.lang.Boolean value)
        Generated method - Setter of the SolrSearchQueryProperty.ftsWildcardQuery attribute.
        Parameters:
        value - the ftsWildcardQuery
      • setFtsWildcardQuery

        public void setFtsWildcardQuery​(java.lang.Boolean value)
        Generated method - Setter of the SolrSearchQueryProperty.ftsWildcardQuery attribute.
        Parameters:
        value - the ftsWildcardQuery
      • setFtsWildcardQuery

        public void setFtsWildcardQuery​(SessionContext ctx,
                                        boolean value)
        Generated method - Setter of the SolrSearchQueryProperty.ftsWildcardQuery attribute.
        Parameters:
        value - the ftsWildcardQuery
      • setFtsWildcardQuery

        public void setFtsWildcardQuery​(boolean value)
        Generated method - Setter of the SolrSearchQueryProperty.ftsWildcardQuery attribute.
        Parameters:
        value - the ftsWildcardQuery
      • getFtsWildcardQueryBoost

        public java.lang.Float getFtsWildcardQueryBoost​(SessionContext ctx)
        Generated method - Getter of the SolrSearchQueryProperty.ftsWildcardQueryBoost attribute.
        Returns:
        the ftsWildcardQueryBoost
      • getFtsWildcardQueryBoost

        public java.lang.Float getFtsWildcardQueryBoost()
        Generated method - Getter of the SolrSearchQueryProperty.ftsWildcardQueryBoost attribute.
        Returns:
        the ftsWildcardQueryBoost
      • getFtsWildcardQueryBoostAsPrimitive

        public float getFtsWildcardQueryBoostAsPrimitive​(SessionContext ctx)
        Generated method - Getter of the SolrSearchQueryProperty.ftsWildcardQueryBoost attribute.
        Returns:
        the ftsWildcardQueryBoost
      • getFtsWildcardQueryBoostAsPrimitive

        public float getFtsWildcardQueryBoostAsPrimitive()
        Generated method - Getter of the SolrSearchQueryProperty.ftsWildcardQueryBoost attribute.
        Returns:
        the ftsWildcardQueryBoost
      • setFtsWildcardQueryBoost

        public void setFtsWildcardQueryBoost​(SessionContext ctx,
                                             java.lang.Float value)
        Generated method - Setter of the SolrSearchQueryProperty.ftsWildcardQueryBoost attribute.
        Parameters:
        value - the ftsWildcardQueryBoost
      • setFtsWildcardQueryBoost

        public void setFtsWildcardQueryBoost​(java.lang.Float value)
        Generated method - Setter of the SolrSearchQueryProperty.ftsWildcardQueryBoost attribute.
        Parameters:
        value - the ftsWildcardQueryBoost
      • setFtsWildcardQueryBoost

        public void setFtsWildcardQueryBoost​(SessionContext ctx,
                                             float value)
        Generated method - Setter of the SolrSearchQueryProperty.ftsWildcardQueryBoost attribute.
        Parameters:
        value - the ftsWildcardQueryBoost
      • setFtsWildcardQueryBoost

        public void setFtsWildcardQueryBoost​(float value)
        Generated method - Setter of the SolrSearchQueryProperty.ftsWildcardQueryBoost attribute.
        Parameters:
        value - the ftsWildcardQueryBoost
      • getFtsWildcardQueryMinTermLength

        public java.lang.Integer getFtsWildcardQueryMinTermLength​(SessionContext ctx)
        Generated method - Getter of the SolrSearchQueryProperty.ftsWildcardQueryMinTermLength attribute.
        Returns:
        the ftsWildcardQueryMinTermLength
      • getFtsWildcardQueryMinTermLength

        public java.lang.Integer getFtsWildcardQueryMinTermLength()
        Generated method - Getter of the SolrSearchQueryProperty.ftsWildcardQueryMinTermLength attribute.
        Returns:
        the ftsWildcardQueryMinTermLength
      • getFtsWildcardQueryMinTermLengthAsPrimitive

        public int getFtsWildcardQueryMinTermLengthAsPrimitive​(SessionContext ctx)
        Generated method - Getter of the SolrSearchQueryProperty.ftsWildcardQueryMinTermLength attribute.
        Returns:
        the ftsWildcardQueryMinTermLength
      • getFtsWildcardQueryMinTermLengthAsPrimitive

        public int getFtsWildcardQueryMinTermLengthAsPrimitive()
        Generated method - Getter of the SolrSearchQueryProperty.ftsWildcardQueryMinTermLength attribute.
        Returns:
        the ftsWildcardQueryMinTermLength
      • setFtsWildcardQueryMinTermLength

        public void setFtsWildcardQueryMinTermLength​(SessionContext ctx,
                                                     java.lang.Integer value)
        Generated method - Setter of the SolrSearchQueryProperty.ftsWildcardQueryMinTermLength attribute.
        Parameters:
        value - the ftsWildcardQueryMinTermLength
      • setFtsWildcardQueryMinTermLength

        public void setFtsWildcardQueryMinTermLength​(java.lang.Integer value)
        Generated method - Setter of the SolrSearchQueryProperty.ftsWildcardQueryMinTermLength attribute.
        Parameters:
        value - the ftsWildcardQueryMinTermLength
      • setFtsWildcardQueryMinTermLength

        public void setFtsWildcardQueryMinTermLength​(SessionContext ctx,
                                                     int value)
        Generated method - Setter of the SolrSearchQueryProperty.ftsWildcardQueryMinTermLength attribute.
        Parameters:
        value - the ftsWildcardQueryMinTermLength
      • setFtsWildcardQueryMinTermLength

        public void setFtsWildcardQueryMinTermLength​(int value)
        Generated method - Setter of the SolrSearchQueryProperty.ftsWildcardQueryMinTermLength attribute.
        Parameters:
        value - the ftsWildcardQueryMinTermLength
      • getFtsWildcardQueryType

        public EnumerationValue getFtsWildcardQueryType​(SessionContext ctx)
        Generated method - Getter of the SolrSearchQueryProperty.ftsWildcardQueryType attribute.
        Returns:
        the ftsWildcardQueryType
      • getFtsWildcardQueryType

        public EnumerationValue getFtsWildcardQueryType()
        Generated method - Getter of the SolrSearchQueryProperty.ftsWildcardQueryType attribute.
        Returns:
        the ftsWildcardQueryType
      • setFtsWildcardQueryType

        public void setFtsWildcardQueryType​(SessionContext ctx,
                                            EnumerationValue value)
        Generated method - Setter of the SolrSearchQueryProperty.ftsWildcardQueryType attribute.
        Parameters:
        value - the ftsWildcardQueryType
      • setFtsWildcardQueryType

        public void setFtsWildcardQueryType​(EnumerationValue value)
        Generated method - Setter of the SolrSearchQueryProperty.ftsWildcardQueryType attribute.
        Parameters:
        value - the ftsWildcardQueryType
      • isIncludeInResponse

        public java.lang.Boolean isIncludeInResponse​(SessionContext ctx)
        Generated method - Getter of the SolrSearchQueryProperty.includeInResponse attribute.
        Returns:
        the includeInResponse
      • isIncludeInResponse

        public java.lang.Boolean isIncludeInResponse()
        Generated method - Getter of the SolrSearchQueryProperty.includeInResponse attribute.
        Returns:
        the includeInResponse
      • isIncludeInResponseAsPrimitive

        public boolean isIncludeInResponseAsPrimitive​(SessionContext ctx)
        Generated method - Getter of the SolrSearchQueryProperty.includeInResponse attribute.
        Returns:
        the includeInResponse
      • isIncludeInResponseAsPrimitive

        public boolean isIncludeInResponseAsPrimitive()
        Generated method - Getter of the SolrSearchQueryProperty.includeInResponse attribute.
        Returns:
        the includeInResponse
      • setIncludeInResponse

        public void setIncludeInResponse​(SessionContext ctx,
                                         java.lang.Boolean value)
        Generated method - Setter of the SolrSearchQueryProperty.includeInResponse attribute.
        Parameters:
        value - the includeInResponse
      • setIncludeInResponse

        public void setIncludeInResponse​(java.lang.Boolean value)
        Generated method - Setter of the SolrSearchQueryProperty.includeInResponse attribute.
        Parameters:
        value - the includeInResponse
      • setIncludeInResponse

        public void setIncludeInResponse​(SessionContext ctx,
                                         boolean value)
        Generated method - Setter of the SolrSearchQueryProperty.includeInResponse attribute.
        Parameters:
        value - the includeInResponse
      • setIncludeInResponse

        public void setIncludeInResponse​(boolean value)
        Generated method - Setter of the SolrSearchQueryProperty.includeInResponse attribute.
        Parameters:
        value - the includeInResponse
      • getIndexedProperty

        public SolrIndexedProperty getIndexedProperty​(SessionContext ctx)
        Generated method - Getter of the SolrSearchQueryProperty.indexedProperty attribute.
        Returns:
        the indexedProperty
      • getIndexedProperty

        public SolrIndexedProperty getIndexedProperty()
        Generated method - Getter of the SolrSearchQueryProperty.indexedProperty attribute.
        Returns:
        the indexedProperty
      • setIndexedProperty

        protected void setIndexedProperty​(SessionContext ctx,
                                          SolrIndexedProperty value)
        Generated method - Setter of the SolrSearchQueryProperty.indexedProperty attribute.
        Parameters:
        value - the indexedProperty
      • setIndexedProperty

        protected void setIndexedProperty​(SolrIndexedProperty value)
        Generated method - Setter of the SolrSearchQueryProperty.indexedProperty attribute.
        Parameters:
        value - the indexedProperty
      • getPriority

        public java.lang.Integer getPriority​(SessionContext ctx)
        Generated method - Getter of the SolrSearchQueryProperty.priority attribute.
        Returns:
        the priority
      • getPriority

        public java.lang.Integer getPriority()
        Generated method - Getter of the SolrSearchQueryProperty.priority attribute.
        Returns:
        the priority
      • getPriorityAsPrimitive

        public int getPriorityAsPrimitive​(SessionContext ctx)
        Generated method - Getter of the SolrSearchQueryProperty.priority attribute.
        Returns:
        the priority
      • getPriorityAsPrimitive

        public int getPriorityAsPrimitive()
        Generated method - Getter of the SolrSearchQueryProperty.priority attribute.
        Returns:
        the priority
      • setPriority

        public void setPriority​(SessionContext ctx,
                                java.lang.Integer value)
        Generated method - Setter of the SolrSearchQueryProperty.priority attribute.
        Parameters:
        value - the priority
      • setPriority

        public void setPriority​(java.lang.Integer value)
        Generated method - Setter of the SolrSearchQueryProperty.priority attribute.
        Parameters:
        value - the priority
      • setPriority

        public void setPriority​(SessionContext ctx,
                                int value)
        Generated method - Setter of the SolrSearchQueryProperty.priority attribute.
        Parameters:
        value - the priority
      • setPriority

        public void setPriority​(int value)
        Generated method - Setter of the SolrSearchQueryProperty.priority attribute.
        Parameters:
        value - the priority
      • getSearchQueryTemplate

        public SolrSearchQueryTemplate getSearchQueryTemplate​(SessionContext ctx)
        Generated method - Getter of the SolrSearchQueryProperty.searchQueryTemplate attribute.
        Returns:
        the searchQueryTemplate
      • getSearchQueryTemplate

        public SolrSearchQueryTemplate getSearchQueryTemplate()
        Generated method - Getter of the SolrSearchQueryProperty.searchQueryTemplate attribute.
        Returns:
        the searchQueryTemplate
      • setSearchQueryTemplate

        protected void setSearchQueryTemplate​(SessionContext ctx,
                                              SolrSearchQueryTemplate value)
        Generated method - Setter of the SolrSearchQueryProperty.searchQueryTemplate attribute.
        Parameters:
        value - the searchQueryTemplate
      • setSearchQueryTemplate

        protected void setSearchQueryTemplate​(SolrSearchQueryTemplate value)
        Generated method - Setter of the SolrSearchQueryProperty.searchQueryTemplate attribute.
        Parameters:
        value - the searchQueryTemplate
      • isUseForHighlighting

        public java.lang.Boolean isUseForHighlighting​(SessionContext ctx)
        Generated method - Getter of the SolrSearchQueryProperty.useForHighlighting attribute.
        Returns:
        the useForHighlighting - Determines if this property will be used for highlighting search term
      • isUseForHighlighting

        public java.lang.Boolean isUseForHighlighting()
        Generated method - Getter of the SolrSearchQueryProperty.useForHighlighting attribute.
        Returns:
        the useForHighlighting - Determines if this property will be used for highlighting search term
      • isUseForHighlightingAsPrimitive

        public boolean isUseForHighlightingAsPrimitive​(SessionContext ctx)
        Generated method - Getter of the SolrSearchQueryProperty.useForHighlighting attribute.
        Returns:
        the useForHighlighting - Determines if this property will be used for highlighting search term
      • isUseForHighlightingAsPrimitive

        public boolean isUseForHighlightingAsPrimitive()
        Generated method - Getter of the SolrSearchQueryProperty.useForHighlighting attribute.
        Returns:
        the useForHighlighting - Determines if this property will be used for highlighting search term
      • setUseForHighlighting

        public void setUseForHighlighting​(SessionContext ctx,
                                          java.lang.Boolean value)
        Generated method - Setter of the SolrSearchQueryProperty.useForHighlighting attribute.
        Parameters:
        value - the useForHighlighting - Determines if this property will be used for highlighting search term
      • setUseForHighlighting

        public void setUseForHighlighting​(java.lang.Boolean value)
        Generated method - Setter of the SolrSearchQueryProperty.useForHighlighting attribute.
        Parameters:
        value - the useForHighlighting - Determines if this property will be used for highlighting search term
      • setUseForHighlighting

        public void setUseForHighlighting​(SessionContext ctx,
                                          boolean value)
        Generated method - Setter of the SolrSearchQueryProperty.useForHighlighting attribute.
        Parameters:
        value - the useForHighlighting - Determines if this property will be used for highlighting search term
      • setUseForHighlighting

        public void setUseForHighlighting​(boolean value)
        Generated method - Setter of the SolrSearchQueryProperty.useForHighlighting attribute.
        Parameters:
        value - the useForHighlighting - Determines if this property will be used for highlighting search term