Uses of Class
com.jayway.jsonpath.internal.filter.LogicalOperator
-
Packages that use LogicalOperator Package Description com.jayway.jsonpath.internal.filter -
-
Uses of LogicalOperator in com.jayway.jsonpath.internal.filter
Fields in com.jayway.jsonpath.internal.filter declared as LogicalOperator Modifier and Type Field Description private LogicalOperator
LogicalExpressionNode. operator
Methods in com.jayway.jsonpath.internal.filter that return LogicalOperator Modifier and Type Method Description static LogicalOperator
LogicalOperator. fromString(java.lang.String operatorString)
LogicalOperator
LogicalExpressionNode. getOperator()
private LogicalOperator
FilterCompiler. readLogicalOperator()
static LogicalOperator
LogicalOperator. valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static LogicalOperator[]
LogicalOperator. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in com.jayway.jsonpath.internal.filter with parameters of type LogicalOperator Modifier and Type Method Description static ExpressionNode
ExpressionNode. createExpressionNode(ExpressionNode right, LogicalOperator operator, ExpressionNode left)
Constructors in com.jayway.jsonpath.internal.filter with parameters of type LogicalOperator Constructor Description LogicalExpressionNode(ExpressionNode left, LogicalOperator operator, ExpressionNode right)
-