R - the return type from the visitor methods. Can be set to Void to indicate that the return value is
not important.public interface OperandVisitor<R>
| Modifier and Type | Method and Description |
|---|---|
R |
visit(EmptyOperand empty)
The method called when visiting an
EmptyOperand. |
R |
visit(FunctionOperand function)
The method called when visiting a
FunctionOperand. |
R |
visit(MultiValueOperand multiValue)
The method called when visiting an
MultiValueOperand. |
R |
visit(SingleValueOperand singleValueOperand)
The method called when visiting an
SingleValueOperand. |
R visit(EmptyOperand empty)
EmptyOperand.empty - the operand being visited.R visit(FunctionOperand function)
FunctionOperand.function - the operand being visited.R visit(MultiValueOperand multiValue)
MultiValueOperand.multiValue - the operand being visited.R visit(SingleValueOperand singleValueOperand)
SingleValueOperand.singleValueOperand - the operand being visited.Copyright © 2002-2021 Atlassian. All Rights Reserved.