BoolNode

data class BoolNode(handle: NodeHandle<BoolNode>, filter: MutableList<QueryExpression>, should: MutableList<QueryExpression>, must: MutableList<QueryExpression>, mustNot: MutableList<QueryExpression>, minimumShouldMatch: MinimumShouldMatch?) : QueryExpressionNode<BoolNode> , BoolExpression

Types

Companion
Link copied to clipboard
object Companion

Functions

accept
Link copied to clipboard
open override fun accept(ctx: <ERROR CLASS>, compiler: SearchQueryCompiler)
children
Link copied to clipboard
open fun children(): Iterator<Expression<*>>?
clone
Link copied to clipboard
open override fun clone(): BoolNode
reduce
Link copied to clipboard
open override fun reduce(): QueryExpression?
toQueryExpression
Link copied to clipboard
open override fun toQueryExpression(): Bool
visit
Link copied to clipboard
open override fun visit(ctx: <ERROR CLASS>, compiler: SearchQueryCompiler)

Properties

filter
Link copied to clipboard
open override var filter: MutableList<QueryExpression>
handle
Link copied to clipboard
open override val handle: NodeHandle<BoolNode>
minimumShouldMatch
Link copied to clipboard
var minimumShouldMatch: MinimumShouldMatch? = null
must
Link copied to clipboard
open override var must: MutableList<QueryExpression>
mustNot
Link copied to clipboard
open override var mustNot: MutableList<QueryExpression>
name
Link copied to clipboard
open override val name: String
should
Link copied to clipboard
open override var should: MutableList<QueryExpression>