Uses of Class
org.eclipse.jdt.core.dom.PostfixExpression.Operator
Package
Description
The Java DOM/AST is the set of classes that model the source code of a Java program
as a structured document.
-
Uses of PostfixExpression.Operator in org.eclipse.jdt.core.dom
Modifier and TypeFieldDescriptionstatic final PostfixExpression.Operator
PostfixExpression.Operator.DECREMENT
Postfix decrement "--" operator.static final PostfixExpression.Operator
PostfixExpression.Operator.INCREMENT
Postfix increment "++" operator.Modifier and TypeMethodDescriptionPostfixExpression.getOperator()
Returns the operator of this postfix expression.static PostfixExpression.Operator
PostfixExpression.Operator.toOperator
(String token) Returns the postfix operator corresponding to the given string, ornull
if none.Modifier and TypeMethodDescriptionvoid
PostfixExpression.setOperator
(PostfixExpression.Operator operator) Sets the operator of this postfix expression.