| Package | Description |
|---|---|
| org.jsimpledb.parse.expr |
Classes for parsing Java expressions with JSimpleDB-specific extensions.
|
| Modifier and Type | Class and Description |
|---|---|
class |
AdditiveExprParser
Parses Java additive expressions of the form
x + y and x - y. |
class |
AssignmentExprParser
Parses Java assignment expressions of the form
x = y, x += y, etc. |
class |
BitwiseAndParser
Parses bit-wise AND expressions of the form
x & y. |
class |
BitwiseOrParser
Parses bit-wise OR expressions of the form
x | y. |
class |
BitwiseXorParser
Parses bit-wise XOR expressions of the form
x ^ y. |
class |
EqualityParser
Parses equality expressions of the form
x == y or x != y. |
class |
LogicalAndParser
Parses logical AND expressions of the form
x && y. |
class |
LogicalOrParser
Parses logical OR expressions of the form
x || y. |
class |
MultiplicativeExprParser
Parses multiplicative expressions of the form
x & y, x / y, and x % y. |
class |
RelationalExprParser
Parses relational expressions of the form
x < y, x >= y, etc. |
class |
ShiftExprParser
Parses shift expressions of the form
x << y, x >> y, and x >>> y. |
Copyright © 2017. All rights reserved.