Class GeneratedSolrSearchQueryProperty

All Implemented Interfaces:
Serializable, Comparable
Direct Known Subclasses:
SolrSearchQueryProperty

public abstract class GeneratedSolrSearchQueryProperty extends GenericItem
Generated class for type SolrSearchQueryProperty.
See Also:
  • Field Details

    • PRIORITY

      public static final String PRIORITY
      Qualifier of the SolrSearchQueryProperty.priority attribute
      See Also:
    • INCLUDEINRESPONSE

      public static final String INCLUDEINRESPONSE
      Qualifier of the SolrSearchQueryProperty.includeInResponse attribute
      See Also:
    • USEFORHIGHLIGHTING

      public static final String USEFORHIGHLIGHTING
      Qualifier of the SolrSearchQueryProperty.useForHighlighting attribute
      See Also:
    • FACET

      public static final String FACET
      Qualifier of the SolrSearchQueryProperty.facet attribute
      See Also:
    • FACETTYPE

      public static final String FACETTYPE
      Qualifier of the SolrSearchQueryProperty.facetType attribute
      See Also:
    • FACETDISPLAYNAMEPROVIDER

      public static final String FACETDISPLAYNAMEPROVIDER
      Qualifier of the SolrSearchQueryProperty.facetDisplayNameProvider attribute
      See Also:
    • FACETSORTPROVIDER

      public static final String FACETSORTPROVIDER
      Qualifier of the SolrSearchQueryProperty.facetSortProvider attribute
      See Also:
    • FACETTOPVALUESPROVIDER

      public static final String FACETTOPVALUESPROVIDER
      Qualifier of the SolrSearchQueryProperty.facetTopValuesProvider attribute
      See Also:
    • FTSQUERY

      public static final String FTSQUERY
      Qualifier of the SolrSearchQueryProperty.ftsQuery attribute
      See Also:
    • FTSQUERYMINTERMLENGTH

      public static final String FTSQUERYMINTERMLENGTH
      Qualifier of the SolrSearchQueryProperty.ftsQueryMinTermLength attribute
      See Also:
    • FTSQUERYBOOST

      public static final String FTSQUERYBOOST
      Qualifier of the SolrSearchQueryProperty.ftsQueryBoost attribute
      See Also:
    • FTSFUZZYQUERY

      public static final String FTSFUZZYQUERY
      Qualifier of the SolrSearchQueryProperty.ftsFuzzyQuery attribute
      See Also:
    • FTSFUZZYQUERYMINTERMLENGTH

      public static final String FTSFUZZYQUERYMINTERMLENGTH
      Qualifier of the SolrSearchQueryProperty.ftsFuzzyQueryMinTermLength attribute
      See Also:
    • FTSFUZZYQUERYFUZZINESS

      public static final String FTSFUZZYQUERYFUZZINESS
      Qualifier of the SolrSearchQueryProperty.ftsFuzzyQueryFuzziness attribute
      See Also:
    • FTSFUZZYQUERYBOOST

      public static final String FTSFUZZYQUERYBOOST
      Qualifier of the SolrSearchQueryProperty.ftsFuzzyQueryBoost attribute
      See Also:
    • FTSWILDCARDQUERY

      public static final String FTSWILDCARDQUERY
      Qualifier of the SolrSearchQueryProperty.ftsWildcardQuery attribute
      See Also:
    • FTSWILDCARDQUERYMINTERMLENGTH

      public static final String FTSWILDCARDQUERYMINTERMLENGTH
      Qualifier of the SolrSearchQueryProperty.ftsWildcardQueryMinTermLength attribute
      See Also:
    • FTSWILDCARDQUERYTYPE

      public static final String FTSWILDCARDQUERYTYPE
      Qualifier of the SolrSearchQueryProperty.ftsWildcardQueryType attribute
      See Also:
    • FTSWILDCARDQUERYBOOST

      public static final String FTSWILDCARDQUERYBOOST
      Qualifier of the SolrSearchQueryProperty.ftsWildcardQueryBoost attribute
      See Also:
    • FTSPHRASEQUERY

      public static final String FTSPHRASEQUERY
      Qualifier of the SolrSearchQueryProperty.ftsPhraseQuery attribute
      See Also:
    • FTSPHRASEQUERYSLOP

      public static final String FTSPHRASEQUERYSLOP
      Qualifier of the SolrSearchQueryProperty.ftsPhraseQuerySlop attribute
      See Also:
    • FTSPHRASEQUERYBOOST

      public static final String FTSPHRASEQUERYBOOST
      Qualifier of the SolrSearchQueryProperty.ftsPhraseQueryBoost attribute
      See Also:
    • INDEXEDPROPERTYPOS

      public static final String INDEXEDPROPERTYPOS
      Qualifier of the SolrSearchQueryProperty.indexedPropertyPOS attribute
      See Also:
    • INDEXEDPROPERTY

      public static final String INDEXEDPROPERTY
      Qualifier of the SolrSearchQueryProperty.indexedProperty attribute
      See Also:
    • SEARCHQUERYTEMPLATEPOS

      public static final String SEARCHQUERYTEMPLATEPOS
      Qualifier of the SolrSearchQueryProperty.searchQueryTemplatePOS attribute
      See Also:
    • SEARCHQUERYTEMPLATE

      public static final String SEARCHQUERYTEMPLATE
      Qualifier of the SolrSearchQueryProperty.searchQueryTemplate attribute
      See Also:
    • INDEXEDPROPERTYHANDLER

      protected static final BidirectionalOneToManyHandler<GeneratedSolrSearchQueryProperty> INDEXEDPROPERTYHANDLER
      BidirectionalOneToManyHandler for handling 1:n INDEXEDPROPERTY's relation attributes from 'one' side.
    • SEARCHQUERYTEMPLATEHANDLER

      protected static final BidirectionalOneToManyHandler<GeneratedSolrSearchQueryProperty> SEARCHQUERYTEMPLATEHANDLER
      BidirectionalOneToManyHandler for handling 1:n SEARCHQUERYTEMPLATE's relation attributes from 'one' side.
    • DEFAULT_INITIAL_ATTRIBUTES

      protected static final Map<String,Item.AttributeMode> DEFAULT_INITIAL_ATTRIBUTES
  • Constructor Details

    • GeneratedSolrSearchQueryProperty

      public GeneratedSolrSearchQueryProperty()
  • Method Details

    • getDefaultAttributeModes

      protected Map<String,Item.AttributeMode> getDefaultAttributeModes()
      Overrides:
      getDefaultAttributeModes in class Item
    • 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 Boolean isFacet(SessionContext ctx)
      Generated method - Getter of the SolrSearchQueryProperty.facet attribute.
      Returns:
      the facet
    • isFacet

      public 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, 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
    • 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 String getFacetDisplayNameProvider(SessionContext ctx)
      Generated method - Getter of the SolrSearchQueryProperty.facetDisplayNameProvider attribute.
      Returns:
      the facetDisplayNameProvider
    • getFacetDisplayNameProvider

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

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

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

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

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

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

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

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

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

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

      public void setFacetTopValuesProvider(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 Boolean isFtsFuzzyQuery(SessionContext ctx)
      Generated method - Getter of the SolrSearchQueryProperty.ftsFuzzyQuery attribute.
      Returns:
      the ftsFuzzyQuery
    • isFtsFuzzyQuery

      public 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, 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
    • 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 Float getFtsFuzzyQueryBoost(SessionContext ctx)
      Generated method - Getter of the SolrSearchQueryProperty.ftsFuzzyQueryBoost attribute.
      Returns:
      the ftsFuzzyQueryBoost
    • getFtsFuzzyQueryBoost

      public 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, 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
    • 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 Integer getFtsFuzzyQueryFuzziness(SessionContext ctx)
      Generated method - Getter of the SolrSearchQueryProperty.ftsFuzzyQueryFuzziness attribute.
      Returns:
      the ftsFuzzyQueryFuzziness
    • getFtsFuzzyQueryFuzziness

      public 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, Integer value)
      Generated method - Setter of the SolrSearchQueryProperty.ftsFuzzyQueryFuzziness attribute.
      Parameters:
      value - the ftsFuzzyQueryFuzziness
    • setFtsFuzzyQueryFuzziness

      public void setFtsFuzzyQueryFuzziness(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 Integer getFtsFuzzyQueryMinTermLength(SessionContext ctx)
      Generated method - Getter of the SolrSearchQueryProperty.ftsFuzzyQueryMinTermLength attribute.
      Returns:
      the ftsFuzzyQueryMinTermLength
    • getFtsFuzzyQueryMinTermLength

      public 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, Integer value)
      Generated method - Setter of the SolrSearchQueryProperty.ftsFuzzyQueryMinTermLength attribute.
      Parameters:
      value - the ftsFuzzyQueryMinTermLength
    • setFtsFuzzyQueryMinTermLength

      public void setFtsFuzzyQueryMinTermLength(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 Boolean isFtsPhraseQuery(SessionContext ctx)
      Generated method - Getter of the SolrSearchQueryProperty.ftsPhraseQuery attribute.
      Returns:
      the ftsPhraseQuery
    • isFtsPhraseQuery

      public 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, 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
    • 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 Float getFtsPhraseQueryBoost(SessionContext ctx)
      Generated method - Getter of the SolrSearchQueryProperty.ftsPhraseQueryBoost attribute.
      Returns:
      the ftsPhraseQueryBoost
    • getFtsPhraseQueryBoost

      public 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, 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
    • 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 Float getFtsPhraseQuerySlop(SessionContext ctx)
      Generated method - Getter of the SolrSearchQueryProperty.ftsPhraseQuerySlop attribute.
      Returns:
      the ftsPhraseQuerySlop
    • getFtsPhraseQuerySlop

      public 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, 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
    • 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 Boolean isFtsQuery(SessionContext ctx)
      Generated method - Getter of the SolrSearchQueryProperty.ftsQuery attribute.
      Returns:
      the ftsQuery
    • isFtsQuery

      public 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, 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
    • 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 Float getFtsQueryBoost(SessionContext ctx)
      Generated method - Getter of the SolrSearchQueryProperty.ftsQueryBoost attribute.
      Returns:
      the ftsQueryBoost
    • getFtsQueryBoost

      public 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, 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
    • 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 Integer getFtsQueryMinTermLength(SessionContext ctx)
      Generated method - Getter of the SolrSearchQueryProperty.ftsQueryMinTermLength attribute.
      Returns:
      the ftsQueryMinTermLength
    • getFtsQueryMinTermLength

      public 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, Integer value)
      Generated method - Setter of the SolrSearchQueryProperty.ftsQueryMinTermLength attribute.
      Parameters:
      value - the ftsQueryMinTermLength
    • setFtsQueryMinTermLength

      public void setFtsQueryMinTermLength(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 Boolean isFtsWildcardQuery(SessionContext ctx)
      Generated method - Getter of the SolrSearchQueryProperty.ftsWildcardQuery attribute.
      Returns:
      the ftsWildcardQuery
    • isFtsWildcardQuery

      public 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, 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
    • 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 Float getFtsWildcardQueryBoost(SessionContext ctx)
      Generated method - Getter of the SolrSearchQueryProperty.ftsWildcardQueryBoost attribute.
      Returns:
      the ftsWildcardQueryBoost
    • getFtsWildcardQueryBoost

      public 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, 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
    • 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 Integer getFtsWildcardQueryMinTermLength(SessionContext ctx)
      Generated method - Getter of the SolrSearchQueryProperty.ftsWildcardQueryMinTermLength attribute.
      Returns:
      the ftsWildcardQueryMinTermLength
    • getFtsWildcardQueryMinTermLength

      public 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, Integer value)
      Generated method - Setter of the SolrSearchQueryProperty.ftsWildcardQueryMinTermLength attribute.
      Parameters:
      value - the ftsWildcardQueryMinTermLength
    • setFtsWildcardQueryMinTermLength

      public void setFtsWildcardQueryMinTermLength(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 Boolean isIncludeInResponse(SessionContext ctx)
      Generated method - Getter of the SolrSearchQueryProperty.includeInResponse attribute.
      Returns:
      the includeInResponse
    • isIncludeInResponse

      public 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, 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
    • 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 Integer getPriority(SessionContext ctx)
      Generated method - Getter of the SolrSearchQueryProperty.priority attribute.
      Returns:
      the priority
    • getPriority

      public 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, Integer value)
      Generated method - Setter of the SolrSearchQueryProperty.priority attribute.
      Parameters:
      value - the priority
    • setPriority

      public void setPriority(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 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 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, 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
    • 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