Packages

sealed trait TermQuery[S] extends ElasticQuery[S] with HasBoost[TermQuery[S]] with HasCaseInsensitive[TermQuery[S]]

Linear Supertypes
HasCaseInsensitive[TermQuery[S]], HasBoost[TermQuery[S]], ElasticQuery[S], AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. TermQuery
  2. HasCaseInsensitive
  3. HasBoost
  4. ElasticQuery
  5. AnyRef
  6. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Abstract Value Members

  1. abstract def boost(value: Double): TermQuery[S]

    Sets the boost parameter for this ElasticQuery.

    Sets the boost parameter for this ElasticQuery. The boost value is a positive multiplier applied to the score of documents matching the query. A value greater than 1 increases the relevance score of matching documents, while a value less than 1 decreases it. The default boost value is 1.

    value

    a non-negative real number to set boost parameter to

    returns

    a new instance of the ElasticQuery with the boost value set.

    Definition Classes
    HasBoost
  2. abstract def caseInsensitive(value: Boolean): TermQuery[S]

    Sets the caseInsensitive parameter for the ElasticQuery.

    Sets the caseInsensitive parameter for the ElasticQuery. Case-insensitive queries match text regardless of the case of the characters in the query string. By default, queries are case-sensitive.

    value

    the Boolean value for caseInsensitive parameter

    returns

    a new instance of the ElasticQuery with the caseInsensitive value set.

    Definition Classes
    HasCaseInsensitive
  3. abstract def paramsToJson(fieldPath: Option[String]): Json
    Definition Classes
    ElasticQuery

Concrete Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##: Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  5. final def caseInsensitiveFalse: TermQuery[S]

    Sets the caseInsensitive parameter to false for this ElasticQuery.

    Sets the caseInsensitive parameter to false for this ElasticQuery. Same as caseInsensitive(false).

    returns

    a new instance of the ElasticQuery with the caseInsensitive value set to false.

    Definition Classes
    HasCaseInsensitive
  6. final def caseInsensitiveTrue: TermQuery[S]

    Sets the caseInsensitive parameter to true for this ElasticQuery.

    Sets the caseInsensitive parameter to true for this ElasticQuery. Same as caseInsensitive(true).

    returns

    a new instance of the ElasticQuery with the caseInsensitive value set to true.

    Definition Classes
    HasCaseInsensitive
  7. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native() @IntrinsicCandidate()
  8. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  9. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  10. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @IntrinsicCandidate()
  11. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @IntrinsicCandidate()
  12. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  13. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  14. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @IntrinsicCandidate()
  15. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @IntrinsicCandidate()
  16. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  17. final def toJson: Obj
    Definition Classes
    ElasticQuery
  18. def toString(): String
    Definition Classes
    AnyRef → Any
  19. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  20. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  21. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])

Deprecated Value Members

  1. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable]) @Deprecated
    Deprecated

Inherited from HasCaseInsensitive[TermQuery[S]]

Inherited from HasBoost[TermQuery[S]]

Inherited from ElasticQuery[S]

Inherited from AnyRef

Inherited from Any

Ungrouped