Spring Data MongoDB - Core

Uses of Class
org.springframework.data.mongodb.core.aggregation.ProjectionOperation.ProjectionOperationBuilder

Packages that use ProjectionOperation.ProjectionOperationBuilder
org.springframework.data.mongodb.core.aggregation Support for the MongoDB aggregation framework. 
 

Uses of ProjectionOperation.ProjectionOperationBuilder in org.springframework.data.mongodb.core.aggregation
 

Methods in org.springframework.data.mongodb.core.aggregation that return ProjectionOperation.ProjectionOperationBuilder
 ProjectionOperation.ProjectionOperationBuilder ProjectionOperation.and(String name)
          Creates a new ProjectionOperation.ProjectionOperationBuilder to define a projection for the field with the given name.
 ProjectionOperation.ProjectionOperationBuilder ProjectionOperation.ProjectionOperationBuilder.divide(Number number)
          Generates an $divide expression that divides the previously mentioned field by the given number.
 ProjectionOperation.ProjectionOperationBuilder ProjectionOperation.ProjectionOperationBuilder.divide(String fieldReference)
          Generates an $divide expression that divides the value of the given field by the previously mentioned field.
 ProjectionOperation.ProjectionOperationBuilder ProjectionOperation.ProjectionOperationBuilder.minus(Number number)
          Generates an $subtract expression that subtracts the given number to the previously mentioned field.
 ProjectionOperation.ProjectionOperationBuilder ProjectionOperation.ProjectionOperationBuilder.minus(String fieldReference)
          Generates an $subtract expression that subtracts the value of the given field to the previously mentioned field.
 ProjectionOperation.ProjectionOperationBuilder ProjectionOperation.ProjectionOperationBuilder.mod(Number number)
          Generates an $mod expression that divides the previously mentioned field by the given number and returns the remainder.
 ProjectionOperation.ProjectionOperationBuilder ProjectionOperation.ProjectionOperationBuilder.mod(String fieldReference)
          Generates an $mod expression that divides the value of the given field by the previously mentioned field and returns the remainder.
 ProjectionOperation.ProjectionOperationBuilder ProjectionOperation.ProjectionOperationBuilder.multiply(Number number)
          Generates an $multiply expression that multiplies the given number with the previously mentioned field.
 ProjectionOperation.ProjectionOperationBuilder ProjectionOperation.ProjectionOperationBuilder.multiply(String fieldReference)
          Generates an $multiply expression that multiplies the value of the given field with the previously mentioned field.
 ProjectionOperation.ProjectionOperationBuilder ProjectionOperation.ProjectionOperationBuilder.plus(Number number)
          Generates an $add expression that adds the given number to the previously mentioned field.
 ProjectionOperation.ProjectionOperationBuilder ProjectionOperation.ProjectionOperationBuilder.plus(String fieldReference)
          Generates an $add expression that adds the value of the given field to the previously mentioned field.
 ProjectionOperation.ProjectionOperationBuilder ProjectionOperation.ProjectionOperationBuilder.project(String operation, Object... values)
          Adds a generic projection for the current field.
 


Spring Data MongoDB - Core

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