Package | Description |
---|---|
com.asakusafw.utils.java.internal.model.syntax |
Naive Java DOM implementations.
|
com.asakusafw.utils.java.internal.model.util |
Internal utlities for Java DOM building/emitting.
|
com.asakusafw.utils.java.model.syntax |
Interfaces for representing Java DOMs.
|
com.asakusafw.utils.java.model.util |
Utilities for Java DOM building/emitting.
|
Modifier and Type | Method and Description |
---|---|
InfixOperator |
AssignmentExpressionImpl.getOperator() |
InfixOperator |
InfixExpressionImpl.getOperator() |
Modifier and Type | Method and Description |
---|---|
AssignmentExpression |
ModelFactoryImpl.newAssignmentExpression(Expression leftHandSide,
InfixOperator operator,
Expression rightHandSide) |
InfixExpression |
ModelFactoryImpl.newInfixExpression(Expression leftOperand,
InfixOperator operator,
Expression rightOperand) |
void |
AssignmentExpressionImpl.setOperator(InfixOperator operator)
Sets the simple assignment operator, or an infix operator for compound assignment expression.
|
void |
InfixExpressionImpl.setOperator(InfixOperator operator)
Sets the infix operator.
|
Modifier and Type | Method and Description |
---|---|
static ExpressionPriority |
ExpressionPriority.valueOf(InfixOperator operator)
Returns the priority about the target infix operator.
|
Modifier and Type | Method and Description |
---|---|
static InfixOperator |
InfixOperator.fromSymbol(String symbol)
Returns an operator from its symbol.
|
InfixOperator |
InfixExpression.getOperator()
Returns the infix operator.
|
InfixOperator |
AssignmentExpression.getOperator()
Returns the simple assignment operator, or an infix operator for compound assignment expression.
|
static InfixOperator |
InfixOperator.valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static InfixOperator[] |
InfixOperator.values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
Modifier and Type | Method and Description |
---|---|
AssignmentExpression |
ModelFactory.newAssignmentExpression(Expression leftHandSide,
InfixOperator operator,
Expression rightHandSide)
Returns a new
AssignmentExpression object. |
InfixExpression |
ModelFactory.newInfixExpression(Expression leftOperand,
InfixOperator operator,
Expression rightOperand)
Returns a new
InfixExpression object. |
Modifier and Type | Method and Description |
---|---|
ExpressionBuilder |
ExpressionBuilder.apply(InfixOperator operator,
Expression right)
Returns a binary expression which contains the building expression on the left term.
|
ExpressionBuilder |
ExpressionBuilder.assignFrom(InfixOperator operator,
Expression rightHandSide)
Returns an assignment expression which contains the building expression on the left hand side.
|
Copyright © 2011–2019 Asakusa Framework Team. All rights reserved.