|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectorg.eclipse.wst.jsdt.core.dom.PostfixExpression.Operator
public static class PostfixExpression.Operator
Postfix operators (typesafe enumeration).
PostfixOperator:++
INCREMENT
--
DECREMENT
Field Summary | |
---|---|
static PostfixExpression.Operator |
DECREMENT
Postfix decrement "--" operator. |
static PostfixExpression.Operator |
INCREMENT
Postfix increment "++" operator. |
Method Summary | |
---|---|
static PostfixExpression.Operator |
toOperator(java.lang.String token)
Returns the postfix operator corresponding to the given string, or null if none. |
java.lang.String |
toString()
Returns the character sequence for the operator. |
Methods inherited from class java.lang.Object |
---|
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Field Detail |
---|
public static final PostfixExpression.Operator INCREMENT
public static final PostfixExpression.Operator DECREMENT
Method Detail |
---|
public java.lang.String toString()
toString
in class java.lang.Object
public static PostfixExpression.Operator toOperator(java.lang.String token)
null
if none.
toOperator
is the converse of toString
:
that is, Operator.toOperator(op.toString()) == op
for
all operators op
.
token
- the character sequence for the operator
null
if none
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |