Package deltix.util.jcg.scg
Class JavaOpPriority
- java.lang.Object
-
- deltix.util.jcg.scg.JavaOpPriority
-
public class JavaOpPriority extends java.lang.Object
postfix expr++ expr-- unary ++expr --expr +expr -expr ~ ! multiplicative * / % additive + - shift << >> >>> relational < > <= >= instanceof equality == != bitwise AND & bitwise exclusive OR ^ bitwise inclusive OR | logical AND && logical OR || ternary ? : assignment = += -= *= /= %= &= ^= |= <<= >>= >>>=
-
-
Field Summary
Fields Modifier and Type Field Description static int
ADDITIVE
static int
ASSIGNMENT
static int
BIT_AND
static int
BIT_OR
static int
BIT_XOR
static int
BOOL_AND
static int
BOOL_OR
static int
CAST
static int
EQUALITY
static int
MULTIPLICATIVE
static int
OPEN
static int
POSTFIX
static int
RELATIONAL
static int
SHIFT
static int
TERNARY
static int
UNARY
-
Constructor Summary
Constructors Constructor Description JavaOpPriority()
-
-
-
Field Detail
-
OPEN
public static final int OPEN
- See Also:
- Constant Field Values
-
ASSIGNMENT
public static final int ASSIGNMENT
- See Also:
- Constant Field Values
-
TERNARY
public static final int TERNARY
- See Also:
- Constant Field Values
-
BOOL_OR
public static final int BOOL_OR
- See Also:
- Constant Field Values
-
BOOL_AND
public static final int BOOL_AND
- See Also:
- Constant Field Values
-
BIT_OR
public static final int BIT_OR
- See Also:
- Constant Field Values
-
BIT_XOR
public static final int BIT_XOR
- See Also:
- Constant Field Values
-
BIT_AND
public static final int BIT_AND
- See Also:
- Constant Field Values
-
EQUALITY
public static final int EQUALITY
- See Also:
- Constant Field Values
-
RELATIONAL
public static final int RELATIONAL
- See Also:
- Constant Field Values
-
SHIFT
public static final int SHIFT
- See Also:
- Constant Field Values
-
ADDITIVE
public static final int ADDITIVE
- See Also:
- Constant Field Values
-
MULTIPLICATIVE
public static final int MULTIPLICATIVE
- See Also:
- Constant Field Values
-
CAST
public static final int CAST
- See Also:
- Constant Field Values
-
UNARY
public static final int UNARY
- See Also:
- Constant Field Values
-
POSTFIX
public static final int POSTFIX
- See Also:
- Constant Field Values
-
-