Examples of FieldProjection


Examples of org.springframework.data.mongodb.core.aggregation.ProjectionOperation.ProjectionOperationBuilder.FieldProjection

    public ProjectionOperation as(String alias) {

      if (this.previousProjection != null) {
        return this.operation.andReplaceLastOneWith(this.previousProjection.withAlias(alias));
      } else {
        return this.operation.and(new FieldProjection(Fields.field(alias, name), null));
      }
    }
View Full Code Here

Examples of org.springframework.data.mongodb.core.aggregation.ProjectionOperation.ProjectionOperationBuilder.FieldProjection

        Assert.notNull(fields, "Fields must not be null!");
        List<FieldProjection> projections = new ArrayList<FieldProjection>();

        for (Field field : fields) {
          projections.add(new FieldProjection(field, value));
        }

        return projections;
      }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.