
io.provenance.name.v1.Params Maven / Gradle / Ivy
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: provenance/name/v1/name.proto
package io.provenance.name.v1;
/**
*
* Params defines the set of params for the name module.
*
*
* Protobuf type {@code provenance.name.v1.Params}
*/
public final class Params extends
com.google.protobuf.GeneratedMessageV3 implements
// @@protoc_insertion_point(message_implements:provenance.name.v1.Params)
ParamsOrBuilder {
private static final long serialVersionUID = 0L;
// Use Params.newBuilder() to construct.
private Params(com.google.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
}
private Params() {
maxSegmentLength_ = 0;
minSegmentLength_ = 0;
maxNameLevels_ = 0;
allowUnrestrictedNames_ = false;
}
@java.lang.Override
public final com.google.protobuf.UnknownFieldSet
getUnknownFields() {
return this.unknownFields;
}
private Params(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
this();
if (extensionRegistry == null) {
throw new java.lang.NullPointerException();
}
int mutable_bitField0_ = 0;
com.google.protobuf.UnknownFieldSet.Builder unknownFields =
com.google.protobuf.UnknownFieldSet.newBuilder();
try {
boolean done = false;
while (!done) {
int tag = input.readTag();
switch (tag) {
case 0:
done = true;
break;
case 8: {
maxSegmentLength_ = input.readUInt32();
break;
}
case 16: {
minSegmentLength_ = input.readUInt32();
break;
}
case 24: {
maxNameLevels_ = input.readUInt32();
break;
}
case 32: {
allowUnrestrictedNames_ = input.readBool();
break;
}
default: {
if (!parseUnknownFieldProto3(
input, unknownFields, extensionRegistry, tag)) {
done = true;
}
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 {
this.unknownFields = unknownFields.build();
makeExtensionsImmutable();
}
}
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return io.provenance.name.v1.Name.internal_static_provenance_name_v1_Params_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return io.provenance.name.v1.Name.internal_static_provenance_name_v1_Params_fieldAccessorTable
.ensureFieldAccessorsInitialized(
io.provenance.name.v1.Params.class, io.provenance.name.v1.Params.Builder.class);
}
public static final int MAX_SEGMENT_LENGTH_FIELD_NUMBER = 1;
private int maxSegmentLength_;
/**
*
* maximum length of name segment to allow
*
*
* uint32 max_segment_length = 1;
*/
public int getMaxSegmentLength() {
return maxSegmentLength_;
}
public static final int MIN_SEGMENT_LENGTH_FIELD_NUMBER = 2;
private int minSegmentLength_;
/**
*
* minimum length of name segment to allow
*
*
* uint32 min_segment_length = 2;
*/
public int getMinSegmentLength() {
return minSegmentLength_;
}
public static final int MAX_NAME_LEVELS_FIELD_NUMBER = 3;
private int maxNameLevels_;
/**
*
* maximum number of name segments to allow. Example: `foo.bar.baz` would be 3
*
*
* uint32 max_name_levels = 3;
*/
public int getMaxNameLevels() {
return maxNameLevels_;
}
public static final int ALLOW_UNRESTRICTED_NAMES_FIELD_NUMBER = 4;
private boolean allowUnrestrictedNames_;
/**
*
* determines if unrestricted name keys are allowed or not
*
*
* bool allow_unrestricted_names = 4;
*/
public boolean getAllowUnrestrictedNames() {
return allowUnrestrictedNames_;
}
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 (maxSegmentLength_ != 0) {
output.writeUInt32(1, maxSegmentLength_);
}
if (minSegmentLength_ != 0) {
output.writeUInt32(2, minSegmentLength_);
}
if (maxNameLevels_ != 0) {
output.writeUInt32(3, maxNameLevels_);
}
if (allowUnrestrictedNames_ != false) {
output.writeBool(4, allowUnrestrictedNames_);
}
unknownFields.writeTo(output);
}
@java.lang.Override
public int getSerializedSize() {
int size = memoizedSize;
if (size != -1) return size;
size = 0;
if (maxSegmentLength_ != 0) {
size += com.google.protobuf.CodedOutputStream
.computeUInt32Size(1, maxSegmentLength_);
}
if (minSegmentLength_ != 0) {
size += com.google.protobuf.CodedOutputStream
.computeUInt32Size(2, minSegmentLength_);
}
if (maxNameLevels_ != 0) {
size += com.google.protobuf.CodedOutputStream
.computeUInt32Size(3, maxNameLevels_);
}
if (allowUnrestrictedNames_ != false) {
size += com.google.protobuf.CodedOutputStream
.computeBoolSize(4, allowUnrestrictedNames_);
}
size += unknownFields.getSerializedSize();
memoizedSize = size;
return size;
}
@java.lang.Override
public boolean equals(final java.lang.Object obj) {
if (obj == this) {
return true;
}
if (!(obj instanceof io.provenance.name.v1.Params)) {
return super.equals(obj);
}
io.provenance.name.v1.Params other = (io.provenance.name.v1.Params) obj;
boolean result = true;
result = result && (getMaxSegmentLength()
== other.getMaxSegmentLength());
result = result && (getMinSegmentLength()
== other.getMinSegmentLength());
result = result && (getMaxNameLevels()
== other.getMaxNameLevels());
result = result && (getAllowUnrestrictedNames()
== other.getAllowUnrestrictedNames());
result = result && unknownFields.equals(other.unknownFields);
return result;
}
@java.lang.Override
public int hashCode() {
if (memoizedHashCode != 0) {
return memoizedHashCode;
}
int hash = 41;
hash = (19 * hash) + getDescriptor().hashCode();
hash = (37 * hash) + MAX_SEGMENT_LENGTH_FIELD_NUMBER;
hash = (53 * hash) + getMaxSegmentLength();
hash = (37 * hash) + MIN_SEGMENT_LENGTH_FIELD_NUMBER;
hash = (53 * hash) + getMinSegmentLength();
hash = (37 * hash) + MAX_NAME_LEVELS_FIELD_NUMBER;
hash = (53 * hash) + getMaxNameLevels();
hash = (37 * hash) + ALLOW_UNRESTRICTED_NAMES_FIELD_NUMBER;
hash = (53 * hash) + com.google.protobuf.Internal.hashBoolean(
getAllowUnrestrictedNames());
hash = (29 * hash) + unknownFields.hashCode();
memoizedHashCode = hash;
return hash;
}
public static io.provenance.name.v1.Params parseFrom(
java.nio.ByteBuffer data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static io.provenance.name.v1.Params parseFrom(
java.nio.ByteBuffer data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static io.provenance.name.v1.Params parseFrom(
com.google.protobuf.ByteString data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static io.provenance.name.v1.Params parseFrom(
com.google.protobuf.ByteString data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static io.provenance.name.v1.Params parseFrom(byte[] data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static io.provenance.name.v1.Params parseFrom(
byte[] data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static io.provenance.name.v1.Params parseFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static io.provenance.name.v1.Params 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 io.provenance.name.v1.Params parseDelimitedFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseDelimitedWithIOException(PARSER, input);
}
public static io.provenance.name.v1.Params 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 io.provenance.name.v1.Params parseFrom(
com.google.protobuf.CodedInputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static io.provenance.name.v1.Params 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(io.provenance.name.v1.Params 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;
}
/**
*
* Params defines the set of params for the name module.
*
*
* Protobuf type {@code provenance.name.v1.Params}
*/
public static final class Builder extends
com.google.protobuf.GeneratedMessageV3.Builder implements
// @@protoc_insertion_point(builder_implements:provenance.name.v1.Params)
io.provenance.name.v1.ParamsOrBuilder {
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return io.provenance.name.v1.Name.internal_static_provenance_name_v1_Params_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return io.provenance.name.v1.Name.internal_static_provenance_name_v1_Params_fieldAccessorTable
.ensureFieldAccessorsInitialized(
io.provenance.name.v1.Params.class, io.provenance.name.v1.Params.Builder.class);
}
// Construct using io.provenance.name.v1.Params.newBuilder()
private Builder() {
maybeForceBuilderInitialization();
}
private Builder(
com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
super(parent);
maybeForceBuilderInitialization();
}
private void maybeForceBuilderInitialization() {
if (com.google.protobuf.GeneratedMessageV3
.alwaysUseFieldBuilders) {
}
}
@java.lang.Override
public Builder clear() {
super.clear();
maxSegmentLength_ = 0;
minSegmentLength_ = 0;
maxNameLevels_ = 0;
allowUnrestrictedNames_ = false;
return this;
}
@java.lang.Override
public com.google.protobuf.Descriptors.Descriptor
getDescriptorForType() {
return io.provenance.name.v1.Name.internal_static_provenance_name_v1_Params_descriptor;
}
@java.lang.Override
public io.provenance.name.v1.Params getDefaultInstanceForType() {
return io.provenance.name.v1.Params.getDefaultInstance();
}
@java.lang.Override
public io.provenance.name.v1.Params build() {
io.provenance.name.v1.Params result = buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
@java.lang.Override
public io.provenance.name.v1.Params buildPartial() {
io.provenance.name.v1.Params result = new io.provenance.name.v1.Params(this);
result.maxSegmentLength_ = maxSegmentLength_;
result.minSegmentLength_ = minSegmentLength_;
result.maxNameLevels_ = maxNameLevels_;
result.allowUnrestrictedNames_ = allowUnrestrictedNames_;
onBuilt();
return result;
}
@java.lang.Override
public Builder clone() {
return (Builder) super.clone();
}
@java.lang.Override
public Builder setField(
com.google.protobuf.Descriptors.FieldDescriptor field,
java.lang.Object value) {
return (Builder) super.setField(field, value);
}
@java.lang.Override
public Builder clearField(
com.google.protobuf.Descriptors.FieldDescriptor field) {
return (Builder) super.clearField(field);
}
@java.lang.Override
public Builder clearOneof(
com.google.protobuf.Descriptors.OneofDescriptor oneof) {
return (Builder) super.clearOneof(oneof);
}
@java.lang.Override
public Builder setRepeatedField(
com.google.protobuf.Descriptors.FieldDescriptor field,
int index, java.lang.Object value) {
return (Builder) super.setRepeatedField(field, index, value);
}
@java.lang.Override
public Builder addRepeatedField(
com.google.protobuf.Descriptors.FieldDescriptor field,
java.lang.Object value) {
return (Builder) super.addRepeatedField(field, value);
}
@java.lang.Override
public Builder mergeFrom(com.google.protobuf.Message other) {
if (other instanceof io.provenance.name.v1.Params) {
return mergeFrom((io.provenance.name.v1.Params)other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(io.provenance.name.v1.Params other) {
if (other == io.provenance.name.v1.Params.getDefaultInstance()) return this;
if (other.getMaxSegmentLength() != 0) {
setMaxSegmentLength(other.getMaxSegmentLength());
}
if (other.getMinSegmentLength() != 0) {
setMinSegmentLength(other.getMinSegmentLength());
}
if (other.getMaxNameLevels() != 0) {
setMaxNameLevels(other.getMaxNameLevels());
}
if (other.getAllowUnrestrictedNames() != false) {
setAllowUnrestrictedNames(other.getAllowUnrestrictedNames());
}
this.mergeUnknownFields(other.unknownFields);
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 {
io.provenance.name.v1.Params parsedMessage = null;
try {
parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry);
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
parsedMessage = (io.provenance.name.v1.Params) e.getUnfinishedMessage();
throw e.unwrapIOException();
} finally {
if (parsedMessage != null) {
mergeFrom(parsedMessage);
}
}
return this;
}
private int maxSegmentLength_ ;
/**
*
* maximum length of name segment to allow
*
*
* uint32 max_segment_length = 1;
*/
public int getMaxSegmentLength() {
return maxSegmentLength_;
}
/**
*
* maximum length of name segment to allow
*
*
* uint32 max_segment_length = 1;
*/
public Builder setMaxSegmentLength(int value) {
maxSegmentLength_ = value;
onChanged();
return this;
}
/**
*
* maximum length of name segment to allow
*
*
* uint32 max_segment_length = 1;
*/
public Builder clearMaxSegmentLength() {
maxSegmentLength_ = 0;
onChanged();
return this;
}
private int minSegmentLength_ ;
/**
*
* minimum length of name segment to allow
*
*
* uint32 min_segment_length = 2;
*/
public int getMinSegmentLength() {
return minSegmentLength_;
}
/**
*
* minimum length of name segment to allow
*
*
* uint32 min_segment_length = 2;
*/
public Builder setMinSegmentLength(int value) {
minSegmentLength_ = value;
onChanged();
return this;
}
/**
*
* minimum length of name segment to allow
*
*
* uint32 min_segment_length = 2;
*/
public Builder clearMinSegmentLength() {
minSegmentLength_ = 0;
onChanged();
return this;
}
private int maxNameLevels_ ;
/**
*
* maximum number of name segments to allow. Example: `foo.bar.baz` would be 3
*
*
* uint32 max_name_levels = 3;
*/
public int getMaxNameLevels() {
return maxNameLevels_;
}
/**
*
* maximum number of name segments to allow. Example: `foo.bar.baz` would be 3
*
*
* uint32 max_name_levels = 3;
*/
public Builder setMaxNameLevels(int value) {
maxNameLevels_ = value;
onChanged();
return this;
}
/**
*
* maximum number of name segments to allow. Example: `foo.bar.baz` would be 3
*
*
* uint32 max_name_levels = 3;
*/
public Builder clearMaxNameLevels() {
maxNameLevels_ = 0;
onChanged();
return this;
}
private boolean allowUnrestrictedNames_ ;
/**
*
* determines if unrestricted name keys are allowed or not
*
*
* bool allow_unrestricted_names = 4;
*/
public boolean getAllowUnrestrictedNames() {
return allowUnrestrictedNames_;
}
/**
*
* determines if unrestricted name keys are allowed or not
*
*
* bool allow_unrestricted_names = 4;
*/
public Builder setAllowUnrestrictedNames(boolean value) {
allowUnrestrictedNames_ = value;
onChanged();
return this;
}
/**
*
* determines if unrestricted name keys are allowed or not
*
*
* bool allow_unrestricted_names = 4;
*/
public Builder clearAllowUnrestrictedNames() {
allowUnrestrictedNames_ = false;
onChanged();
return this;
}
@java.lang.Override
public final Builder setUnknownFields(
final com.google.protobuf.UnknownFieldSet unknownFields) {
return super.setUnknownFieldsProto3(unknownFields);
}
@java.lang.Override
public final Builder mergeUnknownFields(
final com.google.protobuf.UnknownFieldSet unknownFields) {
return super.mergeUnknownFields(unknownFields);
}
// @@protoc_insertion_point(builder_scope:provenance.name.v1.Params)
}
// @@protoc_insertion_point(class_scope:provenance.name.v1.Params)
private static final io.provenance.name.v1.Params DEFAULT_INSTANCE;
static {
DEFAULT_INSTANCE = new io.provenance.name.v1.Params();
}
public static io.provenance.name.v1.Params getDefaultInstance() {
return DEFAULT_INSTANCE;
}
private static final com.google.protobuf.Parser
PARSER = new com.google.protobuf.AbstractParser() {
@java.lang.Override
public Params parsePartialFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return new Params(input, extensionRegistry);
}
};
public static com.google.protobuf.Parser parser() {
return PARSER;
}
@java.lang.Override
public com.google.protobuf.Parser getParserForType() {
return PARSER;
}
@java.lang.Override
public io.provenance.name.v1.Params getDefaultInstanceForType() {
return DEFAULT_INSTANCE;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy