| Package | Description |
|---|---|
| redis.clients.jedis.search.querybuilder |
| Modifier and Type | Class and Description |
|---|---|
class |
DisjunctNode
A disjunct node. evaluates to true if any of its children are false.
|
class |
DisjunctUnionNode
A disjunct union node is the inverse of a
UnionNode. |
class |
IntersectNode
The intersection node evaluates to true if any of its children are true.
|
class |
OptionalNode
Created by mnunberg on 2/23/18.
|
class |
QueryNode |
class |
UnionNode
Created by mnunberg on 2/23/18.
|
class |
ValueNode
Created by mnunberg on 2/23/18.
|
| Modifier and Type | Method and Description |
|---|---|
QueryNode |
QueryNode.add(Node... nodes)
Add children nodes to this node.
|
static QueryNode |
QueryBuilders.disjunct(Node... n)
Create a disjunct node.
|
static QueryNode |
QueryBuilders.disjunctUnion(Node... n)
Create a disjunct union node.
|
static QueryNode |
QueryBuilders.intersect(Node... n)
Create a new intersection node with child nodes.
|
static QueryNode |
QueryBuilders.optional(Node... n)
Create an optional node.
|
static QueryNode |
QueryBuilders.union(Node... n)
Create a union node.
|
Copyright © 2025. All rights reserved.