Spring Data MongoDB - Core

Uses of Interface
org.springframework.data.mongodb.core.aggregation.AggregationOperation

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

Uses of AggregationOperation in org.springframework.data.mongodb.core.aggregation
 

Subinterfaces of AggregationOperation in org.springframework.data.mongodb.core.aggregation
 interface FieldsExposingAggregationOperation
          AggregationOperation that exposes new ExposedFields that can be used for later aggregation pipeline AggregationOperations.
 

Classes in org.springframework.data.mongodb.core.aggregation that implement AggregationOperation
 class GeoNearOperation
           
 class GroupOperation
          Encapsulates the aggregation framework $group-operation.
 class MatchOperation
          Encapsulates the $match-operation
 class ProjectionOperation
          Encapsulates the aggregation framework $project-operation.
static class ProjectionOperation.ProjectionOperationBuilder
          Builder for ProjectionOperations on a field.
 class SkipOperation
          Encapsulates the aggregation framework $skip-operation.
 class SortOperation
          Encapsulates the aggregation framework $sort-operation.
 class UnwindOperation
          Encapsulates the aggregation framework $unwind-operation.
 

Methods in org.springframework.data.mongodb.core.aggregation with parameters of type AggregationOperation
static Aggregation Aggregation.newAggregation(AggregationOperation... operations)
          Creates a new Aggregation from the given AggregationOperations.
static
<T> TypedAggregation<T>
Aggregation.newAggregation(Class<T> type, AggregationOperation... operations)
          Creates a new TypedAggregation for the given type and AggregationOperations.
 

Method parameters in org.springframework.data.mongodb.core.aggregation with type arguments of type AggregationOperation
static
<T> TypedAggregation<T>
Aggregation.newAggregation(Class<T> type, List<? extends AggregationOperation> operations)
          Creates a new TypedAggregation for the given type and AggregationOperations.
static Aggregation Aggregation.newAggregation(List<? extends AggregationOperation> operations)
          Creates a new Aggregation from the given AggregationOperations.
 

Constructors in org.springframework.data.mongodb.core.aggregation with parameters of type AggregationOperation
Aggregation(AggregationOperation... aggregationOperations)
          Creates a new Aggregation from the given AggregationOperations.
TypedAggregation(Class<I> inputType, AggregationOperation... operations)
          Creates a new TypedAggregation from the given AggregationOperations.
 


Spring Data MongoDB - Core

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