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
fuzziness
parameter for the zio.elasticsearch.query.FuzzyQuery.Sets the
fuzziness
parameter for the zio.elasticsearch.query.FuzzyQuery. Thefuzziness
value 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
fuzziness
parameter.
- abstract def maxExpansions(value: Int): FuzzyQuery[S]
Sets the
maxExpansions
parameter for this zio.elasticsearch.query.ElasticQuery.Sets the
maxExpansions
parameter for this zio.elasticsearch.query.ElasticQuery. ThemaxExpansions
value defines the maximum number of terms the fuzzy query will match before halting the search.- value
the positive whole number value for
maxExpansions
parameter- returns
an instance of the zio.elasticsearch.query.ElasticQuery enriched with the
maxExpansions
parameter.
- abstract def prefixLength(value: Int): FuzzyQuery[S]
Sets the
prefixLength
parameter for this zio.elasticsearch.query.ElasticQuery.Sets the
prefixLength
parameter for this zio.elasticsearch.query.ElasticQuery. TheprefixLength
value refers to the number of beginning characters left unchanged when creating expansions.- value
the positive whole number value for
prefixLength
parameter- returns
an instance of the zio.elasticsearch.query.ElasticQuery enriched with the
prefixLength
parameter.
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])