All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.hibernate.hql.ast.tree.UnaryOperatorNode Maven / Gradle / Ivy

There is a newer version: 3.6.0.Beta2
Show newest version
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();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy