org.hibernate.hql.ast.tree.UnaryOperatorNode Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of hibernate Show documentation
Show all versions of hibernate Show documentation
Relational Persistence for Java
package org.hibernate.hql.ast.tree;
/**
* Contract for nodes representing unary operators.
*
* @author Steve Ebersole
*/
public interface UnaryOperatorNode extends OperatorNode {
/**
* Retrievs the node representing the operator's single operand.
*
* @return The operator's single operand.
*/
public Node getOperand();
}