| Package | Description |
|---|---|
| org.jsimpledb.parse.expr |
Classes for parsing Java expressions with JSimpleDB-specific extensions.
|
| Modifier and Type | Method and Description |
|---|---|
static Op |
Op.forSymbol(String symbol)
Get the
Op corresponding to the given symbol. |
static Op |
Op.valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Op[] |
Op.values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
| Modifier and Type | Method and Description |
|---|---|
protected Node |
LogicalOrParser.createNode(Op op,
Node lhNode,
Node rhNode) |
protected Node |
LogicalAndParser.createNode(Op op,
Node lhNode,
Node rhNode) |
protected Node |
BinaryExprParser.createNode(Op op,
Node lhs,
Node rhs) |
protected Node |
AssignmentExprParser.createNode(Op op,
Node lhs,
Node rhs) |
| Constructor and Description |
|---|
BinaryExprParser(Parser<? extends Node> lowerLevel,
boolean leftAssociative,
Op... ops)
Primary constructor.
|
BinaryExprParser(Parser<? extends Node> lowerLevel,
Op... ops)
Convenience constructor for left-associative operators.
|
Copyright © 2017. All rights reserved.