Package com.google.cloud.datastore
Class ProjectionEntityQuery.Builder
- java.lang.Object
-
- com.google.cloud.datastore.ProjectionEntityQuery.Builder
-
- All Implemented Interfaces:
StructuredQuery.Builder<ProjectionEntity>
- Enclosing class:
- ProjectionEntityQuery
public static final class ProjectionEntityQuery.Builder extends Object
AProjectionEntityQuerybuilder for queries that returnProjectionEntityresults.
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ProjectionEntityQuery.BuilderaddDistinctOn(String property, String... others)Adds one or more properties to the existing group by clause.BaddOrderBy(StructuredQuery.OrderBy orderBy, StructuredQuery.OrderBy... others)Adds settings to the existing order by clause.ProjectionEntityQuery.BuilderaddProjection(String projection, String... others)Adds one or more projections to the existing projection clause.ProjectionEntityQuerybuild()ProjectionEntityQuery.BuilderclearDistinctOn()Clears the group by clause.BclearOrderBy()Clears any previously specified order by settings.ProjectionEntityQuery.BuilderclearProjection()Clears the projection clause.ProjectionEntityQuery.BuildersetDistinctOn(String property, String... others)Sets the query's distinct on clause (clearing any previously specified distinct on settings).BsetEndCursor(Cursor endCursor)Sets the end cursor for the query.BsetFilter(StructuredQuery.Filter filter)BsetKind(String kind)Sets the kind for the query.BsetLimit(Integer limit)Sets the limit for the query.BsetNamespace(String namespace)Sets the namespace for the query.BsetOffset(int offset)Sets the offset for the query.BsetOrderBy(StructuredQuery.OrderBy orderBy, StructuredQuery.OrderBy... others)Sets the query's order by clause (clearing any previously specified order by settings).ProjectionEntityQuery.BuildersetProjection(String projection, String... others)Sets the query's projection clause (clearing any previously specified Projection settings).BsetStartCursor(Cursor startCursor)Sets the start cursor for the query.
-
-
-
Method Detail
-
clearProjection
public ProjectionEntityQuery.Builder clearProjection()
Clears the projection clause.
-
setProjection
public ProjectionEntityQuery.Builder setProjection(String projection, String... others)
Sets the query's projection clause (clearing any previously specified Projection settings).
-
addProjection
public ProjectionEntityQuery.Builder addProjection(String projection, String... others)
Adds one or more projections to the existing projection clause.
-
clearDistinctOn
public ProjectionEntityQuery.Builder clearDistinctOn()
Clears the group by clause.
-
setDistinctOn
public ProjectionEntityQuery.Builder setDistinctOn(String property, String... others)
Sets the query's distinct on clause (clearing any previously specified distinct on settings).
-
addDistinctOn
public ProjectionEntityQuery.Builder addDistinctOn(String property, String... others)
Adds one or more properties to the existing group by clause.
-
build
public ProjectionEntityQuery build()
-
setNamespace
public B setNamespace(String namespace)
Description copied from interface:StructuredQuery.BuilderSets the namespace for the query.- Specified by:
setNamespacein interfaceStructuredQuery.Builder<V>
-
setKind
public B setKind(String kind)
Description copied from interface:StructuredQuery.BuilderSets the kind for the query.- Specified by:
setKindin interfaceStructuredQuery.Builder<V>
-
setStartCursor
public B setStartCursor(Cursor startCursor)
Description copied from interface:StructuredQuery.BuilderSets the start cursor for the query.- Specified by:
setStartCursorin interfaceStructuredQuery.Builder<V>
-
setEndCursor
public B setEndCursor(Cursor endCursor)
Description copied from interface:StructuredQuery.BuilderSets the end cursor for the query.- Specified by:
setEndCursorin interfaceStructuredQuery.Builder<V>
-
setOffset
public B setOffset(int offset)
Description copied from interface:StructuredQuery.BuilderSets the offset for the query.- Specified by:
setOffsetin interfaceStructuredQuery.Builder<V>
-
setLimit
public B setLimit(Integer limit)
Description copied from interface:StructuredQuery.BuilderSets the limit for the query.- Specified by:
setLimitin interfaceStructuredQuery.Builder<V>
-
setFilter
public B setFilter(StructuredQuery.Filter filter)
- Specified by:
setFilterin interfaceStructuredQuery.Builder<V>
-
clearOrderBy
public B clearOrderBy()
Description copied from interface:StructuredQuery.BuilderClears any previously specified order by settings.- Specified by:
clearOrderByin interfaceStructuredQuery.Builder<V>
-
setOrderBy
public B setOrderBy(StructuredQuery.OrderBy orderBy, StructuredQuery.OrderBy... others)
Description copied from interface:StructuredQuery.BuilderSets the query's order by clause (clearing any previously specified order by settings).- Specified by:
setOrderByin interfaceStructuredQuery.Builder<V>
-
addOrderBy
public B addOrderBy(StructuredQuery.OrderBy orderBy, StructuredQuery.OrderBy... others)
Description copied from interface:StructuredQuery.BuilderAdds settings to the existing order by clause.- Specified by:
addOrderByin interfaceStructuredQuery.Builder<V>
-
-