com.google.datastore.v1.LookupResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of datastore-v1-protos Show documentation
Show all versions of datastore-v1-protos Show documentation
Protocol buffers for accessing the Google Cloud Datastore API.
The newest version!
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: google/datastore/v1/datastore.proto
package com.google.datastore.v1;
/**
*
* The response for [Datastore.Lookup][google.datastore.v1.Datastore.Lookup].
*
*
* Protobuf type {@code google.datastore.v1.LookupResponse}
*/
public final class LookupResponse extends
com.google.protobuf.GeneratedMessageV3 implements
// @@protoc_insertion_point(message_implements:google.datastore.v1.LookupResponse)
LookupResponseOrBuilder {
// Use LookupResponse.newBuilder() to construct.
private LookupResponse(com.google.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
}
private LookupResponse() {
found_ = java.util.Collections.emptyList();
missing_ = java.util.Collections.emptyList();
deferred_ = java.util.Collections.emptyList();
}
@java.lang.Override
public final com.google.protobuf.UnknownFieldSet
getUnknownFields() {
return com.google.protobuf.UnknownFieldSet.getDefaultInstance();
}
private LookupResponse(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
this();
int mutable_bitField0_ = 0;
try {
boolean done = false;
while (!done) {
int tag = input.readTag();
switch (tag) {
case 0:
done = true;
break;
default: {
if (!input.skipField(tag)) {
done = true;
}
break;
}
case 10: {
if (!((mutable_bitField0_ & 0x00000001) == 0x00000001)) {
found_ = new java.util.ArrayList();
mutable_bitField0_ |= 0x00000001;
}
found_.add(
input.readMessage(com.google.datastore.v1.EntityResult.parser(), extensionRegistry));
break;
}
case 18: {
if (!((mutable_bitField0_ & 0x00000002) == 0x00000002)) {
missing_ = new java.util.ArrayList();
mutable_bitField0_ |= 0x00000002;
}
missing_.add(
input.readMessage(com.google.datastore.v1.EntityResult.parser(), extensionRegistry));
break;
}
case 26: {
if (!((mutable_bitField0_ & 0x00000004) == 0x00000004)) {
deferred_ = new java.util.ArrayList();
mutable_bitField0_ |= 0x00000004;
}
deferred_.add(
input.readMessage(com.google.datastore.v1.Key.parser(), extensionRegistry));
break;
}
}
}
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
throw e.setUnfinishedMessage(this);
} catch (java.io.IOException e) {
throw new com.google.protobuf.InvalidProtocolBufferException(
e).setUnfinishedMessage(this);
} finally {
if (((mutable_bitField0_ & 0x00000001) == 0x00000001)) {
found_ = java.util.Collections.unmodifiableList(found_);
}
if (((mutable_bitField0_ & 0x00000002) == 0x00000002)) {
missing_ = java.util.Collections.unmodifiableList(missing_);
}
if (((mutable_bitField0_ & 0x00000004) == 0x00000004)) {
deferred_ = java.util.Collections.unmodifiableList(deferred_);
}
makeExtensionsImmutable();
}
}
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return com.google.datastore.v1.DatastoreProto.internal_static_google_datastore_v1_LookupResponse_descriptor;
}
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return com.google.datastore.v1.DatastoreProto.internal_static_google_datastore_v1_LookupResponse_fieldAccessorTable
.ensureFieldAccessorsInitialized(
com.google.datastore.v1.LookupResponse.class, com.google.datastore.v1.LookupResponse.Builder.class);
}
public static final int FOUND_FIELD_NUMBER = 1;
private java.util.List found_;
/**
*
* Entities found as `ResultType.FULL` entities. The order of results in this
* field is undefined and has no relation to the order of the keys in the
* input.
*
*
* repeated .google.datastore.v1.EntityResult found = 1;
*/
public java.util.List getFoundList() {
return found_;
}
/**
*
* Entities found as `ResultType.FULL` entities. The order of results in this
* field is undefined and has no relation to the order of the keys in the
* input.
*
*
* repeated .google.datastore.v1.EntityResult found = 1;
*/
public java.util.List extends com.google.datastore.v1.EntityResultOrBuilder>
getFoundOrBuilderList() {
return found_;
}
/**
*
* Entities found as `ResultType.FULL` entities. The order of results in this
* field is undefined and has no relation to the order of the keys in the
* input.
*
*
* repeated .google.datastore.v1.EntityResult found = 1;
*/
public int getFoundCount() {
return found_.size();
}
/**
*
* Entities found as `ResultType.FULL` entities. The order of results in this
* field is undefined and has no relation to the order of the keys in the
* input.
*
*
* repeated .google.datastore.v1.EntityResult found = 1;
*/
public com.google.datastore.v1.EntityResult getFound(int index) {
return found_.get(index);
}
/**
*
* Entities found as `ResultType.FULL` entities. The order of results in this
* field is undefined and has no relation to the order of the keys in the
* input.
*
*
* repeated .google.datastore.v1.EntityResult found = 1;
*/
public com.google.datastore.v1.EntityResultOrBuilder getFoundOrBuilder(
int index) {
return found_.get(index);
}
public static final int MISSING_FIELD_NUMBER = 2;
private java.util.List missing_;
/**
*
* Entities not found as `ResultType.KEY_ONLY` entities. The order of results
* in this field is undefined and has no relation to the order of the keys
* in the input.
*
*
* repeated .google.datastore.v1.EntityResult missing = 2;
*/
public java.util.List getMissingList() {
return missing_;
}
/**
*
* Entities not found as `ResultType.KEY_ONLY` entities. The order of results
* in this field is undefined and has no relation to the order of the keys
* in the input.
*
*
* repeated .google.datastore.v1.EntityResult missing = 2;
*/
public java.util.List extends com.google.datastore.v1.EntityResultOrBuilder>
getMissingOrBuilderList() {
return missing_;
}
/**
*
* Entities not found as `ResultType.KEY_ONLY` entities. The order of results
* in this field is undefined and has no relation to the order of the keys
* in the input.
*
*
* repeated .google.datastore.v1.EntityResult missing = 2;
*/
public int getMissingCount() {
return missing_.size();
}
/**
*
* Entities not found as `ResultType.KEY_ONLY` entities. The order of results
* in this field is undefined and has no relation to the order of the keys
* in the input.
*
*
* repeated .google.datastore.v1.EntityResult missing = 2;
*/
public com.google.datastore.v1.EntityResult getMissing(int index) {
return missing_.get(index);
}
/**
*
* Entities not found as `ResultType.KEY_ONLY` entities. The order of results
* in this field is undefined and has no relation to the order of the keys
* in the input.
*
*
* repeated .google.datastore.v1.EntityResult missing = 2;
*/
public com.google.datastore.v1.EntityResultOrBuilder getMissingOrBuilder(
int index) {
return missing_.get(index);
}
public static final int DEFERRED_FIELD_NUMBER = 3;
private java.util.List deferred_;
/**
*
* A list of keys that were not looked up due to resource constraints. The
* order of results in this field is undefined and has no relation to the
* order of the keys in the input.
*
*
* repeated .google.datastore.v1.Key deferred = 3;
*/
public java.util.List getDeferredList() {
return deferred_;
}
/**
*
* A list of keys that were not looked up due to resource constraints. The
* order of results in this field is undefined and has no relation to the
* order of the keys in the input.
*
*
* repeated .google.datastore.v1.Key deferred = 3;
*/
public java.util.List extends com.google.datastore.v1.KeyOrBuilder>
getDeferredOrBuilderList() {
return deferred_;
}
/**
*
* A list of keys that were not looked up due to resource constraints. The
* order of results in this field is undefined and has no relation to the
* order of the keys in the input.
*
*
* repeated .google.datastore.v1.Key deferred = 3;
*/
public int getDeferredCount() {
return deferred_.size();
}
/**
*
* A list of keys that were not looked up due to resource constraints. The
* order of results in this field is undefined and has no relation to the
* order of the keys in the input.
*
*
* repeated .google.datastore.v1.Key deferred = 3;
*/
public com.google.datastore.v1.Key getDeferred(int index) {
return deferred_.get(index);
}
/**
*
* A list of keys that were not looked up due to resource constraints. The
* order of results in this field is undefined and has no relation to the
* order of the keys in the input.
*
*
* repeated .google.datastore.v1.Key deferred = 3;
*/
public com.google.datastore.v1.KeyOrBuilder getDeferredOrBuilder(
int index) {
return deferred_.get(index);
}
private byte memoizedIsInitialized = -1;
public final boolean isInitialized() {
byte isInitialized = memoizedIsInitialized;
if (isInitialized == 1) return true;
if (isInitialized == 0) return false;
memoizedIsInitialized = 1;
return true;
}
public void writeTo(com.google.protobuf.CodedOutputStream output)
throws java.io.IOException {
for (int i = 0; i < found_.size(); i++) {
output.writeMessage(1, found_.get(i));
}
for (int i = 0; i < missing_.size(); i++) {
output.writeMessage(2, missing_.get(i));
}
for (int i = 0; i < deferred_.size(); i++) {
output.writeMessage(3, deferred_.get(i));
}
}
public int getSerializedSize() {
int size = memoizedSize;
if (size != -1) return size;
size = 0;
for (int i = 0; i < found_.size(); i++) {
size += com.google.protobuf.CodedOutputStream
.computeMessageSize(1, found_.get(i));
}
for (int i = 0; i < missing_.size(); i++) {
size += com.google.protobuf.CodedOutputStream
.computeMessageSize(2, missing_.get(i));
}
for (int i = 0; i < deferred_.size(); i++) {
size += com.google.protobuf.CodedOutputStream
.computeMessageSize(3, deferred_.get(i));
}
memoizedSize = size;
return size;
}
private static final long serialVersionUID = 0L;
@java.lang.Override
public boolean equals(final java.lang.Object obj) {
if (obj == this) {
return true;
}
if (!(obj instanceof com.google.datastore.v1.LookupResponse)) {
return super.equals(obj);
}
com.google.datastore.v1.LookupResponse other = (com.google.datastore.v1.LookupResponse) obj;
boolean result = true;
result = result && getFoundList()
.equals(other.getFoundList());
result = result && getMissingList()
.equals(other.getMissingList());
result = result && getDeferredList()
.equals(other.getDeferredList());
return result;
}
@java.lang.Override
public int hashCode() {
if (memoizedHashCode != 0) {
return memoizedHashCode;
}
int hash = 41;
hash = (19 * hash) + getDescriptorForType().hashCode();
if (getFoundCount() > 0) {
hash = (37 * hash) + FOUND_FIELD_NUMBER;
hash = (53 * hash) + getFoundList().hashCode();
}
if (getMissingCount() > 0) {
hash = (37 * hash) + MISSING_FIELD_NUMBER;
hash = (53 * hash) + getMissingList().hashCode();
}
if (getDeferredCount() > 0) {
hash = (37 * hash) + DEFERRED_FIELD_NUMBER;
hash = (53 * hash) + getDeferredList().hashCode();
}
hash = (29 * hash) + unknownFields.hashCode();
memoizedHashCode = hash;
return hash;
}
public static com.google.datastore.v1.LookupResponse parseFrom(
com.google.protobuf.ByteString data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.google.datastore.v1.LookupResponse parseFrom(
com.google.protobuf.ByteString data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static com.google.datastore.v1.LookupResponse parseFrom(byte[] data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.google.datastore.v1.LookupResponse parseFrom(
byte[] data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static com.google.datastore.v1.LookupResponse parseFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static com.google.datastore.v1.LookupResponse parseFrom(
java.io.InputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input, extensionRegistry);
}
public static com.google.datastore.v1.LookupResponse parseDelimitedFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseDelimitedWithIOException(PARSER, input);
}
public static com.google.datastore.v1.LookupResponse parseDelimitedFrom(
java.io.InputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseDelimitedWithIOException(PARSER, input, extensionRegistry);
}
public static com.google.datastore.v1.LookupResponse parseFrom(
com.google.protobuf.CodedInputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static com.google.datastore.v1.LookupResponse parseFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input, extensionRegistry);
}
public Builder newBuilderForType() { return newBuilder(); }
public static Builder newBuilder() {
return DEFAULT_INSTANCE.toBuilder();
}
public static Builder newBuilder(com.google.datastore.v1.LookupResponse prototype) {
return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype);
}
public Builder toBuilder() {
return this == DEFAULT_INSTANCE
? new Builder() : new Builder().mergeFrom(this);
}
@java.lang.Override
protected Builder newBuilderForType(
com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
Builder builder = new Builder(parent);
return builder;
}
/**
*
* The response for [Datastore.Lookup][google.datastore.v1.Datastore.Lookup].
*
*
* Protobuf type {@code google.datastore.v1.LookupResponse}
*/
public static final class Builder extends
com.google.protobuf.GeneratedMessageV3.Builder implements
// @@protoc_insertion_point(builder_implements:google.datastore.v1.LookupResponse)
com.google.datastore.v1.LookupResponseOrBuilder {
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return com.google.datastore.v1.DatastoreProto.internal_static_google_datastore_v1_LookupResponse_descriptor;
}
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return com.google.datastore.v1.DatastoreProto.internal_static_google_datastore_v1_LookupResponse_fieldAccessorTable
.ensureFieldAccessorsInitialized(
com.google.datastore.v1.LookupResponse.class, com.google.datastore.v1.LookupResponse.Builder.class);
}
// Construct using com.google.datastore.v1.LookupResponse.newBuilder()
private Builder() {
maybeForceBuilderInitialization();
}
private Builder(
com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
super(parent);
maybeForceBuilderInitialization();
}
private void maybeForceBuilderInitialization() {
if (com.google.protobuf.GeneratedMessageV3
.alwaysUseFieldBuilders) {
getFoundFieldBuilder();
getMissingFieldBuilder();
getDeferredFieldBuilder();
}
}
public Builder clear() {
super.clear();
if (foundBuilder_ == null) {
found_ = java.util.Collections.emptyList();
bitField0_ = (bitField0_ & ~0x00000001);
} else {
foundBuilder_.clear();
}
if (missingBuilder_ == null) {
missing_ = java.util.Collections.emptyList();
bitField0_ = (bitField0_ & ~0x00000002);
} else {
missingBuilder_.clear();
}
if (deferredBuilder_ == null) {
deferred_ = java.util.Collections.emptyList();
bitField0_ = (bitField0_ & ~0x00000004);
} else {
deferredBuilder_.clear();
}
return this;
}
public com.google.protobuf.Descriptors.Descriptor
getDescriptorForType() {
return com.google.datastore.v1.DatastoreProto.internal_static_google_datastore_v1_LookupResponse_descriptor;
}
public com.google.datastore.v1.LookupResponse getDefaultInstanceForType() {
return com.google.datastore.v1.LookupResponse.getDefaultInstance();
}
public com.google.datastore.v1.LookupResponse build() {
com.google.datastore.v1.LookupResponse result = buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
public com.google.datastore.v1.LookupResponse buildPartial() {
com.google.datastore.v1.LookupResponse result = new com.google.datastore.v1.LookupResponse(this);
int from_bitField0_ = bitField0_;
if (foundBuilder_ == null) {
if (((bitField0_ & 0x00000001) == 0x00000001)) {
found_ = java.util.Collections.unmodifiableList(found_);
bitField0_ = (bitField0_ & ~0x00000001);
}
result.found_ = found_;
} else {
result.found_ = foundBuilder_.build();
}
if (missingBuilder_ == null) {
if (((bitField0_ & 0x00000002) == 0x00000002)) {
missing_ = java.util.Collections.unmodifiableList(missing_);
bitField0_ = (bitField0_ & ~0x00000002);
}
result.missing_ = missing_;
} else {
result.missing_ = missingBuilder_.build();
}
if (deferredBuilder_ == null) {
if (((bitField0_ & 0x00000004) == 0x00000004)) {
deferred_ = java.util.Collections.unmodifiableList(deferred_);
bitField0_ = (bitField0_ & ~0x00000004);
}
result.deferred_ = deferred_;
} else {
result.deferred_ = deferredBuilder_.build();
}
onBuilt();
return result;
}
public Builder clone() {
return (Builder) super.clone();
}
public Builder setField(
com.google.protobuf.Descriptors.FieldDescriptor field,
Object value) {
return (Builder) super.setField(field, value);
}
public Builder clearField(
com.google.protobuf.Descriptors.FieldDescriptor field) {
return (Builder) super.clearField(field);
}
public Builder clearOneof(
com.google.protobuf.Descriptors.OneofDescriptor oneof) {
return (Builder) super.clearOneof(oneof);
}
public Builder setRepeatedField(
com.google.protobuf.Descriptors.FieldDescriptor field,
int index, Object value) {
return (Builder) super.setRepeatedField(field, index, value);
}
public Builder addRepeatedField(
com.google.protobuf.Descriptors.FieldDescriptor field,
Object value) {
return (Builder) super.addRepeatedField(field, value);
}
public Builder mergeFrom(com.google.protobuf.Message other) {
if (other instanceof com.google.datastore.v1.LookupResponse) {
return mergeFrom((com.google.datastore.v1.LookupResponse)other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(com.google.datastore.v1.LookupResponse other) {
if (other == com.google.datastore.v1.LookupResponse.getDefaultInstance()) return this;
if (foundBuilder_ == null) {
if (!other.found_.isEmpty()) {
if (found_.isEmpty()) {
found_ = other.found_;
bitField0_ = (bitField0_ & ~0x00000001);
} else {
ensureFoundIsMutable();
found_.addAll(other.found_);
}
onChanged();
}
} else {
if (!other.found_.isEmpty()) {
if (foundBuilder_.isEmpty()) {
foundBuilder_.dispose();
foundBuilder_ = null;
found_ = other.found_;
bitField0_ = (bitField0_ & ~0x00000001);
foundBuilder_ =
com.google.protobuf.GeneratedMessageV3.alwaysUseFieldBuilders ?
getFoundFieldBuilder() : null;
} else {
foundBuilder_.addAllMessages(other.found_);
}
}
}
if (missingBuilder_ == null) {
if (!other.missing_.isEmpty()) {
if (missing_.isEmpty()) {
missing_ = other.missing_;
bitField0_ = (bitField0_ & ~0x00000002);
} else {
ensureMissingIsMutable();
missing_.addAll(other.missing_);
}
onChanged();
}
} else {
if (!other.missing_.isEmpty()) {
if (missingBuilder_.isEmpty()) {
missingBuilder_.dispose();
missingBuilder_ = null;
missing_ = other.missing_;
bitField0_ = (bitField0_ & ~0x00000002);
missingBuilder_ =
com.google.protobuf.GeneratedMessageV3.alwaysUseFieldBuilders ?
getMissingFieldBuilder() : null;
} else {
missingBuilder_.addAllMessages(other.missing_);
}
}
}
if (deferredBuilder_ == null) {
if (!other.deferred_.isEmpty()) {
if (deferred_.isEmpty()) {
deferred_ = other.deferred_;
bitField0_ = (bitField0_ & ~0x00000004);
} else {
ensureDeferredIsMutable();
deferred_.addAll(other.deferred_);
}
onChanged();
}
} else {
if (!other.deferred_.isEmpty()) {
if (deferredBuilder_.isEmpty()) {
deferredBuilder_.dispose();
deferredBuilder_ = null;
deferred_ = other.deferred_;
bitField0_ = (bitField0_ & ~0x00000004);
deferredBuilder_ =
com.google.protobuf.GeneratedMessageV3.alwaysUseFieldBuilders ?
getDeferredFieldBuilder() : null;
} else {
deferredBuilder_.addAllMessages(other.deferred_);
}
}
}
onChanged();
return this;
}
public final boolean isInitialized() {
return true;
}
public Builder mergeFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
com.google.datastore.v1.LookupResponse parsedMessage = null;
try {
parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry);
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
parsedMessage = (com.google.datastore.v1.LookupResponse) e.getUnfinishedMessage();
throw e.unwrapIOException();
} finally {
if (parsedMessage != null) {
mergeFrom(parsedMessage);
}
}
return this;
}
private int bitField0_;
private java.util.List found_ =
java.util.Collections.emptyList();
private void ensureFoundIsMutable() {
if (!((bitField0_ & 0x00000001) == 0x00000001)) {
found_ = new java.util.ArrayList(found_);
bitField0_ |= 0x00000001;
}
}
private com.google.protobuf.RepeatedFieldBuilderV3<
com.google.datastore.v1.EntityResult, com.google.datastore.v1.EntityResult.Builder, com.google.datastore.v1.EntityResultOrBuilder> foundBuilder_;
/**
*
* Entities found as `ResultType.FULL` entities. The order of results in this
* field is undefined and has no relation to the order of the keys in the
* input.
*
*
* repeated .google.datastore.v1.EntityResult found = 1;
*/
public java.util.List getFoundList() {
if (foundBuilder_ == null) {
return java.util.Collections.unmodifiableList(found_);
} else {
return foundBuilder_.getMessageList();
}
}
/**
*
* Entities found as `ResultType.FULL` entities. The order of results in this
* field is undefined and has no relation to the order of the keys in the
* input.
*
*
* repeated .google.datastore.v1.EntityResult found = 1;
*/
public int getFoundCount() {
if (foundBuilder_ == null) {
return found_.size();
} else {
return foundBuilder_.getCount();
}
}
/**
*
* Entities found as `ResultType.FULL` entities. The order of results in this
* field is undefined and has no relation to the order of the keys in the
* input.
*
*
* repeated .google.datastore.v1.EntityResult found = 1;
*/
public com.google.datastore.v1.EntityResult getFound(int index) {
if (foundBuilder_ == null) {
return found_.get(index);
} else {
return foundBuilder_.getMessage(index);
}
}
/**
*
* Entities found as `ResultType.FULL` entities. The order of results in this
* field is undefined and has no relation to the order of the keys in the
* input.
*
*
* repeated .google.datastore.v1.EntityResult found = 1;
*/
public Builder setFound(
int index, com.google.datastore.v1.EntityResult value) {
if (foundBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
ensureFoundIsMutable();
found_.set(index, value);
onChanged();
} else {
foundBuilder_.setMessage(index, value);
}
return this;
}
/**
*
* Entities found as `ResultType.FULL` entities. The order of results in this
* field is undefined and has no relation to the order of the keys in the
* input.
*
*
* repeated .google.datastore.v1.EntityResult found = 1;
*/
public Builder setFound(
int index, com.google.datastore.v1.EntityResult.Builder builderForValue) {
if (foundBuilder_ == null) {
ensureFoundIsMutable();
found_.set(index, builderForValue.build());
onChanged();
} else {
foundBuilder_.setMessage(index, builderForValue.build());
}
return this;
}
/**
*
* Entities found as `ResultType.FULL` entities. The order of results in this
* field is undefined and has no relation to the order of the keys in the
* input.
*
*
* repeated .google.datastore.v1.EntityResult found = 1;
*/
public Builder addFound(com.google.datastore.v1.EntityResult value) {
if (foundBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
ensureFoundIsMutable();
found_.add(value);
onChanged();
} else {
foundBuilder_.addMessage(value);
}
return this;
}
/**
*
* Entities found as `ResultType.FULL` entities. The order of results in this
* field is undefined and has no relation to the order of the keys in the
* input.
*
*
* repeated .google.datastore.v1.EntityResult found = 1;
*/
public Builder addFound(
int index, com.google.datastore.v1.EntityResult value) {
if (foundBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
ensureFoundIsMutable();
found_.add(index, value);
onChanged();
} else {
foundBuilder_.addMessage(index, value);
}
return this;
}
/**
*
* Entities found as `ResultType.FULL` entities. The order of results in this
* field is undefined and has no relation to the order of the keys in the
* input.
*
*
* repeated .google.datastore.v1.EntityResult found = 1;
*/
public Builder addFound(
com.google.datastore.v1.EntityResult.Builder builderForValue) {
if (foundBuilder_ == null) {
ensureFoundIsMutable();
found_.add(builderForValue.build());
onChanged();
} else {
foundBuilder_.addMessage(builderForValue.build());
}
return this;
}
/**
*
* Entities found as `ResultType.FULL` entities. The order of results in this
* field is undefined and has no relation to the order of the keys in the
* input.
*
*
* repeated .google.datastore.v1.EntityResult found = 1;
*/
public Builder addFound(
int index, com.google.datastore.v1.EntityResult.Builder builderForValue) {
if (foundBuilder_ == null) {
ensureFoundIsMutable();
found_.add(index, builderForValue.build());
onChanged();
} else {
foundBuilder_.addMessage(index, builderForValue.build());
}
return this;
}
/**
*
* Entities found as `ResultType.FULL` entities. The order of results in this
* field is undefined and has no relation to the order of the keys in the
* input.
*
*
* repeated .google.datastore.v1.EntityResult found = 1;
*/
public Builder addAllFound(
java.lang.Iterable extends com.google.datastore.v1.EntityResult> values) {
if (foundBuilder_ == null) {
ensureFoundIsMutable();
com.google.protobuf.AbstractMessageLite.Builder.addAll(
values, found_);
onChanged();
} else {
foundBuilder_.addAllMessages(values);
}
return this;
}
/**
*
* Entities found as `ResultType.FULL` entities. The order of results in this
* field is undefined and has no relation to the order of the keys in the
* input.
*
*
* repeated .google.datastore.v1.EntityResult found = 1;
*/
public Builder clearFound() {
if (foundBuilder_ == null) {
found_ = java.util.Collections.emptyList();
bitField0_ = (bitField0_ & ~0x00000001);
onChanged();
} else {
foundBuilder_.clear();
}
return this;
}
/**
*
* Entities found as `ResultType.FULL` entities. The order of results in this
* field is undefined and has no relation to the order of the keys in the
* input.
*
*
* repeated .google.datastore.v1.EntityResult found = 1;
*/
public Builder removeFound(int index) {
if (foundBuilder_ == null) {
ensureFoundIsMutable();
found_.remove(index);
onChanged();
} else {
foundBuilder_.remove(index);
}
return this;
}
/**
*
* Entities found as `ResultType.FULL` entities. The order of results in this
* field is undefined and has no relation to the order of the keys in the
* input.
*
*
* repeated .google.datastore.v1.EntityResult found = 1;
*/
public com.google.datastore.v1.EntityResult.Builder getFoundBuilder(
int index) {
return getFoundFieldBuilder().getBuilder(index);
}
/**
*
* Entities found as `ResultType.FULL` entities. The order of results in this
* field is undefined and has no relation to the order of the keys in the
* input.
*
*
* repeated .google.datastore.v1.EntityResult found = 1;
*/
public com.google.datastore.v1.EntityResultOrBuilder getFoundOrBuilder(
int index) {
if (foundBuilder_ == null) {
return found_.get(index); } else {
return foundBuilder_.getMessageOrBuilder(index);
}
}
/**
*
* Entities found as `ResultType.FULL` entities. The order of results in this
* field is undefined and has no relation to the order of the keys in the
* input.
*
*
* repeated .google.datastore.v1.EntityResult found = 1;
*/
public java.util.List extends com.google.datastore.v1.EntityResultOrBuilder>
getFoundOrBuilderList() {
if (foundBuilder_ != null) {
return foundBuilder_.getMessageOrBuilderList();
} else {
return java.util.Collections.unmodifiableList(found_);
}
}
/**
*
* Entities found as `ResultType.FULL` entities. The order of results in this
* field is undefined and has no relation to the order of the keys in the
* input.
*
*
* repeated .google.datastore.v1.EntityResult found = 1;
*/
public com.google.datastore.v1.EntityResult.Builder addFoundBuilder() {
return getFoundFieldBuilder().addBuilder(
com.google.datastore.v1.EntityResult.getDefaultInstance());
}
/**
*
* Entities found as `ResultType.FULL` entities. The order of results in this
* field is undefined and has no relation to the order of the keys in the
* input.
*
*
* repeated .google.datastore.v1.EntityResult found = 1;
*/
public com.google.datastore.v1.EntityResult.Builder addFoundBuilder(
int index) {
return getFoundFieldBuilder().addBuilder(
index, com.google.datastore.v1.EntityResult.getDefaultInstance());
}
/**
*
* Entities found as `ResultType.FULL` entities. The order of results in this
* field is undefined and has no relation to the order of the keys in the
* input.
*
*
* repeated .google.datastore.v1.EntityResult found = 1;
*/
public java.util.List
getFoundBuilderList() {
return getFoundFieldBuilder().getBuilderList();
}
private com.google.protobuf.RepeatedFieldBuilderV3<
com.google.datastore.v1.EntityResult, com.google.datastore.v1.EntityResult.Builder, com.google.datastore.v1.EntityResultOrBuilder>
getFoundFieldBuilder() {
if (foundBuilder_ == null) {
foundBuilder_ = new com.google.protobuf.RepeatedFieldBuilderV3<
com.google.datastore.v1.EntityResult, com.google.datastore.v1.EntityResult.Builder, com.google.datastore.v1.EntityResultOrBuilder>(
found_,
((bitField0_ & 0x00000001) == 0x00000001),
getParentForChildren(),
isClean());
found_ = null;
}
return foundBuilder_;
}
private java.util.List missing_ =
java.util.Collections.emptyList();
private void ensureMissingIsMutable() {
if (!((bitField0_ & 0x00000002) == 0x00000002)) {
missing_ = new java.util.ArrayList(missing_);
bitField0_ |= 0x00000002;
}
}
private com.google.protobuf.RepeatedFieldBuilderV3<
com.google.datastore.v1.EntityResult, com.google.datastore.v1.EntityResult.Builder, com.google.datastore.v1.EntityResultOrBuilder> missingBuilder_;
/**
*
* Entities not found as `ResultType.KEY_ONLY` entities. The order of results
* in this field is undefined and has no relation to the order of the keys
* in the input.
*
*
* repeated .google.datastore.v1.EntityResult missing = 2;
*/
public java.util.List getMissingList() {
if (missingBuilder_ == null) {
return java.util.Collections.unmodifiableList(missing_);
} else {
return missingBuilder_.getMessageList();
}
}
/**
*
* Entities not found as `ResultType.KEY_ONLY` entities. The order of results
* in this field is undefined and has no relation to the order of the keys
* in the input.
*
*
* repeated .google.datastore.v1.EntityResult missing = 2;
*/
public int getMissingCount() {
if (missingBuilder_ == null) {
return missing_.size();
} else {
return missingBuilder_.getCount();
}
}
/**
*
* Entities not found as `ResultType.KEY_ONLY` entities. The order of results
* in this field is undefined and has no relation to the order of the keys
* in the input.
*
*
* repeated .google.datastore.v1.EntityResult missing = 2;
*/
public com.google.datastore.v1.EntityResult getMissing(int index) {
if (missingBuilder_ == null) {
return missing_.get(index);
} else {
return missingBuilder_.getMessage(index);
}
}
/**
*
* Entities not found as `ResultType.KEY_ONLY` entities. The order of results
* in this field is undefined and has no relation to the order of the keys
* in the input.
*
*
* repeated .google.datastore.v1.EntityResult missing = 2;
*/
public Builder setMissing(
int index, com.google.datastore.v1.EntityResult value) {
if (missingBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
ensureMissingIsMutable();
missing_.set(index, value);
onChanged();
} else {
missingBuilder_.setMessage(index, value);
}
return this;
}
/**
*
* Entities not found as `ResultType.KEY_ONLY` entities. The order of results
* in this field is undefined and has no relation to the order of the keys
* in the input.
*
*
* repeated .google.datastore.v1.EntityResult missing = 2;
*/
public Builder setMissing(
int index, com.google.datastore.v1.EntityResult.Builder builderForValue) {
if (missingBuilder_ == null) {
ensureMissingIsMutable();
missing_.set(index, builderForValue.build());
onChanged();
} else {
missingBuilder_.setMessage(index, builderForValue.build());
}
return this;
}
/**
*
* Entities not found as `ResultType.KEY_ONLY` entities. The order of results
* in this field is undefined and has no relation to the order of the keys
* in the input.
*
*
* repeated .google.datastore.v1.EntityResult missing = 2;
*/
public Builder addMissing(com.google.datastore.v1.EntityResult value) {
if (missingBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
ensureMissingIsMutable();
missing_.add(value);
onChanged();
} else {
missingBuilder_.addMessage(value);
}
return this;
}
/**
*
* Entities not found as `ResultType.KEY_ONLY` entities. The order of results
* in this field is undefined and has no relation to the order of the keys
* in the input.
*
*
* repeated .google.datastore.v1.EntityResult missing = 2;
*/
public Builder addMissing(
int index, com.google.datastore.v1.EntityResult value) {
if (missingBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
ensureMissingIsMutable();
missing_.add(index, value);
onChanged();
} else {
missingBuilder_.addMessage(index, value);
}
return this;
}
/**
*
* Entities not found as `ResultType.KEY_ONLY` entities. The order of results
* in this field is undefined and has no relation to the order of the keys
* in the input.
*
*
* repeated .google.datastore.v1.EntityResult missing = 2;
*/
public Builder addMissing(
com.google.datastore.v1.EntityResult.Builder builderForValue) {
if (missingBuilder_ == null) {
ensureMissingIsMutable();
missing_.add(builderForValue.build());
onChanged();
} else {
missingBuilder_.addMessage(builderForValue.build());
}
return this;
}
/**
*
* Entities not found as `ResultType.KEY_ONLY` entities. The order of results
* in this field is undefined and has no relation to the order of the keys
* in the input.
*
*
* repeated .google.datastore.v1.EntityResult missing = 2;
*/
public Builder addMissing(
int index, com.google.datastore.v1.EntityResult.Builder builderForValue) {
if (missingBuilder_ == null) {
ensureMissingIsMutable();
missing_.add(index, builderForValue.build());
onChanged();
} else {
missingBuilder_.addMessage(index, builderForValue.build());
}
return this;
}
/**
*
* Entities not found as `ResultType.KEY_ONLY` entities. The order of results
* in this field is undefined and has no relation to the order of the keys
* in the input.
*
*
* repeated .google.datastore.v1.EntityResult missing = 2;
*/
public Builder addAllMissing(
java.lang.Iterable extends com.google.datastore.v1.EntityResult> values) {
if (missingBuilder_ == null) {
ensureMissingIsMutable();
com.google.protobuf.AbstractMessageLite.Builder.addAll(
values, missing_);
onChanged();
} else {
missingBuilder_.addAllMessages(values);
}
return this;
}
/**
*
* Entities not found as `ResultType.KEY_ONLY` entities. The order of results
* in this field is undefined and has no relation to the order of the keys
* in the input.
*
*
* repeated .google.datastore.v1.EntityResult missing = 2;
*/
public Builder clearMissing() {
if (missingBuilder_ == null) {
missing_ = java.util.Collections.emptyList();
bitField0_ = (bitField0_ & ~0x00000002);
onChanged();
} else {
missingBuilder_.clear();
}
return this;
}
/**
*
* Entities not found as `ResultType.KEY_ONLY` entities. The order of results
* in this field is undefined and has no relation to the order of the keys
* in the input.
*
*
* repeated .google.datastore.v1.EntityResult missing = 2;
*/
public Builder removeMissing(int index) {
if (missingBuilder_ == null) {
ensureMissingIsMutable();
missing_.remove(index);
onChanged();
} else {
missingBuilder_.remove(index);
}
return this;
}
/**
*
* Entities not found as `ResultType.KEY_ONLY` entities. The order of results
* in this field is undefined and has no relation to the order of the keys
* in the input.
*
*
* repeated .google.datastore.v1.EntityResult missing = 2;
*/
public com.google.datastore.v1.EntityResult.Builder getMissingBuilder(
int index) {
return getMissingFieldBuilder().getBuilder(index);
}
/**
*
* Entities not found as `ResultType.KEY_ONLY` entities. The order of results
* in this field is undefined and has no relation to the order of the keys
* in the input.
*
*
* repeated .google.datastore.v1.EntityResult missing = 2;
*/
public com.google.datastore.v1.EntityResultOrBuilder getMissingOrBuilder(
int index) {
if (missingBuilder_ == null) {
return missing_.get(index); } else {
return missingBuilder_.getMessageOrBuilder(index);
}
}
/**
*
* Entities not found as `ResultType.KEY_ONLY` entities. The order of results
* in this field is undefined and has no relation to the order of the keys
* in the input.
*
*
* repeated .google.datastore.v1.EntityResult missing = 2;
*/
public java.util.List extends com.google.datastore.v1.EntityResultOrBuilder>
getMissingOrBuilderList() {
if (missingBuilder_ != null) {
return missingBuilder_.getMessageOrBuilderList();
} else {
return java.util.Collections.unmodifiableList(missing_);
}
}
/**
*
* Entities not found as `ResultType.KEY_ONLY` entities. The order of results
* in this field is undefined and has no relation to the order of the keys
* in the input.
*
*
* repeated .google.datastore.v1.EntityResult missing = 2;
*/
public com.google.datastore.v1.EntityResult.Builder addMissingBuilder() {
return getMissingFieldBuilder().addBuilder(
com.google.datastore.v1.EntityResult.getDefaultInstance());
}
/**
*
* Entities not found as `ResultType.KEY_ONLY` entities. The order of results
* in this field is undefined and has no relation to the order of the keys
* in the input.
*
*
* repeated .google.datastore.v1.EntityResult missing = 2;
*/
public com.google.datastore.v1.EntityResult.Builder addMissingBuilder(
int index) {
return getMissingFieldBuilder().addBuilder(
index, com.google.datastore.v1.EntityResult.getDefaultInstance());
}
/**
*
* Entities not found as `ResultType.KEY_ONLY` entities. The order of results
* in this field is undefined and has no relation to the order of the keys
* in the input.
*
*
* repeated .google.datastore.v1.EntityResult missing = 2;
*/
public java.util.List
getMissingBuilderList() {
return getMissingFieldBuilder().getBuilderList();
}
private com.google.protobuf.RepeatedFieldBuilderV3<
com.google.datastore.v1.EntityResult, com.google.datastore.v1.EntityResult.Builder, com.google.datastore.v1.EntityResultOrBuilder>
getMissingFieldBuilder() {
if (missingBuilder_ == null) {
missingBuilder_ = new com.google.protobuf.RepeatedFieldBuilderV3<
com.google.datastore.v1.EntityResult, com.google.datastore.v1.EntityResult.Builder, com.google.datastore.v1.EntityResultOrBuilder>(
missing_,
((bitField0_ & 0x00000002) == 0x00000002),
getParentForChildren(),
isClean());
missing_ = null;
}
return missingBuilder_;
}
private java.util.List deferred_ =
java.util.Collections.emptyList();
private void ensureDeferredIsMutable() {
if (!((bitField0_ & 0x00000004) == 0x00000004)) {
deferred_ = new java.util.ArrayList(deferred_);
bitField0_ |= 0x00000004;
}
}
private com.google.protobuf.RepeatedFieldBuilderV3<
com.google.datastore.v1.Key, com.google.datastore.v1.Key.Builder, com.google.datastore.v1.KeyOrBuilder> deferredBuilder_;
/**
*
* A list of keys that were not looked up due to resource constraints. The
* order of results in this field is undefined and has no relation to the
* order of the keys in the input.
*
*
* repeated .google.datastore.v1.Key deferred = 3;
*/
public java.util.List getDeferredList() {
if (deferredBuilder_ == null) {
return java.util.Collections.unmodifiableList(deferred_);
} else {
return deferredBuilder_.getMessageList();
}
}
/**
*
* A list of keys that were not looked up due to resource constraints. The
* order of results in this field is undefined and has no relation to the
* order of the keys in the input.
*
*
* repeated .google.datastore.v1.Key deferred = 3;
*/
public int getDeferredCount() {
if (deferredBuilder_ == null) {
return deferred_.size();
} else {
return deferredBuilder_.getCount();
}
}
/**
*
* A list of keys that were not looked up due to resource constraints. The
* order of results in this field is undefined and has no relation to the
* order of the keys in the input.
*
*
* repeated .google.datastore.v1.Key deferred = 3;
*/
public com.google.datastore.v1.Key getDeferred(int index) {
if (deferredBuilder_ == null) {
return deferred_.get(index);
} else {
return deferredBuilder_.getMessage(index);
}
}
/**
*
* A list of keys that were not looked up due to resource constraints. The
* order of results in this field is undefined and has no relation to the
* order of the keys in the input.
*
*
* repeated .google.datastore.v1.Key deferred = 3;
*/
public Builder setDeferred(
int index, com.google.datastore.v1.Key value) {
if (deferredBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
ensureDeferredIsMutable();
deferred_.set(index, value);
onChanged();
} else {
deferredBuilder_.setMessage(index, value);
}
return this;
}
/**
*
* A list of keys that were not looked up due to resource constraints. The
* order of results in this field is undefined and has no relation to the
* order of the keys in the input.
*
*
* repeated .google.datastore.v1.Key deferred = 3;
*/
public Builder setDeferred(
int index, com.google.datastore.v1.Key.Builder builderForValue) {
if (deferredBuilder_ == null) {
ensureDeferredIsMutable();
deferred_.set(index, builderForValue.build());
onChanged();
} else {
deferredBuilder_.setMessage(index, builderForValue.build());
}
return this;
}
/**
*
* A list of keys that were not looked up due to resource constraints. The
* order of results in this field is undefined and has no relation to the
* order of the keys in the input.
*
*
* repeated .google.datastore.v1.Key deferred = 3;
*/
public Builder addDeferred(com.google.datastore.v1.Key value) {
if (deferredBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
ensureDeferredIsMutable();
deferred_.add(value);
onChanged();
} else {
deferredBuilder_.addMessage(value);
}
return this;
}
/**
*
* A list of keys that were not looked up due to resource constraints. The
* order of results in this field is undefined and has no relation to the
* order of the keys in the input.
*
*
* repeated .google.datastore.v1.Key deferred = 3;
*/
public Builder addDeferred(
int index, com.google.datastore.v1.Key value) {
if (deferredBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
ensureDeferredIsMutable();
deferred_.add(index, value);
onChanged();
} else {
deferredBuilder_.addMessage(index, value);
}
return this;
}
/**
*
* A list of keys that were not looked up due to resource constraints. The
* order of results in this field is undefined and has no relation to the
* order of the keys in the input.
*
*
* repeated .google.datastore.v1.Key deferred = 3;
*/
public Builder addDeferred(
com.google.datastore.v1.Key.Builder builderForValue) {
if (deferredBuilder_ == null) {
ensureDeferredIsMutable();
deferred_.add(builderForValue.build());
onChanged();
} else {
deferredBuilder_.addMessage(builderForValue.build());
}
return this;
}
/**
*
* A list of keys that were not looked up due to resource constraints. The
* order of results in this field is undefined and has no relation to the
* order of the keys in the input.
*
*
* repeated .google.datastore.v1.Key deferred = 3;
*/
public Builder addDeferred(
int index, com.google.datastore.v1.Key.Builder builderForValue) {
if (deferredBuilder_ == null) {
ensureDeferredIsMutable();
deferred_.add(index, builderForValue.build());
onChanged();
} else {
deferredBuilder_.addMessage(index, builderForValue.build());
}
return this;
}
/**
*
* A list of keys that were not looked up due to resource constraints. The
* order of results in this field is undefined and has no relation to the
* order of the keys in the input.
*
*
* repeated .google.datastore.v1.Key deferred = 3;
*/
public Builder addAllDeferred(
java.lang.Iterable extends com.google.datastore.v1.Key> values) {
if (deferredBuilder_ == null) {
ensureDeferredIsMutable();
com.google.protobuf.AbstractMessageLite.Builder.addAll(
values, deferred_);
onChanged();
} else {
deferredBuilder_.addAllMessages(values);
}
return this;
}
/**
*
* A list of keys that were not looked up due to resource constraints. The
* order of results in this field is undefined and has no relation to the
* order of the keys in the input.
*
*
* repeated .google.datastore.v1.Key deferred = 3;
*/
public Builder clearDeferred() {
if (deferredBuilder_ == null) {
deferred_ = java.util.Collections.emptyList();
bitField0_ = (bitField0_ & ~0x00000004);
onChanged();
} else {
deferredBuilder_.clear();
}
return this;
}
/**
*
* A list of keys that were not looked up due to resource constraints. The
* order of results in this field is undefined and has no relation to the
* order of the keys in the input.
*
*
* repeated .google.datastore.v1.Key deferred = 3;
*/
public Builder removeDeferred(int index) {
if (deferredBuilder_ == null) {
ensureDeferredIsMutable();
deferred_.remove(index);
onChanged();
} else {
deferredBuilder_.remove(index);
}
return this;
}
/**
*
* A list of keys that were not looked up due to resource constraints. The
* order of results in this field is undefined and has no relation to the
* order of the keys in the input.
*
*
* repeated .google.datastore.v1.Key deferred = 3;
*/
public com.google.datastore.v1.Key.Builder getDeferredBuilder(
int index) {
return getDeferredFieldBuilder().getBuilder(index);
}
/**
*
* A list of keys that were not looked up due to resource constraints. The
* order of results in this field is undefined and has no relation to the
* order of the keys in the input.
*
*
* repeated .google.datastore.v1.Key deferred = 3;
*/
public com.google.datastore.v1.KeyOrBuilder getDeferredOrBuilder(
int index) {
if (deferredBuilder_ == null) {
return deferred_.get(index); } else {
return deferredBuilder_.getMessageOrBuilder(index);
}
}
/**
*
* A list of keys that were not looked up due to resource constraints. The
* order of results in this field is undefined and has no relation to the
* order of the keys in the input.
*
*
* repeated .google.datastore.v1.Key deferred = 3;
*/
public java.util.List extends com.google.datastore.v1.KeyOrBuilder>
getDeferredOrBuilderList() {
if (deferredBuilder_ != null) {
return deferredBuilder_.getMessageOrBuilderList();
} else {
return java.util.Collections.unmodifiableList(deferred_);
}
}
/**
*
* A list of keys that were not looked up due to resource constraints. The
* order of results in this field is undefined and has no relation to the
* order of the keys in the input.
*
*
* repeated .google.datastore.v1.Key deferred = 3;
*/
public com.google.datastore.v1.Key.Builder addDeferredBuilder() {
return getDeferredFieldBuilder().addBuilder(
com.google.datastore.v1.Key.getDefaultInstance());
}
/**
*
* A list of keys that were not looked up due to resource constraints. The
* order of results in this field is undefined and has no relation to the
* order of the keys in the input.
*
*
* repeated .google.datastore.v1.Key deferred = 3;
*/
public com.google.datastore.v1.Key.Builder addDeferredBuilder(
int index) {
return getDeferredFieldBuilder().addBuilder(
index, com.google.datastore.v1.Key.getDefaultInstance());
}
/**
*
* A list of keys that were not looked up due to resource constraints. The
* order of results in this field is undefined and has no relation to the
* order of the keys in the input.
*
*
* repeated .google.datastore.v1.Key deferred = 3;
*/
public java.util.List
getDeferredBuilderList() {
return getDeferredFieldBuilder().getBuilderList();
}
private com.google.protobuf.RepeatedFieldBuilderV3<
com.google.datastore.v1.Key, com.google.datastore.v1.Key.Builder, com.google.datastore.v1.KeyOrBuilder>
getDeferredFieldBuilder() {
if (deferredBuilder_ == null) {
deferredBuilder_ = new com.google.protobuf.RepeatedFieldBuilderV3<
com.google.datastore.v1.Key, com.google.datastore.v1.Key.Builder, com.google.datastore.v1.KeyOrBuilder>(
deferred_,
((bitField0_ & 0x00000004) == 0x00000004),
getParentForChildren(),
isClean());
deferred_ = null;
}
return deferredBuilder_;
}
public final Builder setUnknownFields(
final com.google.protobuf.UnknownFieldSet unknownFields) {
return this;
}
public final Builder mergeUnknownFields(
final com.google.protobuf.UnknownFieldSet unknownFields) {
return this;
}
// @@protoc_insertion_point(builder_scope:google.datastore.v1.LookupResponse)
}
// @@protoc_insertion_point(class_scope:google.datastore.v1.LookupResponse)
private static final com.google.datastore.v1.LookupResponse DEFAULT_INSTANCE;
static {
DEFAULT_INSTANCE = new com.google.datastore.v1.LookupResponse();
}
public static com.google.datastore.v1.LookupResponse getDefaultInstance() {
return DEFAULT_INSTANCE;
}
private static final com.google.protobuf.Parser
PARSER = new com.google.protobuf.AbstractParser() {
public LookupResponse parsePartialFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return new LookupResponse(input, extensionRegistry);
}
};
public static com.google.protobuf.Parser parser() {
return PARSER;
}
@java.lang.Override
public com.google.protobuf.Parser getParserForType() {
return PARSER;
}
public com.google.datastore.v1.LookupResponse getDefaultInstanceForType() {
return DEFAULT_INSTANCE;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy