Package io.trino.sql.jsonpath.tree
Class ConjunctionPredicate
- java.lang.Object
-
- io.trino.sql.jsonpath.tree.PathNode
-
- io.trino.sql.jsonpath.tree.Predicate
-
- io.trino.sql.jsonpath.tree.ConjunctionPredicate
-
public class ConjunctionPredicate extends Predicate
-
-
Constructor Summary
Constructors Constructor Description ConjunctionPredicate(Predicate left, Predicate right)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description <R,C>
Raccept(JsonPathTreeVisitor<R,C> visitor, C context)PredicategetLeft()PredicategetRight()
-
-
-
Method Detail
-
accept
public <R,C> R accept(JsonPathTreeVisitor<R,C> visitor, C context)
-
getLeft
public Predicate getLeft()
-
getRight
public Predicate getRight()
-
-