Package org.jboss.jdeparser
Class Prec
- java.lang.Object
-
- org.jboss.jdeparser.Prec
-
final class Prec extends java.lang.Object
-
-
Field Summary
Fields Modifier and Type Field Description (package private) static int
ADDITIVE
(package private) static int
ARRAY_ACCESS
(package private) static int
ASSIGN
(package private) static int
BIT_AND
(package private) static int
BIT_OR
(package private) static int
BIT_XOR
(package private) static int
CAST
(package private) static int
COND
(package private) static int
EQUALITY
(package private) static int
INSTANCEOF
(package private) static int
LOG_AND
(package private) static int
LOG_OR
(package private) static int
MEMBER_ACCESS
(package private) static int
METHOD_CALL
(package private) static int
MULTIPLICATIVE
(package private) static int
NEW
(package private) static int
PAREN
(package private) static int
POST_INC_DEC
(package private) static int
PRE_INC_DEC
(package private) static int
RELATIONAL
(package private) static int
SHIFT
(package private) static int
UNARY
-
Constructor Summary
Constructors Constructor Description Prec()
-
-
-
Field Detail
-
PAREN
static final int PAREN
- See Also:
- Constant Field Values
-
ARRAY_ACCESS
static final int ARRAY_ACCESS
- See Also:
- Constant Field Values
-
MEMBER_ACCESS
static final int MEMBER_ACCESS
- See Also:
- Constant Field Values
-
METHOD_CALL
static final int METHOD_CALL
- See Also:
- Constant Field Values
-
POST_INC_DEC
static final int POST_INC_DEC
- See Also:
- Constant Field Values
-
PRE_INC_DEC
static final int PRE_INC_DEC
- See Also:
- Constant Field Values
-
UNARY
static final int UNARY
- See Also:
- Constant Field Values
-
CAST
static final int CAST
- See Also:
- Constant Field Values
-
NEW
static final int NEW
- See Also:
- Constant Field Values
-
MULTIPLICATIVE
static final int MULTIPLICATIVE
- See Also:
- Constant Field Values
-
ADDITIVE
static final int ADDITIVE
- See Also:
- Constant Field Values
-
SHIFT
static final int SHIFT
- See Also:
- Constant Field Values
-
RELATIONAL
static final int RELATIONAL
- See Also:
- Constant Field Values
-
INSTANCEOF
static final int INSTANCEOF
- See Also:
- Constant Field Values
-
EQUALITY
static final int EQUALITY
- See Also:
- Constant Field Values
-
BIT_AND
static final int BIT_AND
- See Also:
- Constant Field Values
-
BIT_XOR
static final int BIT_XOR
- See Also:
- Constant Field Values
-
BIT_OR
static final int BIT_OR
- See Also:
- Constant Field Values
-
LOG_AND
static final int LOG_AND
- See Also:
- Constant Field Values
-
LOG_OR
static final int LOG_OR
- See Also:
- Constant Field Values
-
COND
static final int COND
- See Also:
- Constant Field Values
-
ASSIGN
static final int ASSIGN
- See Also:
- Constant Field Values
-
-