grpc.vectorindex._DeleteItemBatchRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of client-protos-jvm Show documentation
Show all versions of client-protos-jvm Show documentation
Kotlin protobuf protocols for the JVM that define the Momento gRPC wire format
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: vectorindex.proto
package grpc.vectorindex;
/**
* Protobuf type {@code vectorindex._DeleteItemBatchRequest}
*/
public final class _DeleteItemBatchRequest extends
com.google.protobuf.GeneratedMessageV3 implements
// @@protoc_insertion_point(message_implements:vectorindex._DeleteItemBatchRequest)
_DeleteItemBatchRequestOrBuilder {
private static final long serialVersionUID = 0L;
// Use _DeleteItemBatchRequest.newBuilder() to construct.
private _DeleteItemBatchRequest(com.google.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
}
private _DeleteItemBatchRequest() {
indexName_ = "";
ids_ =
com.google.protobuf.LazyStringArrayList.emptyList();
}
@java.lang.Override
@SuppressWarnings({"unused"})
protected java.lang.Object newInstance(
UnusedPrivateParameter unused) {
return new _DeleteItemBatchRequest();
}
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return grpc.vectorindex.Vectorindex.internal_static_vectorindex__DeleteItemBatchRequest_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return grpc.vectorindex.Vectorindex.internal_static_vectorindex__DeleteItemBatchRequest_fieldAccessorTable
.ensureFieldAccessorsInitialized(
grpc.vectorindex._DeleteItemBatchRequest.class, grpc.vectorindex._DeleteItemBatchRequest.Builder.class);
}
private int bitField0_;
public static final int INDEX_NAME_FIELD_NUMBER = 1;
@SuppressWarnings("serial")
private volatile java.lang.Object indexName_ = "";
/**
* string index_name = 1;
* @return The indexName.
*/
@java.lang.Override
public java.lang.String getIndexName() {
java.lang.Object ref = indexName_;
if (ref instanceof java.lang.String) {
return (java.lang.String) ref;
} else {
com.google.protobuf.ByteString bs =
(com.google.protobuf.ByteString) ref;
java.lang.String s = bs.toStringUtf8();
indexName_ = s;
return s;
}
}
/**
* string index_name = 1;
* @return The bytes for indexName.
*/
@java.lang.Override
public com.google.protobuf.ByteString
getIndexNameBytes() {
java.lang.Object ref = indexName_;
if (ref instanceof java.lang.String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
indexName_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
public static final int IDS_FIELD_NUMBER = 2;
@SuppressWarnings("serial")
private com.google.protobuf.LazyStringArrayList ids_ =
com.google.protobuf.LazyStringArrayList.emptyList();
/**
*
* TODO: reserve after migration
*
*
* repeated string ids = 2;
* @return A list containing the ids.
*/
public com.google.protobuf.ProtocolStringList
getIdsList() {
return ids_;
}
/**
*
* TODO: reserve after migration
*
*
* repeated string ids = 2;
* @return The count of ids.
*/
public int getIdsCount() {
return ids_.size();
}
/**
*
* TODO: reserve after migration
*
*
* repeated string ids = 2;
* @param index The index of the element to return.
* @return The ids at the given index.
*/
public java.lang.String getIds(int index) {
return ids_.get(index);
}
/**
*
* TODO: reserve after migration
*
*
* repeated string ids = 2;
* @param index The index of the value to return.
* @return The bytes of the ids at the given index.
*/
public com.google.protobuf.ByteString
getIdsBytes(int index) {
return ids_.getByteString(index);
}
public static final int FILTER_FIELD_NUMBER = 3;
private grpc.vectorindex._FilterExpression filter_;
/**
* .vectorindex._FilterExpression filter = 3;
* @return Whether the filter field is set.
*/
@java.lang.Override
public boolean hasFilter() {
return ((bitField0_ & 0x00000001) != 0);
}
/**
* .vectorindex._FilterExpression filter = 3;
* @return The filter.
*/
@java.lang.Override
public grpc.vectorindex._FilterExpression getFilter() {
return filter_ == null ? grpc.vectorindex._FilterExpression.getDefaultInstance() : filter_;
}
/**
* .vectorindex._FilterExpression filter = 3;
*/
@java.lang.Override
public grpc.vectorindex._FilterExpressionOrBuilder getFilterOrBuilder() {
return filter_ == null ? grpc.vectorindex._FilterExpression.getDefaultInstance() : filter_;
}
private byte memoizedIsInitialized = -1;
@java.lang.Override
public final boolean isInitialized() {
byte isInitialized = memoizedIsInitialized;
if (isInitialized == 1) return true;
if (isInitialized == 0) return false;
memoizedIsInitialized = 1;
return true;
}
@java.lang.Override
public void writeTo(com.google.protobuf.CodedOutputStream output)
throws java.io.IOException {
if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(indexName_)) {
com.google.protobuf.GeneratedMessageV3.writeString(output, 1, indexName_);
}
for (int i = 0; i < ids_.size(); i++) {
com.google.protobuf.GeneratedMessageV3.writeString(output, 2, ids_.getRaw(i));
}
if (((bitField0_ & 0x00000001) != 0)) {
output.writeMessage(3, getFilter());
}
getUnknownFields().writeTo(output);
}
@java.lang.Override
public int getSerializedSize() {
int size = memoizedSize;
if (size != -1) return size;
size = 0;
if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(indexName_)) {
size += com.google.protobuf.GeneratedMessageV3.computeStringSize(1, indexName_);
}
{
int dataSize = 0;
for (int i = 0; i < ids_.size(); i++) {
dataSize += computeStringSizeNoTag(ids_.getRaw(i));
}
size += dataSize;
size += 1 * getIdsList().size();
}
if (((bitField0_ & 0x00000001) != 0)) {
size += com.google.protobuf.CodedOutputStream
.computeMessageSize(3, getFilter());
}
size += getUnknownFields().getSerializedSize();
memoizedSize = size;
return size;
}
@java.lang.Override
public boolean equals(final java.lang.Object obj) {
if (obj == this) {
return true;
}
if (!(obj instanceof grpc.vectorindex._DeleteItemBatchRequest)) {
return super.equals(obj);
}
grpc.vectorindex._DeleteItemBatchRequest other = (grpc.vectorindex._DeleteItemBatchRequest) obj;
if (!getIndexName()
.equals(other.getIndexName())) return false;
if (!getIdsList()
.equals(other.getIdsList())) return false;
if (hasFilter() != other.hasFilter()) return false;
if (hasFilter()) {
if (!getFilter()
.equals(other.getFilter())) return false;
}
if (!getUnknownFields().equals(other.getUnknownFields())) return false;
return true;
}
@java.lang.Override
public int hashCode() {
if (memoizedHashCode != 0) {
return memoizedHashCode;
}
int hash = 41;
hash = (19 * hash) + getDescriptor().hashCode();
hash = (37 * hash) + INDEX_NAME_FIELD_NUMBER;
hash = (53 * hash) + getIndexName().hashCode();
if (getIdsCount() > 0) {
hash = (37 * hash) + IDS_FIELD_NUMBER;
hash = (53 * hash) + getIdsList().hashCode();
}
if (hasFilter()) {
hash = (37 * hash) + FILTER_FIELD_NUMBER;
hash = (53 * hash) + getFilter().hashCode();
}
hash = (29 * hash) + getUnknownFields().hashCode();
memoizedHashCode = hash;
return hash;
}
public static grpc.vectorindex._DeleteItemBatchRequest parseFrom(
java.nio.ByteBuffer data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static grpc.vectorindex._DeleteItemBatchRequest parseFrom(
java.nio.ByteBuffer data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static grpc.vectorindex._DeleteItemBatchRequest parseFrom(
com.google.protobuf.ByteString data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static grpc.vectorindex._DeleteItemBatchRequest parseFrom(
com.google.protobuf.ByteString data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static grpc.vectorindex._DeleteItemBatchRequest parseFrom(byte[] data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static grpc.vectorindex._DeleteItemBatchRequest parseFrom(
byte[] data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static grpc.vectorindex._DeleteItemBatchRequest parseFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static grpc.vectorindex._DeleteItemBatchRequest 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 grpc.vectorindex._DeleteItemBatchRequest parseDelimitedFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseDelimitedWithIOException(PARSER, input);
}
public static grpc.vectorindex._DeleteItemBatchRequest 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 grpc.vectorindex._DeleteItemBatchRequest parseFrom(
com.google.protobuf.CodedInputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static grpc.vectorindex._DeleteItemBatchRequest parseFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input, extensionRegistry);
}
@java.lang.Override
public Builder newBuilderForType() { return newBuilder(); }
public static Builder newBuilder() {
return DEFAULT_INSTANCE.toBuilder();
}
public static Builder newBuilder(grpc.vectorindex._DeleteItemBatchRequest prototype) {
return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype);
}
@java.lang.Override
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;
}
/**
* Protobuf type {@code vectorindex._DeleteItemBatchRequest}
*/
public static final class Builder extends
com.google.protobuf.GeneratedMessageV3.Builder implements
// @@protoc_insertion_point(builder_implements:vectorindex._DeleteItemBatchRequest)
grpc.vectorindex._DeleteItemBatchRequestOrBuilder {
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return grpc.vectorindex.Vectorindex.internal_static_vectorindex__DeleteItemBatchRequest_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return grpc.vectorindex.Vectorindex.internal_static_vectorindex__DeleteItemBatchRequest_fieldAccessorTable
.ensureFieldAccessorsInitialized(
grpc.vectorindex._DeleteItemBatchRequest.class, grpc.vectorindex._DeleteItemBatchRequest.Builder.class);
}
// Construct using grpc.vectorindex._DeleteItemBatchRequest.newBuilder()
private Builder() {
maybeForceBuilderInitialization();
}
private Builder(
com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
super(parent);
maybeForceBuilderInitialization();
}
private void maybeForceBuilderInitialization() {
if (com.google.protobuf.GeneratedMessageV3
.alwaysUseFieldBuilders) {
getFilterFieldBuilder();
}
}
@java.lang.Override
public Builder clear() {
super.clear();
bitField0_ = 0;
indexName_ = "";
ids_ =
com.google.protobuf.LazyStringArrayList.emptyList();
filter_ = null;
if (filterBuilder_ != null) {
filterBuilder_.dispose();
filterBuilder_ = null;
}
return this;
}
@java.lang.Override
public com.google.protobuf.Descriptors.Descriptor
getDescriptorForType() {
return grpc.vectorindex.Vectorindex.internal_static_vectorindex__DeleteItemBatchRequest_descriptor;
}
@java.lang.Override
public grpc.vectorindex._DeleteItemBatchRequest getDefaultInstanceForType() {
return grpc.vectorindex._DeleteItemBatchRequest.getDefaultInstance();
}
@java.lang.Override
public grpc.vectorindex._DeleteItemBatchRequest build() {
grpc.vectorindex._DeleteItemBatchRequest result = buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
@java.lang.Override
public grpc.vectorindex._DeleteItemBatchRequest buildPartial() {
grpc.vectorindex._DeleteItemBatchRequest result = new grpc.vectorindex._DeleteItemBatchRequest(this);
if (bitField0_ != 0) { buildPartial0(result); }
onBuilt();
return result;
}
private void buildPartial0(grpc.vectorindex._DeleteItemBatchRequest result) {
int from_bitField0_ = bitField0_;
if (((from_bitField0_ & 0x00000001) != 0)) {
result.indexName_ = indexName_;
}
if (((from_bitField0_ & 0x00000002) != 0)) {
ids_.makeImmutable();
result.ids_ = ids_;
}
int to_bitField0_ = 0;
if (((from_bitField0_ & 0x00000004) != 0)) {
result.filter_ = filterBuilder_ == null
? filter_
: filterBuilder_.build();
to_bitField0_ |= 0x00000001;
}
result.bitField0_ |= to_bitField0_;
}
@java.lang.Override
public Builder clone() {
return super.clone();
}
@java.lang.Override
public Builder setField(
com.google.protobuf.Descriptors.FieldDescriptor field,
java.lang.Object value) {
return super.setField(field, value);
}
@java.lang.Override
public Builder clearField(
com.google.protobuf.Descriptors.FieldDescriptor field) {
return super.clearField(field);
}
@java.lang.Override
public Builder clearOneof(
com.google.protobuf.Descriptors.OneofDescriptor oneof) {
return super.clearOneof(oneof);
}
@java.lang.Override
public Builder setRepeatedField(
com.google.protobuf.Descriptors.FieldDescriptor field,
int index, java.lang.Object value) {
return super.setRepeatedField(field, index, value);
}
@java.lang.Override
public Builder addRepeatedField(
com.google.protobuf.Descriptors.FieldDescriptor field,
java.lang.Object value) {
return super.addRepeatedField(field, value);
}
@java.lang.Override
public Builder mergeFrom(com.google.protobuf.Message other) {
if (other instanceof grpc.vectorindex._DeleteItemBatchRequest) {
return mergeFrom((grpc.vectorindex._DeleteItemBatchRequest)other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(grpc.vectorindex._DeleteItemBatchRequest other) {
if (other == grpc.vectorindex._DeleteItemBatchRequest.getDefaultInstance()) return this;
if (!other.getIndexName().isEmpty()) {
indexName_ = other.indexName_;
bitField0_ |= 0x00000001;
onChanged();
}
if (!other.ids_.isEmpty()) {
if (ids_.isEmpty()) {
ids_ = other.ids_;
bitField0_ |= 0x00000002;
} else {
ensureIdsIsMutable();
ids_.addAll(other.ids_);
}
onChanged();
}
if (other.hasFilter()) {
mergeFilter(other.getFilter());
}
this.mergeUnknownFields(other.getUnknownFields());
onChanged();
return this;
}
@java.lang.Override
public final boolean isInitialized() {
return true;
}
@java.lang.Override
public Builder mergeFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
if (extensionRegistry == null) {
throw new java.lang.NullPointerException();
}
try {
boolean done = false;
while (!done) {
int tag = input.readTag();
switch (tag) {
case 0:
done = true;
break;
case 10: {
indexName_ = input.readStringRequireUtf8();
bitField0_ |= 0x00000001;
break;
} // case 10
case 18: {
java.lang.String s = input.readStringRequireUtf8();
ensureIdsIsMutable();
ids_.add(s);
break;
} // case 18
case 26: {
input.readMessage(
getFilterFieldBuilder().getBuilder(),
extensionRegistry);
bitField0_ |= 0x00000004;
break;
} // case 26
default: {
if (!super.parseUnknownField(input, extensionRegistry, tag)) {
done = true; // was an endgroup tag
}
break;
} // default:
} // switch (tag)
} // while (!done)
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
throw e.unwrapIOException();
} finally {
onChanged();
} // finally
return this;
}
private int bitField0_;
private java.lang.Object indexName_ = "";
/**
* string index_name = 1;
* @return The indexName.
*/
public java.lang.String getIndexName() {
java.lang.Object ref = indexName_;
if (!(ref instanceof java.lang.String)) {
com.google.protobuf.ByteString bs =
(com.google.protobuf.ByteString) ref;
java.lang.String s = bs.toStringUtf8();
indexName_ = s;
return s;
} else {
return (java.lang.String) ref;
}
}
/**
* string index_name = 1;
* @return The bytes for indexName.
*/
public com.google.protobuf.ByteString
getIndexNameBytes() {
java.lang.Object ref = indexName_;
if (ref instanceof String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
indexName_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
/**
* string index_name = 1;
* @param value The indexName to set.
* @return This builder for chaining.
*/
public Builder setIndexName(
java.lang.String value) {
if (value == null) { throw new NullPointerException(); }
indexName_ = value;
bitField0_ |= 0x00000001;
onChanged();
return this;
}
/**
* string index_name = 1;
* @return This builder for chaining.
*/
public Builder clearIndexName() {
indexName_ = getDefaultInstance().getIndexName();
bitField0_ = (bitField0_ & ~0x00000001);
onChanged();
return this;
}
/**
* string index_name = 1;
* @param value The bytes for indexName to set.
* @return This builder for chaining.
*/
public Builder setIndexNameBytes(
com.google.protobuf.ByteString value) {
if (value == null) { throw new NullPointerException(); }
checkByteStringIsUtf8(value);
indexName_ = value;
bitField0_ |= 0x00000001;
onChanged();
return this;
}
private com.google.protobuf.LazyStringArrayList ids_ =
com.google.protobuf.LazyStringArrayList.emptyList();
private void ensureIdsIsMutable() {
if (!ids_.isModifiable()) {
ids_ = new com.google.protobuf.LazyStringArrayList(ids_);
}
bitField0_ |= 0x00000002;
}
/**
*
* TODO: reserve after migration
*
*
* repeated string ids = 2;
* @return A list containing the ids.
*/
public com.google.protobuf.ProtocolStringList
getIdsList() {
ids_.makeImmutable();
return ids_;
}
/**
*
* TODO: reserve after migration
*
*
* repeated string ids = 2;
* @return The count of ids.
*/
public int getIdsCount() {
return ids_.size();
}
/**
*
* TODO: reserve after migration
*
*
* repeated string ids = 2;
* @param index The index of the element to return.
* @return The ids at the given index.
*/
public java.lang.String getIds(int index) {
return ids_.get(index);
}
/**
*
* TODO: reserve after migration
*
*
* repeated string ids = 2;
* @param index The index of the value to return.
* @return The bytes of the ids at the given index.
*/
public com.google.protobuf.ByteString
getIdsBytes(int index) {
return ids_.getByteString(index);
}
/**
*
* TODO: reserve after migration
*
*
* repeated string ids = 2;
* @param index The index to set the value at.
* @param value The ids to set.
* @return This builder for chaining.
*/
public Builder setIds(
int index, java.lang.String value) {
if (value == null) { throw new NullPointerException(); }
ensureIdsIsMutable();
ids_.set(index, value);
bitField0_ |= 0x00000002;
onChanged();
return this;
}
/**
*
* TODO: reserve after migration
*
*
* repeated string ids = 2;
* @param value The ids to add.
* @return This builder for chaining.
*/
public Builder addIds(
java.lang.String value) {
if (value == null) { throw new NullPointerException(); }
ensureIdsIsMutable();
ids_.add(value);
bitField0_ |= 0x00000002;
onChanged();
return this;
}
/**
*
* TODO: reserve after migration
*
*
* repeated string ids = 2;
* @param values The ids to add.
* @return This builder for chaining.
*/
public Builder addAllIds(
java.lang.Iterable values) {
ensureIdsIsMutable();
com.google.protobuf.AbstractMessageLite.Builder.addAll(
values, ids_);
bitField0_ |= 0x00000002;
onChanged();
return this;
}
/**
*
* TODO: reserve after migration
*
*
* repeated string ids = 2;
* @return This builder for chaining.
*/
public Builder clearIds() {
ids_ =
com.google.protobuf.LazyStringArrayList.emptyList();
bitField0_ = (bitField0_ & ~0x00000002);;
onChanged();
return this;
}
/**
*
* TODO: reserve after migration
*
*
* repeated string ids = 2;
* @param value The bytes of the ids to add.
* @return This builder for chaining.
*/
public Builder addIdsBytes(
com.google.protobuf.ByteString value) {
if (value == null) { throw new NullPointerException(); }
checkByteStringIsUtf8(value);
ensureIdsIsMutable();
ids_.add(value);
bitField0_ |= 0x00000002;
onChanged();
return this;
}
private grpc.vectorindex._FilterExpression filter_;
private com.google.protobuf.SingleFieldBuilderV3<
grpc.vectorindex._FilterExpression, grpc.vectorindex._FilterExpression.Builder, grpc.vectorindex._FilterExpressionOrBuilder> filterBuilder_;
/**
* .vectorindex._FilterExpression filter = 3;
* @return Whether the filter field is set.
*/
public boolean hasFilter() {
return ((bitField0_ & 0x00000004) != 0);
}
/**
* .vectorindex._FilterExpression filter = 3;
* @return The filter.
*/
public grpc.vectorindex._FilterExpression getFilter() {
if (filterBuilder_ == null) {
return filter_ == null ? grpc.vectorindex._FilterExpression.getDefaultInstance() : filter_;
} else {
return filterBuilder_.getMessage();
}
}
/**
* .vectorindex._FilterExpression filter = 3;
*/
public Builder setFilter(grpc.vectorindex._FilterExpression value) {
if (filterBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
filter_ = value;
} else {
filterBuilder_.setMessage(value);
}
bitField0_ |= 0x00000004;
onChanged();
return this;
}
/**
* .vectorindex._FilterExpression filter = 3;
*/
public Builder setFilter(
grpc.vectorindex._FilterExpression.Builder builderForValue) {
if (filterBuilder_ == null) {
filter_ = builderForValue.build();
} else {
filterBuilder_.setMessage(builderForValue.build());
}
bitField0_ |= 0x00000004;
onChanged();
return this;
}
/**
* .vectorindex._FilterExpression filter = 3;
*/
public Builder mergeFilter(grpc.vectorindex._FilterExpression value) {
if (filterBuilder_ == null) {
if (((bitField0_ & 0x00000004) != 0) &&
filter_ != null &&
filter_ != grpc.vectorindex._FilterExpression.getDefaultInstance()) {
getFilterBuilder().mergeFrom(value);
} else {
filter_ = value;
}
} else {
filterBuilder_.mergeFrom(value);
}
if (filter_ != null) {
bitField0_ |= 0x00000004;
onChanged();
}
return this;
}
/**
* .vectorindex._FilterExpression filter = 3;
*/
public Builder clearFilter() {
bitField0_ = (bitField0_ & ~0x00000004);
filter_ = null;
if (filterBuilder_ != null) {
filterBuilder_.dispose();
filterBuilder_ = null;
}
onChanged();
return this;
}
/**
* .vectorindex._FilterExpression filter = 3;
*/
public grpc.vectorindex._FilterExpression.Builder getFilterBuilder() {
bitField0_ |= 0x00000004;
onChanged();
return getFilterFieldBuilder().getBuilder();
}
/**
* .vectorindex._FilterExpression filter = 3;
*/
public grpc.vectorindex._FilterExpressionOrBuilder getFilterOrBuilder() {
if (filterBuilder_ != null) {
return filterBuilder_.getMessageOrBuilder();
} else {
return filter_ == null ?
grpc.vectorindex._FilterExpression.getDefaultInstance() : filter_;
}
}
/**
* .vectorindex._FilterExpression filter = 3;
*/
private com.google.protobuf.SingleFieldBuilderV3<
grpc.vectorindex._FilterExpression, grpc.vectorindex._FilterExpression.Builder, grpc.vectorindex._FilterExpressionOrBuilder>
getFilterFieldBuilder() {
if (filterBuilder_ == null) {
filterBuilder_ = new com.google.protobuf.SingleFieldBuilderV3<
grpc.vectorindex._FilterExpression, grpc.vectorindex._FilterExpression.Builder, grpc.vectorindex._FilterExpressionOrBuilder>(
getFilter(),
getParentForChildren(),
isClean());
filter_ = null;
}
return filterBuilder_;
}
@java.lang.Override
public final Builder setUnknownFields(
final com.google.protobuf.UnknownFieldSet unknownFields) {
return super.setUnknownFields(unknownFields);
}
@java.lang.Override
public final Builder mergeUnknownFields(
final com.google.protobuf.UnknownFieldSet unknownFields) {
return super.mergeUnknownFields(unknownFields);
}
// @@protoc_insertion_point(builder_scope:vectorindex._DeleteItemBatchRequest)
}
// @@protoc_insertion_point(class_scope:vectorindex._DeleteItemBatchRequest)
private static final grpc.vectorindex._DeleteItemBatchRequest DEFAULT_INSTANCE;
static {
DEFAULT_INSTANCE = new grpc.vectorindex._DeleteItemBatchRequest();
}
public static grpc.vectorindex._DeleteItemBatchRequest getDefaultInstance() {
return DEFAULT_INSTANCE;
}
private static final com.google.protobuf.Parser<_DeleteItemBatchRequest>
PARSER = new com.google.protobuf.AbstractParser<_DeleteItemBatchRequest>() {
@java.lang.Override
public _DeleteItemBatchRequest parsePartialFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
Builder builder = newBuilder();
try {
builder.mergeFrom(input, extensionRegistry);
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
throw e.setUnfinishedMessage(builder.buildPartial());
} catch (com.google.protobuf.UninitializedMessageException e) {
throw e.asInvalidProtocolBufferException().setUnfinishedMessage(builder.buildPartial());
} catch (java.io.IOException e) {
throw new com.google.protobuf.InvalidProtocolBufferException(e)
.setUnfinishedMessage(builder.buildPartial());
}
return builder.buildPartial();
}
};
public static com.google.protobuf.Parser<_DeleteItemBatchRequest> parser() {
return PARSER;
}
@java.lang.Override
public com.google.protobuf.Parser<_DeleteItemBatchRequest> getParserForType() {
return PARSER;
}
@java.lang.Override
public grpc.vectorindex._DeleteItemBatchRequest getDefaultInstanceForType() {
return DEFAULT_INSTANCE;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy