Klasse PostfixExpression.Operator
java.lang.Object
org.aspectj.org.eclipse.jdt.core.dom.PostfixExpression.Operator
- Umschließende Klasse:
PostfixExpression
Postfix operators (typesafe enumeration).
PostfixOperator:
++ INCREMENT
-- DECREMENT
-
Feldübersicht
FelderModifizierer und TypFeldBeschreibungstatic final PostfixExpression.OperatorPostfix decrement "--" operator.static final PostfixExpression.OperatorPostfix increment "++" operator. -
Methodenübersicht
Modifizierer und TypMethodeBeschreibungstatic PostfixExpression.OperatortoOperator(String token) Returns the postfix operator corresponding to the given string, ornullif none.toString()Returns the character sequence for the operator.
-
Felddetails
-
INCREMENT
Postfix increment "++" operator. -
DECREMENT
Postfix decrement "--" operator.
-
-
Methodendetails
-
toString
Returns the character sequence for the operator. -
toOperator
Returns the postfix operator corresponding to the given string, ornullif none.toOperatoris the converse oftoString: that is,Operator.toOperator(op.toString()) == opfor all operatorsop.- Parameter:
token- the character sequence for the operator- Gibt zurück:
- the postfix operator, or
nullif none
-