com.google.datastore.v1.Query.getDistinctOnList()方法的使用及代码示例

x33g5p2x  于2022-01-28 转载在 其他  
字(4.0k)|赞(0)|评价(0)|浏览(125)

本文整理了Java中com.google.datastore.v1.Query.getDistinctOnList方法的一些代码示例,展示了Query.getDistinctOnList的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Query.getDistinctOnList方法的具体详情如下:
包路径:com.google.datastore.v1.Query
类名称:Query
方法名:getDistinctOnList

Query.getDistinctOnList介绍

[英]```
The properties to make distinct. The query results will contain the first
result for each distinct combination of values for the given properties
(if empty, all results are returned).

`repeated .google.datastore.v1.PropertyReference distinct_on = 6;`
[中]```
The properties to make distinct. The query results will contain the first 
result for each distinct combination of values for the given properties 
(if empty, all results are returned).

repeated .google.datastore.v1.PropertyReference distinct_on = 6;

代码示例

代码示例来源:origin: googleapis/google-cloud-java

@java.lang.Override
public boolean equals(final java.lang.Object obj) {
 if (obj == this) {
  return true;
 }
 if (!(obj instanceof com.google.datastore.v1.Query)) {
  return super.equals(obj);
 }
 com.google.datastore.v1.Query other = (com.google.datastore.v1.Query) obj;
 boolean result = true;
 result = result && getProjectionList().equals(other.getProjectionList());
 result = result && getKindList().equals(other.getKindList());
 result = result && (hasFilter() == other.hasFilter());
 if (hasFilter()) {
  result = result && getFilter().equals(other.getFilter());
 }
 result = result && getOrderList().equals(other.getOrderList());
 result = result && getDistinctOnList().equals(other.getDistinctOnList());
 result = result && getStartCursor().equals(other.getStartCursor());
 result = result && getEndCursor().equals(other.getEndCursor());
 result = result && (getOffset() == other.getOffset());
 result = result && (hasLimit() == other.hasLimit());
 if (hasLimit()) {
  result = result && getLimit().equals(other.getLimit());
 }
 result = result && unknownFields.equals(other.unknownFields);
 return result;
}

代码示例来源:origin: googleapis/google-cloud-java

hash = (53 * hash) + getDistinctOnList().hashCode();

代码示例来源:origin: googleapis/google-cloud-java

addProjection(projectionPb.getProperty().getName());
for (com.google.datastore.v1.PropertyReference distinctOnPb : queryPb.getDistinctOnList()) {
 addDistinctOn(distinctOnPb.getName());

代码示例来源:origin: com.google.api.grpc/proto-google-cloud-datastore-v1

@java.lang.Override
public boolean equals(final java.lang.Object obj) {
 if (obj == this) {
  return true;
 }
 if (!(obj instanceof com.google.datastore.v1.Query)) {
  return super.equals(obj);
 }
 com.google.datastore.v1.Query other = (com.google.datastore.v1.Query) obj;
 boolean result = true;
 result = result && getProjectionList().equals(other.getProjectionList());
 result = result && getKindList().equals(other.getKindList());
 result = result && (hasFilter() == other.hasFilter());
 if (hasFilter()) {
  result = result && getFilter().equals(other.getFilter());
 }
 result = result && getOrderList().equals(other.getOrderList());
 result = result && getDistinctOnList().equals(other.getDistinctOnList());
 result = result && getStartCursor().equals(other.getStartCursor());
 result = result && getEndCursor().equals(other.getEndCursor());
 result = result && (getOffset() == other.getOffset());
 result = result && (hasLimit() == other.hasLimit());
 if (hasLimit()) {
  result = result && getLimit().equals(other.getLimit());
 }
 result = result && unknownFields.equals(other.unknownFields);
 return result;
}

代码示例来源:origin: com.google.cloud.datastore/datastore-v1-protos

hash = (53 * hash) + getDistinctOnList().hashCode();

代码示例来源:origin: com.google.api.grpc/proto-google-cloud-datastore-v1

hash = (53 * hash) + getDistinctOnList().hashCode();

代码示例来源:origin: com.google.cloud.datastore/datastore-v1-protos

result = result && getDistinctOnList()
  .equals(other.getDistinctOnList());
result = result && getStartCursor()
  .equals(other.getStartCursor());

代码示例来源:origin: com.google.cloud/google-cloud-datastore

addProjection(projectionPb.getProperty().getName());
for (com.google.datastore.v1.PropertyReference distinctOnPb : queryPb.getDistinctOnList()) {
 addDistinctOn(distinctOnPb.getName());

相关文章