grpc.cache_client._DictionaryIncrementRequest 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: cacheclient.proto
package grpc.cache_client;
/**
* Protobuf type {@code cache_client._DictionaryIncrementRequest}
*/
public final class _DictionaryIncrementRequest extends
com.google.protobuf.GeneratedMessageV3 implements
// @@protoc_insertion_point(message_implements:cache_client._DictionaryIncrementRequest)
_DictionaryIncrementRequestOrBuilder {
private static final long serialVersionUID = 0L;
// Use _DictionaryIncrementRequest.newBuilder() to construct.
private _DictionaryIncrementRequest(com.google.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
}
private _DictionaryIncrementRequest() {
dictionaryName_ = com.google.protobuf.ByteString.EMPTY;
field_ = com.google.protobuf.ByteString.EMPTY;
}
@java.lang.Override
@SuppressWarnings({"unused"})
protected java.lang.Object newInstance(
UnusedPrivateParameter unused) {
return new _DictionaryIncrementRequest();
}
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return grpc.cache_client.Cacheclient.internal_static_cache_client__DictionaryIncrementRequest_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return grpc.cache_client.Cacheclient.internal_static_cache_client__DictionaryIncrementRequest_fieldAccessorTable
.ensureFieldAccessorsInitialized(
grpc.cache_client._DictionaryIncrementRequest.class, grpc.cache_client._DictionaryIncrementRequest.Builder.class);
}
public static final int DICTIONARY_NAME_FIELD_NUMBER = 1;
private com.google.protobuf.ByteString dictionaryName_ = com.google.protobuf.ByteString.EMPTY;
/**
* bytes dictionary_name = 1;
* @return The dictionaryName.
*/
@java.lang.Override
public com.google.protobuf.ByteString getDictionaryName() {
return dictionaryName_;
}
public static final int FIELD_FIELD_NUMBER = 2;
private com.google.protobuf.ByteString field_ = com.google.protobuf.ByteString.EMPTY;
/**
* bytes field = 2;
* @return The field.
*/
@java.lang.Override
public com.google.protobuf.ByteString getField() {
return field_;
}
public static final int AMOUNT_FIELD_NUMBER = 3;
private long amount_ = 0L;
/**
* int64 amount = 3;
* @return The amount.
*/
@java.lang.Override
public long getAmount() {
return amount_;
}
public static final int TTL_MILLISECONDS_FIELD_NUMBER = 4;
private long ttlMilliseconds_ = 0L;
/**
* uint64 ttl_milliseconds = 4;
* @return The ttlMilliseconds.
*/
@java.lang.Override
public long getTtlMilliseconds() {
return ttlMilliseconds_;
}
public static final int REFRESH_TTL_FIELD_NUMBER = 5;
private boolean refreshTtl_ = false;
/**
* bool refresh_ttl = 5;
* @return The refreshTtl.
*/
@java.lang.Override
public boolean getRefreshTtl() {
return refreshTtl_;
}
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 (!dictionaryName_.isEmpty()) {
output.writeBytes(1, dictionaryName_);
}
if (!field_.isEmpty()) {
output.writeBytes(2, field_);
}
if (amount_ != 0L) {
output.writeInt64(3, amount_);
}
if (ttlMilliseconds_ != 0L) {
output.writeUInt64(4, ttlMilliseconds_);
}
if (refreshTtl_ != false) {
output.writeBool(5, refreshTtl_);
}
getUnknownFields().writeTo(output);
}
@java.lang.Override
public int getSerializedSize() {
int size = memoizedSize;
if (size != -1) return size;
size = 0;
if (!dictionaryName_.isEmpty()) {
size += com.google.protobuf.CodedOutputStream
.computeBytesSize(1, dictionaryName_);
}
if (!field_.isEmpty()) {
size += com.google.protobuf.CodedOutputStream
.computeBytesSize(2, field_);
}
if (amount_ != 0L) {
size += com.google.protobuf.CodedOutputStream
.computeInt64Size(3, amount_);
}
if (ttlMilliseconds_ != 0L) {
size += com.google.protobuf.CodedOutputStream
.computeUInt64Size(4, ttlMilliseconds_);
}
if (refreshTtl_ != false) {
size += com.google.protobuf.CodedOutputStream
.computeBoolSize(5, refreshTtl_);
}
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.cache_client._DictionaryIncrementRequest)) {
return super.equals(obj);
}
grpc.cache_client._DictionaryIncrementRequest other = (grpc.cache_client._DictionaryIncrementRequest) obj;
if (!getDictionaryName()
.equals(other.getDictionaryName())) return false;
if (!getField()
.equals(other.getField())) return false;
if (getAmount()
!= other.getAmount()) return false;
if (getTtlMilliseconds()
!= other.getTtlMilliseconds()) return false;
if (getRefreshTtl()
!= other.getRefreshTtl()) 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) + DICTIONARY_NAME_FIELD_NUMBER;
hash = (53 * hash) + getDictionaryName().hashCode();
hash = (37 * hash) + FIELD_FIELD_NUMBER;
hash = (53 * hash) + getField().hashCode();
hash = (37 * hash) + AMOUNT_FIELD_NUMBER;
hash = (53 * hash) + com.google.protobuf.Internal.hashLong(
getAmount());
hash = (37 * hash) + TTL_MILLISECONDS_FIELD_NUMBER;
hash = (53 * hash) + com.google.protobuf.Internal.hashLong(
getTtlMilliseconds());
hash = (37 * hash) + REFRESH_TTL_FIELD_NUMBER;
hash = (53 * hash) + com.google.protobuf.Internal.hashBoolean(
getRefreshTtl());
hash = (29 * hash) + getUnknownFields().hashCode();
memoizedHashCode = hash;
return hash;
}
public static grpc.cache_client._DictionaryIncrementRequest parseFrom(
java.nio.ByteBuffer data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static grpc.cache_client._DictionaryIncrementRequest parseFrom(
java.nio.ByteBuffer data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static grpc.cache_client._DictionaryIncrementRequest parseFrom(
com.google.protobuf.ByteString data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static grpc.cache_client._DictionaryIncrementRequest parseFrom(
com.google.protobuf.ByteString data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static grpc.cache_client._DictionaryIncrementRequest parseFrom(byte[] data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static grpc.cache_client._DictionaryIncrementRequest parseFrom(
byte[] data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static grpc.cache_client._DictionaryIncrementRequest parseFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static grpc.cache_client._DictionaryIncrementRequest 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.cache_client._DictionaryIncrementRequest parseDelimitedFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseDelimitedWithIOException(PARSER, input);
}
public static grpc.cache_client._DictionaryIncrementRequest 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.cache_client._DictionaryIncrementRequest parseFrom(
com.google.protobuf.CodedInputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static grpc.cache_client._DictionaryIncrementRequest 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.cache_client._DictionaryIncrementRequest 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 cache_client._DictionaryIncrementRequest}
*/
public static final class Builder extends
com.google.protobuf.GeneratedMessageV3.Builder implements
// @@protoc_insertion_point(builder_implements:cache_client._DictionaryIncrementRequest)
grpc.cache_client._DictionaryIncrementRequestOrBuilder {
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return grpc.cache_client.Cacheclient.internal_static_cache_client__DictionaryIncrementRequest_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return grpc.cache_client.Cacheclient.internal_static_cache_client__DictionaryIncrementRequest_fieldAccessorTable
.ensureFieldAccessorsInitialized(
grpc.cache_client._DictionaryIncrementRequest.class, grpc.cache_client._DictionaryIncrementRequest.Builder.class);
}
// Construct using grpc.cache_client._DictionaryIncrementRequest.newBuilder()
private Builder() {
}
private Builder(
com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
super(parent);
}
@java.lang.Override
public Builder clear() {
super.clear();
bitField0_ = 0;
dictionaryName_ = com.google.protobuf.ByteString.EMPTY;
field_ = com.google.protobuf.ByteString.EMPTY;
amount_ = 0L;
ttlMilliseconds_ = 0L;
refreshTtl_ = false;
return this;
}
@java.lang.Override
public com.google.protobuf.Descriptors.Descriptor
getDescriptorForType() {
return grpc.cache_client.Cacheclient.internal_static_cache_client__DictionaryIncrementRequest_descriptor;
}
@java.lang.Override
public grpc.cache_client._DictionaryIncrementRequest getDefaultInstanceForType() {
return grpc.cache_client._DictionaryIncrementRequest.getDefaultInstance();
}
@java.lang.Override
public grpc.cache_client._DictionaryIncrementRequest build() {
grpc.cache_client._DictionaryIncrementRequest result = buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
@java.lang.Override
public grpc.cache_client._DictionaryIncrementRequest buildPartial() {
grpc.cache_client._DictionaryIncrementRequest result = new grpc.cache_client._DictionaryIncrementRequest(this);
if (bitField0_ != 0) { buildPartial0(result); }
onBuilt();
return result;
}
private void buildPartial0(grpc.cache_client._DictionaryIncrementRequest result) {
int from_bitField0_ = bitField0_;
if (((from_bitField0_ & 0x00000001) != 0)) {
result.dictionaryName_ = dictionaryName_;
}
if (((from_bitField0_ & 0x00000002) != 0)) {
result.field_ = field_;
}
if (((from_bitField0_ & 0x00000004) != 0)) {
result.amount_ = amount_;
}
if (((from_bitField0_ & 0x00000008) != 0)) {
result.ttlMilliseconds_ = ttlMilliseconds_;
}
if (((from_bitField0_ & 0x00000010) != 0)) {
result.refreshTtl_ = refreshTtl_;
}
}
@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.cache_client._DictionaryIncrementRequest) {
return mergeFrom((grpc.cache_client._DictionaryIncrementRequest)other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(grpc.cache_client._DictionaryIncrementRequest other) {
if (other == grpc.cache_client._DictionaryIncrementRequest.getDefaultInstance()) return this;
if (other.getDictionaryName() != com.google.protobuf.ByteString.EMPTY) {
setDictionaryName(other.getDictionaryName());
}
if (other.getField() != com.google.protobuf.ByteString.EMPTY) {
setField(other.getField());
}
if (other.getAmount() != 0L) {
setAmount(other.getAmount());
}
if (other.getTtlMilliseconds() != 0L) {
setTtlMilliseconds(other.getTtlMilliseconds());
}
if (other.getRefreshTtl() != false) {
setRefreshTtl(other.getRefreshTtl());
}
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: {
dictionaryName_ = input.readBytes();
bitField0_ |= 0x00000001;
break;
} // case 10
case 18: {
field_ = input.readBytes();
bitField0_ |= 0x00000002;
break;
} // case 18
case 24: {
amount_ = input.readInt64();
bitField0_ |= 0x00000004;
break;
} // case 24
case 32: {
ttlMilliseconds_ = input.readUInt64();
bitField0_ |= 0x00000008;
break;
} // case 32
case 40: {
refreshTtl_ = input.readBool();
bitField0_ |= 0x00000010;
break;
} // case 40
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 com.google.protobuf.ByteString dictionaryName_ = com.google.protobuf.ByteString.EMPTY;
/**
* bytes dictionary_name = 1;
* @return The dictionaryName.
*/
@java.lang.Override
public com.google.protobuf.ByteString getDictionaryName() {
return dictionaryName_;
}
/**
* bytes dictionary_name = 1;
* @param value The dictionaryName to set.
* @return This builder for chaining.
*/
public Builder setDictionaryName(com.google.protobuf.ByteString value) {
if (value == null) { throw new NullPointerException(); }
dictionaryName_ = value;
bitField0_ |= 0x00000001;
onChanged();
return this;
}
/**
* bytes dictionary_name = 1;
* @return This builder for chaining.
*/
public Builder clearDictionaryName() {
bitField0_ = (bitField0_ & ~0x00000001);
dictionaryName_ = getDefaultInstance().getDictionaryName();
onChanged();
return this;
}
private com.google.protobuf.ByteString field_ = com.google.protobuf.ByteString.EMPTY;
/**
* bytes field = 2;
* @return The field.
*/
@java.lang.Override
public com.google.protobuf.ByteString getField() {
return field_;
}
/**
* bytes field = 2;
* @param value The field to set.
* @return This builder for chaining.
*/
public Builder setField(com.google.protobuf.ByteString value) {
if (value == null) { throw new NullPointerException(); }
field_ = value;
bitField0_ |= 0x00000002;
onChanged();
return this;
}
/**
* bytes field = 2;
* @return This builder for chaining.
*/
public Builder clearField() {
bitField0_ = (bitField0_ & ~0x00000002);
field_ = getDefaultInstance().getField();
onChanged();
return this;
}
private long amount_ ;
/**
* int64 amount = 3;
* @return The amount.
*/
@java.lang.Override
public long getAmount() {
return amount_;
}
/**
* int64 amount = 3;
* @param value The amount to set.
* @return This builder for chaining.
*/
public Builder setAmount(long value) {
amount_ = value;
bitField0_ |= 0x00000004;
onChanged();
return this;
}
/**
* int64 amount = 3;
* @return This builder for chaining.
*/
public Builder clearAmount() {
bitField0_ = (bitField0_ & ~0x00000004);
amount_ = 0L;
onChanged();
return this;
}
private long ttlMilliseconds_ ;
/**
* uint64 ttl_milliseconds = 4;
* @return The ttlMilliseconds.
*/
@java.lang.Override
public long getTtlMilliseconds() {
return ttlMilliseconds_;
}
/**
* uint64 ttl_milliseconds = 4;
* @param value The ttlMilliseconds to set.
* @return This builder for chaining.
*/
public Builder setTtlMilliseconds(long value) {
ttlMilliseconds_ = value;
bitField0_ |= 0x00000008;
onChanged();
return this;
}
/**
* uint64 ttl_milliseconds = 4;
* @return This builder for chaining.
*/
public Builder clearTtlMilliseconds() {
bitField0_ = (bitField0_ & ~0x00000008);
ttlMilliseconds_ = 0L;
onChanged();
return this;
}
private boolean refreshTtl_ ;
/**
* bool refresh_ttl = 5;
* @return The refreshTtl.
*/
@java.lang.Override
public boolean getRefreshTtl() {
return refreshTtl_;
}
/**
* bool refresh_ttl = 5;
* @param value The refreshTtl to set.
* @return This builder for chaining.
*/
public Builder setRefreshTtl(boolean value) {
refreshTtl_ = value;
bitField0_ |= 0x00000010;
onChanged();
return this;
}
/**
* bool refresh_ttl = 5;
* @return This builder for chaining.
*/
public Builder clearRefreshTtl() {
bitField0_ = (bitField0_ & ~0x00000010);
refreshTtl_ = false;
onChanged();
return this;
}
@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:cache_client._DictionaryIncrementRequest)
}
// @@protoc_insertion_point(class_scope:cache_client._DictionaryIncrementRequest)
private static final grpc.cache_client._DictionaryIncrementRequest DEFAULT_INSTANCE;
static {
DEFAULT_INSTANCE = new grpc.cache_client._DictionaryIncrementRequest();
}
public static grpc.cache_client._DictionaryIncrementRequest getDefaultInstance() {
return DEFAULT_INSTANCE;
}
private static final com.google.protobuf.Parser<_DictionaryIncrementRequest>
PARSER = new com.google.protobuf.AbstractParser<_DictionaryIncrementRequest>() {
@java.lang.Override
public _DictionaryIncrementRequest 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<_DictionaryIncrementRequest> parser() {
return PARSER;
}
@java.lang.Override
public com.google.protobuf.Parser<_DictionaryIncrementRequest> getParserForType() {
return PARSER;
}
@java.lang.Override
public grpc.cache_client._DictionaryIncrementRequest getDefaultInstanceForType() {
return DEFAULT_INSTANCE;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy