Class UnaryOperation
- java.lang.Object
-
- org.apache.sling.scripting.sightly.compiler.expression.nodes.UnaryOperation
-
- All Implemented Interfaces:
ExpressionNode
public final class UnaryOperation extends java.lang.Object implements ExpressionNode
Defines a unary operation (e.g.!variableName).
-
-
Constructor Summary
Constructors Constructor Description UnaryOperation(UnaryOperator operator, ExpressionNode target)Creates aUnaryOperation.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description <T> Taccept(NodeVisitor<T> visitor)Accept a visitor to process this node.UnaryOperatorgetOperator()Returns the operator applied in this operation.ExpressionNodegetTarget()Returns the target to which the operation is applied.java.lang.StringtoString()
-
-
-
Constructor Detail
-
UnaryOperation
public UnaryOperation(UnaryOperator operator, ExpressionNode target)
Creates aUnaryOperation.- Parameters:
operator- the operatortarget- the target to which the operator is applied
-
-
Method Detail
-
accept
public <T> T accept(NodeVisitor<T> visitor)
Description copied from interface:ExpressionNodeAccept a visitor to process this node.- Specified by:
acceptin interfaceExpressionNode- Type Parameters:
T- the type of the visitor- Parameters:
visitor- The visitor- Returns:
- the node after it has been evaluated by the visitor
-
getOperator
public UnaryOperator getOperator()
Returns the operator applied in this operation.- Returns:
- the operator applied in this operation
-
getTarget
public ExpressionNode getTarget()
Returns the target to which the operation is applied.- Returns:
- the target to which the operation is applied
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Object
-
-