Uses of Class
org.glassfish.ha.store.criteria.spi.ExpressionNode
-
Packages that use ExpressionNode Package Description org.glassfish.ha.store.criteria org.glassfish.ha.store.criteria.spi -
-
Uses of ExpressionNode in org.glassfish.ha.store.criteria
Methods in org.glassfish.ha.store.criteria with parameters of type ExpressionNode Modifier and Type Method Description <T> LogicalExpressionNodeExpressionBuilder. eq(ExpressionNode<T> expr1, ExpressionNode<T> expr2) -
Uses of ExpressionNode in org.glassfish.ha.store.criteria.spi
Subclasses of ExpressionNode in org.glassfish.ha.store.criteria.spi Modifier and Type Class Description classAttributeAccessNode<V,T>An ExpressionNode that denotes an Attribute access.classBinaryExpressionNode<T>A class that represents a binary operation.classInExpressionNode<T>A node that represnt the "in" operationclassLiteralNode<T>A node that represents a LiteralclassLogicalExpressionNodeAn ExpressionNode that denotes a logical operation.Methods in org.glassfish.ha.store.criteria.spi that return ExpressionNode Modifier and Type Method Description ExpressionNode<T>BinaryExpressionNode. getLeft()ExpressionNode<T>BinaryExpressionNode. getRight()Constructors in org.glassfish.ha.store.criteria.spi with parameters of type ExpressionNode Constructor Description BinaryExpressionNode(Opcode opcode, Class<T> returnType, ExpressionNode<T> left)BinaryExpressionNode(Opcode opcode, Class<T> returnType, ExpressionNode<T> left, ExpressionNode<T> right)InExpressionNode(ExpressionNode<T> value, Collection<? extends T> entries)LogicalExpressionNode(Opcode opcode, ExpressionNode left, ExpressionNode right)
-