public interface JAssignableExpr extends JExpr, JStatement
| Modifier and Type | Method and Description |
|---|---|
JExpr |
addAssign(JExpr e1)
Combine this expression with another using the binary
+= operator. |
JExpr |
andAssign(JExpr e1)
Combine this expression with another using the binary
&= operator. |
JExpr |
assign(JExpr e1)
Combine this expression with another using the binary
= operator. |
JExpr |
divAssign(JExpr e1)
Combine this expression with another using the binary
/= operator. |
JExpr |
lshrAssign(JExpr e1)
Combine this expression with another using the binary
>>>= operator. |
JExpr |
modAssign(JExpr e1)
Combine this expression with another using the binary
%= operator. |
JExpr |
mulAssign(JExpr e1)
Combine this expression with another using the binary
*= operator. |
JExpr |
orAssign(JExpr e1)
Combine this expression with another using the binary
|= operator. |
JExpr |
postDec()
Apply the postfix
-- operator to this expression. |
JExpr |
postInc()
Apply the postfix
++ operator to this expression. |
JExpr |
preDec()
Apply the prefix
-- operator to this expression. |
JExpr |
preInc()
Apply the prefix
++ operator to this expression. |
JExpr |
shlAssign(JExpr e1)
Combine this expression with another using the binary
<<= operator. |
JExpr |
shrAssign(JExpr e1)
Combine this expression with another using the binary
>>= operator. |
JExpr |
subAssign(JExpr e1)
Combine this expression with another using the binary
-= operator. |
JExpr |
xorAssign(JExpr e1)
Combine this expression with another using the binary
^= operator. |
_instanceof, _instanceof, _instanceof, _new, _new, _new, _newAnon, _newAnon, _newAnon, $v, and, band, bor, bxor, call, cast, cast, cast, comp, cond, div, eq, field, ge, gt, idx, idx, le, length, lshr, lt, minus, mod, ne, neg, not, or, paren, plus, shl, shr, timesblockComment, lineCommentJExpr assign(JExpr e1)
= operator.e1 - the other expressionJExpr addAssign(JExpr e1)
+= operator.e1 - the other expressionJExpr subAssign(JExpr e1)
-= operator.e1 - the other expressionJExpr mulAssign(JExpr e1)
*= operator.e1 - the other expressionJExpr divAssign(JExpr e1)
/= operator.e1 - the other expressionJExpr modAssign(JExpr e1)
%= operator.e1 - the other expressionJExpr andAssign(JExpr e1)
&= operator.e1 - the other expressionJExpr orAssign(JExpr e1)
|= operator.e1 - the other expressionJExpr xorAssign(JExpr e1)
^= operator.e1 - the other expressionJExpr shrAssign(JExpr e1)
>>= operator.e1 - the other expressionJExpr lshrAssign(JExpr e1)
>>>= operator.e1 - the other expressionJExpr shlAssign(JExpr e1)
<<= operator.e1 - the other expressionJExpr postInc()
++ operator to this expression.JExpr postDec()
-- operator to this expression.JExpr preInc()
++ operator to this expression.JExpr preDec()
-- operator to this expression.