sealed trait FuzzyQuery[S] extends ElasticQuery[S]
- Alphabetic
- By Inheritance
- FuzzyQuery
- ElasticQuery
- AnyRef
- Any
- Hide All
- Show All
- Public
- Protected
Abstract Value Members
- abstract def fuzziness(value: String): FuzzyQuery[S]
Sets the
fuzzinessparameter for the zio.elasticsearch.query.FuzzyQuery.Sets the
fuzzinessparameter for the zio.elasticsearch.query.FuzzyQuery. Thefuzzinessvalue refers to the ability to find results that are similar to, but not exactly the same as, the search term or query.- value
the text value to represent the 'fuzziness' field
- returns
an instance of the zio.elasticsearch.query.FuzzyQuery enriched with the
fuzzinessparameter.
- abstract def maxExpansions(value: Int): FuzzyQuery[S]
Sets the
maxExpansionsparameter for this zio.elasticsearch.query.ElasticQuery.Sets the
maxExpansionsparameter for this zio.elasticsearch.query.ElasticQuery. ThemaxExpansionsvalue defines the maximum number of terms the fuzzy query will match before halting the search.- value
the positive whole number value for
maxExpansionsparameter- returns
an instance of the zio.elasticsearch.query.ElasticQuery enriched with the
maxExpansionsparameter.
- abstract def prefixLength(value: Int): FuzzyQuery[S]
Sets the
prefixLengthparameter for this zio.elasticsearch.query.ElasticQuery.Sets the
prefixLengthparameter for this zio.elasticsearch.query.ElasticQuery. TheprefixLengthvalue refers to the number of beginning characters left unchanged when creating expansions.- value
the positive whole number value for
prefixLengthparameter- returns
an instance of the zio.elasticsearch.query.ElasticQuery enriched with the
prefixLengthparameter.
Concrete Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##: Int
- Definition Classes
- AnyRef → Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @IntrinsicCandidate() @native()
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef → Any
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @IntrinsicCandidate() @native()
- def hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @IntrinsicCandidate() @native()
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @IntrinsicCandidate() @native()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @IntrinsicCandidate() @native()
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def toString(): String
- Definition Classes
- AnyRef → Any
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])