Spring Data MongoDB - Core

Uses of Class
org.springframework.data.mongodb.core.spel.ExpressionNode

Packages that use ExpressionNode
org.springframework.data.mongodb.core.spel Support classes to transform SpEL expressions into MongoDB expressions. 
 

Uses of ExpressionNode in org.springframework.data.mongodb.core.spel
 

Classes in org.springframework.data.mongodb.core.spel with type parameters of type ExpressionNode
 class ExpressionTransformationContextSupport<T extends ExpressionNode>
          The context for an ExpressionNode transformation.
 

Subclasses of ExpressionNode in org.springframework.data.mongodb.core.spel
 class LiteralNode
          A node representing a literal in an expression.
 class MethodReferenceNode
          An ExpressionNode representing a method reference.
 class OperatorNode
          An ExpressionNode representing an operator.
 

Methods in org.springframework.data.mongodb.core.spel that return ExpressionNode
protected  ExpressionNode ExpressionNode.from(SpelNode node)
          Creates a new ExpressionNode from the given SpelNode.
static ExpressionNode ExpressionNode.from(SpelNode node, ExpressionState state)
          Factory method to create ExpressionNode's according to the given SpelNode and ExpressionState.
 ExpressionNode ExpressionNode.getChild(int index)
          Returns the child ExpressionNode with the given index.
 ExpressionNode OperatorNode.getLeft()
          Returns the left operand as ExpressionNode.
 ExpressionNode ExpressionTransformationContextSupport.getParentNode()
          Returns the parent ExpressionNode or null if none available.
 ExpressionNode OperatorNode.getRight()
          Returns the right operand as ExpressionNode.
 

Methods in org.springframework.data.mongodb.core.spel that return types with arguments of type ExpressionNode
 Iterator<ExpressionNode> ExpressionNode.iterator()
           
 

Methods in org.springframework.data.mongodb.core.spel with parameters of type ExpressionNode
 boolean LiteralNode.isUnaryMinus(ExpressionNode parent)
          Returns whether the given ExpressionNode is a unary minus.
 

Constructors in org.springframework.data.mongodb.core.spel with parameters of type ExpressionNode
ExpressionTransformationContextSupport(T currentNode, ExpressionNode parentNode, com.mongodb.DBObject previousOperationObject)
          Creates a new ExpressionTransformationContextSupport for the given ExpressionNodes and an optional previous operation.
 


Spring Data MongoDB - Core

Copyright © 2011-2013-2014 Pivotal. All Rights Reserved.