Package | Description |
---|---|
io.redisearch.querybuilder |
Modifier and Type | Class and Description |
---|---|
class |
DisjunctNode
A disjunct node.
|
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 |
UnionNode
Created by mnunberg on 2/23/18.
|
Modifier and Type | Method and Description |
---|---|
QueryNode |
QueryNode.add(Node... nodes)
Add children nodes to this node.
|
QueryNode |
QueryNode.add(String field,
Collection<Value> values)
Add a list of values from a collection
|
QueryNode |
QueryNode.add(String field,
String... values)
Convenience method to add a list of string values
|
QueryNode |
QueryNode.add(String field,
Value... values)
Add a match criteria to this node
|
static QueryNode |
QueryBuilder.disjunct(Node... n)
Create a disjunct node.
|
static QueryNode |
QueryBuilder.disjunct(String field,
String... values)
Create a disjunct node using one or more values.
|
static QueryNode |
QueryBuilder.disjunct(String field,
Value... values)
Create a disjunct node using one or more values.
|
static QueryNode |
QueryBuilder.disjunctUnion(Node... n)
Create a disjunct union node.
|
static QueryNode |
QueryBuilder.disjunctUnion(String field,
String... values) |
static QueryNode |
QueryBuilder.disjunctUnion(String field,
Value... values) |
static QueryNode |
QueryBuilder.intersect(Node... n)
Create a new intersection node with child nodes.
|
static QueryNode |
QueryBuilder.intersect(String field,
String stringValue)
Helper method to create a new intersection node with a string value.
|
static QueryNode |
QueryBuilder.intersect(String field,
Value... values)
Create a new intersection node with a field-value pair.
|
static QueryNode |
QueryBuilder.optional(Node... n)
Create an optional node.
|
static QueryNode |
QueryBuilder.optional(String field,
Value... values) |
static QueryNode |
QueryBuilder.union(Node... n)
Create a union node.
|
static QueryNode |
QueryBuilder.union(String field,
String... values)
Convenience method to match one or more strings.
|
static QueryNode |
QueryBuilder.union(String field,
Value... values)
Create a union node which can match an one or more values
|
Copyright © 2021 RedisLabs. All rights reserved.