Class DisjunctNode
- java.lang.Object
-
- com.redis.lettucemod.search.querybuilder.QueryNode
-
- com.redis.lettucemod.search.querybuilder.IntersectNode
-
- com.redis.lettucemod.search.querybuilder.DisjunctNode
-
- All Implemented Interfaces:
Node
- Direct Known Subclasses:
DisjunctUnionNode
public class DisjunctNode extends IntersectNode
A disjunct node. evaluates to true if any of its children are false. Conversely, this node evaluates to false only iff all of its children are true, making it the exact inverse ofIntersectNodeIn RS, it looks like:-(@f1:v1 @f2:v2)
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface com.redis.lettucemod.search.querybuilder.Node
Node.ParenMode
-
-
Constructor Summary
Constructors Constructor Description DisjunctNode()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringtoString(Node.ParenMode mode)Returns the string form of this node.-
Methods inherited from class com.redis.lettucemod.search.querybuilder.IntersectNode
getJoinString
-
-
-
-
Method Detail
-
toString
public java.lang.String toString(Node.ParenMode mode)
Description copied from interface:NodeReturns the string form of this node.
-
-