grpc.control_client._CacheLimits 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: controlclient.proto
package grpc.control_client;
/**
* Protobuf type {@code control_client._CacheLimits}
*/
public final class _CacheLimits extends
com.google.protobuf.GeneratedMessageV3 implements
// @@protoc_insertion_point(message_implements:control_client._CacheLimits)
_CacheLimitsOrBuilder {
private static final long serialVersionUID = 0L;
// Use _CacheLimits.newBuilder() to construct.
private _CacheLimits(com.google.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
}
private _CacheLimits() {
}
@java.lang.Override
@SuppressWarnings({"unused"})
protected java.lang.Object newInstance(
UnusedPrivateParameter unused) {
return new _CacheLimits();
}
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return grpc.control_client.Controlclient.internal_static_control_client__CacheLimits_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return grpc.control_client.Controlclient.internal_static_control_client__CacheLimits_fieldAccessorTable
.ensureFieldAccessorsInitialized(
grpc.control_client._CacheLimits.class, grpc.control_client._CacheLimits.Builder.class);
}
public static final int MAX_TRAFFIC_RATE_FIELD_NUMBER = 1;
private int maxTrafficRate_ = 0;
/**
*
* The amount of transactions per second that can be exercised
*
*
* uint32 max_traffic_rate = 1;
* @return The maxTrafficRate.
*/
@java.lang.Override
public int getMaxTrafficRate() {
return maxTrafficRate_;
}
public static final int MAX_THROUGHPUT_KBPS_FIELD_NUMBER = 2;
private int maxThroughputKbps_ = 0;
/**
*
* The amount of traffic per second that can be exercised in KiB
*
*
* uint32 max_throughput_kbps = 2;
* @return The maxThroughputKbps.
*/
@java.lang.Override
public int getMaxThroughputKbps() {
return maxThroughputKbps_;
}
public static final int MAX_ITEM_SIZE_KB_FIELD_NUMBER = 3;
private int maxItemSizeKb_ = 0;
/**
*
* The maximum size of a single item in KiB
*
*
* uint32 max_item_size_kb = 3;
* @return The maxItemSizeKb.
*/
@java.lang.Override
public int getMaxItemSizeKb() {
return maxItemSizeKb_;
}
public static final int MAX_TTL_SECONDS_FIELD_NUMBER = 4;
private long maxTtlSeconds_ = 0L;
/**
*
* The maximum TTL allowed for a single item, in seconds
*
*
* uint64 max_ttl_seconds = 4;
* @return The maxTtlSeconds.
*/
@java.lang.Override
public long getMaxTtlSeconds() {
return maxTtlSeconds_;
}
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 (maxTrafficRate_ != 0) {
output.writeUInt32(1, maxTrafficRate_);
}
if (maxThroughputKbps_ != 0) {
output.writeUInt32(2, maxThroughputKbps_);
}
if (maxItemSizeKb_ != 0) {
output.writeUInt32(3, maxItemSizeKb_);
}
if (maxTtlSeconds_ != 0L) {
output.writeUInt64(4, maxTtlSeconds_);
}
getUnknownFields().writeTo(output);
}
@java.lang.Override
public int getSerializedSize() {
int size = memoizedSize;
if (size != -1) return size;
size = 0;
if (maxTrafficRate_ != 0) {
size += com.google.protobuf.CodedOutputStream
.computeUInt32Size(1, maxTrafficRate_);
}
if (maxThroughputKbps_ != 0) {
size += com.google.protobuf.CodedOutputStream
.computeUInt32Size(2, maxThroughputKbps_);
}
if (maxItemSizeKb_ != 0) {
size += com.google.protobuf.CodedOutputStream
.computeUInt32Size(3, maxItemSizeKb_);
}
if (maxTtlSeconds_ != 0L) {
size += com.google.protobuf.CodedOutputStream
.computeUInt64Size(4, maxTtlSeconds_);
}
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.control_client._CacheLimits)) {
return super.equals(obj);
}
grpc.control_client._CacheLimits other = (grpc.control_client._CacheLimits) obj;
if (getMaxTrafficRate()
!= other.getMaxTrafficRate()) return false;
if (getMaxThroughputKbps()
!= other.getMaxThroughputKbps()) return false;
if (getMaxItemSizeKb()
!= other.getMaxItemSizeKb()) return false;
if (getMaxTtlSeconds()
!= other.getMaxTtlSeconds()) 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) + MAX_TRAFFIC_RATE_FIELD_NUMBER;
hash = (53 * hash) + getMaxTrafficRate();
hash = (37 * hash) + MAX_THROUGHPUT_KBPS_FIELD_NUMBER;
hash = (53 * hash) + getMaxThroughputKbps();
hash = (37 * hash) + MAX_ITEM_SIZE_KB_FIELD_NUMBER;
hash = (53 * hash) + getMaxItemSizeKb();
hash = (37 * hash) + MAX_TTL_SECONDS_FIELD_NUMBER;
hash = (53 * hash) + com.google.protobuf.Internal.hashLong(
getMaxTtlSeconds());
hash = (29 * hash) + getUnknownFields().hashCode();
memoizedHashCode = hash;
return hash;
}
public static grpc.control_client._CacheLimits parseFrom(
java.nio.ByteBuffer data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static grpc.control_client._CacheLimits parseFrom(
java.nio.ByteBuffer data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static grpc.control_client._CacheLimits parseFrom(
com.google.protobuf.ByteString data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static grpc.control_client._CacheLimits parseFrom(
com.google.protobuf.ByteString data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static grpc.control_client._CacheLimits parseFrom(byte[] data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static grpc.control_client._CacheLimits parseFrom(
byte[] data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static grpc.control_client._CacheLimits parseFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static grpc.control_client._CacheLimits 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.control_client._CacheLimits parseDelimitedFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseDelimitedWithIOException(PARSER, input);
}
public static grpc.control_client._CacheLimits 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.control_client._CacheLimits parseFrom(
com.google.protobuf.CodedInputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static grpc.control_client._CacheLimits 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.control_client._CacheLimits 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 control_client._CacheLimits}
*/
public static final class Builder extends
com.google.protobuf.GeneratedMessageV3.Builder implements
// @@protoc_insertion_point(builder_implements:control_client._CacheLimits)
grpc.control_client._CacheLimitsOrBuilder {
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return grpc.control_client.Controlclient.internal_static_control_client__CacheLimits_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return grpc.control_client.Controlclient.internal_static_control_client__CacheLimits_fieldAccessorTable
.ensureFieldAccessorsInitialized(
grpc.control_client._CacheLimits.class, grpc.control_client._CacheLimits.Builder.class);
}
// Construct using grpc.control_client._CacheLimits.newBuilder()
private Builder() {
}
private Builder(
com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
super(parent);
}
@java.lang.Override
public Builder clear() {
super.clear();
bitField0_ = 0;
maxTrafficRate_ = 0;
maxThroughputKbps_ = 0;
maxItemSizeKb_ = 0;
maxTtlSeconds_ = 0L;
return this;
}
@java.lang.Override
public com.google.protobuf.Descriptors.Descriptor
getDescriptorForType() {
return grpc.control_client.Controlclient.internal_static_control_client__CacheLimits_descriptor;
}
@java.lang.Override
public grpc.control_client._CacheLimits getDefaultInstanceForType() {
return grpc.control_client._CacheLimits.getDefaultInstance();
}
@java.lang.Override
public grpc.control_client._CacheLimits build() {
grpc.control_client._CacheLimits result = buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
@java.lang.Override
public grpc.control_client._CacheLimits buildPartial() {
grpc.control_client._CacheLimits result = new grpc.control_client._CacheLimits(this);
if (bitField0_ != 0) { buildPartial0(result); }
onBuilt();
return result;
}
private void buildPartial0(grpc.control_client._CacheLimits result) {
int from_bitField0_ = bitField0_;
if (((from_bitField0_ & 0x00000001) != 0)) {
result.maxTrafficRate_ = maxTrafficRate_;
}
if (((from_bitField0_ & 0x00000002) != 0)) {
result.maxThroughputKbps_ = maxThroughputKbps_;
}
if (((from_bitField0_ & 0x00000004) != 0)) {
result.maxItemSizeKb_ = maxItemSizeKb_;
}
if (((from_bitField0_ & 0x00000008) != 0)) {
result.maxTtlSeconds_ = maxTtlSeconds_;
}
}
@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.control_client._CacheLimits) {
return mergeFrom((grpc.control_client._CacheLimits)other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(grpc.control_client._CacheLimits other) {
if (other == grpc.control_client._CacheLimits.getDefaultInstance()) return this;
if (other.getMaxTrafficRate() != 0) {
setMaxTrafficRate(other.getMaxTrafficRate());
}
if (other.getMaxThroughputKbps() != 0) {
setMaxThroughputKbps(other.getMaxThroughputKbps());
}
if (other.getMaxItemSizeKb() != 0) {
setMaxItemSizeKb(other.getMaxItemSizeKb());
}
if (other.getMaxTtlSeconds() != 0L) {
setMaxTtlSeconds(other.getMaxTtlSeconds());
}
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 8: {
maxTrafficRate_ = input.readUInt32();
bitField0_ |= 0x00000001;
break;
} // case 8
case 16: {
maxThroughputKbps_ = input.readUInt32();
bitField0_ |= 0x00000002;
break;
} // case 16
case 24: {
maxItemSizeKb_ = input.readUInt32();
bitField0_ |= 0x00000004;
break;
} // case 24
case 32: {
maxTtlSeconds_ = input.readUInt64();
bitField0_ |= 0x00000008;
break;
} // case 32
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 int maxTrafficRate_ ;
/**
*
* The amount of transactions per second that can be exercised
*
*
* uint32 max_traffic_rate = 1;
* @return The maxTrafficRate.
*/
@java.lang.Override
public int getMaxTrafficRate() {
return maxTrafficRate_;
}
/**
*
* The amount of transactions per second that can be exercised
*
*
* uint32 max_traffic_rate = 1;
* @param value The maxTrafficRate to set.
* @return This builder for chaining.
*/
public Builder setMaxTrafficRate(int value) {
maxTrafficRate_ = value;
bitField0_ |= 0x00000001;
onChanged();
return this;
}
/**
*
* The amount of transactions per second that can be exercised
*
*
* uint32 max_traffic_rate = 1;
* @return This builder for chaining.
*/
public Builder clearMaxTrafficRate() {
bitField0_ = (bitField0_ & ~0x00000001);
maxTrafficRate_ = 0;
onChanged();
return this;
}
private int maxThroughputKbps_ ;
/**
*
* The amount of traffic per second that can be exercised in KiB
*
*
* uint32 max_throughput_kbps = 2;
* @return The maxThroughputKbps.
*/
@java.lang.Override
public int getMaxThroughputKbps() {
return maxThroughputKbps_;
}
/**
*
* The amount of traffic per second that can be exercised in KiB
*
*
* uint32 max_throughput_kbps = 2;
* @param value The maxThroughputKbps to set.
* @return This builder for chaining.
*/
public Builder setMaxThroughputKbps(int value) {
maxThroughputKbps_ = value;
bitField0_ |= 0x00000002;
onChanged();
return this;
}
/**
*
* The amount of traffic per second that can be exercised in KiB
*
*
* uint32 max_throughput_kbps = 2;
* @return This builder for chaining.
*/
public Builder clearMaxThroughputKbps() {
bitField0_ = (bitField0_ & ~0x00000002);
maxThroughputKbps_ = 0;
onChanged();
return this;
}
private int maxItemSizeKb_ ;
/**
*
* The maximum size of a single item in KiB
*
*
* uint32 max_item_size_kb = 3;
* @return The maxItemSizeKb.
*/
@java.lang.Override
public int getMaxItemSizeKb() {
return maxItemSizeKb_;
}
/**
*
* The maximum size of a single item in KiB
*
*
* uint32 max_item_size_kb = 3;
* @param value The maxItemSizeKb to set.
* @return This builder for chaining.
*/
public Builder setMaxItemSizeKb(int value) {
maxItemSizeKb_ = value;
bitField0_ |= 0x00000004;
onChanged();
return this;
}
/**
*
* The maximum size of a single item in KiB
*
*
* uint32 max_item_size_kb = 3;
* @return This builder for chaining.
*/
public Builder clearMaxItemSizeKb() {
bitField0_ = (bitField0_ & ~0x00000004);
maxItemSizeKb_ = 0;
onChanged();
return this;
}
private long maxTtlSeconds_ ;
/**
*
* The maximum TTL allowed for a single item, in seconds
*
*
* uint64 max_ttl_seconds = 4;
* @return The maxTtlSeconds.
*/
@java.lang.Override
public long getMaxTtlSeconds() {
return maxTtlSeconds_;
}
/**
*
* The maximum TTL allowed for a single item, in seconds
*
*
* uint64 max_ttl_seconds = 4;
* @param value The maxTtlSeconds to set.
* @return This builder for chaining.
*/
public Builder setMaxTtlSeconds(long value) {
maxTtlSeconds_ = value;
bitField0_ |= 0x00000008;
onChanged();
return this;
}
/**
*
* The maximum TTL allowed for a single item, in seconds
*
*
* uint64 max_ttl_seconds = 4;
* @return This builder for chaining.
*/
public Builder clearMaxTtlSeconds() {
bitField0_ = (bitField0_ & ~0x00000008);
maxTtlSeconds_ = 0L;
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:control_client._CacheLimits)
}
// @@protoc_insertion_point(class_scope:control_client._CacheLimits)
private static final grpc.control_client._CacheLimits DEFAULT_INSTANCE;
static {
DEFAULT_INSTANCE = new grpc.control_client._CacheLimits();
}
public static grpc.control_client._CacheLimits getDefaultInstance() {
return DEFAULT_INSTANCE;
}
private static final com.google.protobuf.Parser<_CacheLimits>
PARSER = new com.google.protobuf.AbstractParser<_CacheLimits>() {
@java.lang.Override
public _CacheLimits 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<_CacheLimits> parser() {
return PARSER;
}
@java.lang.Override
public com.google.protobuf.Parser<_CacheLimits> getParserForType() {
return PARSER;
}
@java.lang.Override
public grpc.control_client._CacheLimits getDefaultInstanceForType() {
return DEFAULT_INSTANCE;
}
}