Please wait. This can take some minutes ...
Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance.
Project price only 1 $
You can buy this project and download/modify it how often you want.
io.provenance.attribute.v1.QueryAttributeResponse Maven / Gradle / Ivy
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: provenance/attribute/v1/query.proto
package io.provenance.attribute.v1;
/**
*
* QueryAttributeResponse is the response type for the Query/Attribute method.
*
*
* Protobuf type {@code provenance.attribute.v1.QueryAttributeResponse}
*/
public final class QueryAttributeResponse extends
com.google.protobuf.GeneratedMessageV3 implements
// @@protoc_insertion_point(message_implements:provenance.attribute.v1.QueryAttributeResponse)
QueryAttributeResponseOrBuilder {
private static final long serialVersionUID = 0L;
// Use QueryAttributeResponse.newBuilder() to construct.
private QueryAttributeResponse(com.google.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
}
private QueryAttributeResponse() {
account_ = "";
attributes_ = java.util.Collections.emptyList();
}
@java.lang.Override
public final com.google.protobuf.UnknownFieldSet
getUnknownFields() {
return this.unknownFields;
}
private QueryAttributeResponse(
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 10: {
java.lang.String s = input.readStringRequireUtf8();
account_ = s;
break;
}
case 18: {
if (!((mutable_bitField0_ & 0x00000002) == 0x00000002)) {
attributes_ = new java.util.ArrayList();
mutable_bitField0_ |= 0x00000002;
}
attributes_.add(
input.readMessage(io.provenance.attribute.v1.Attribute.parser(), extensionRegistry));
break;
}
case 26: {
cosmos.base.query.v1beta1.Pagination.PageResponse.Builder subBuilder = null;
if (pagination_ != null) {
subBuilder = pagination_.toBuilder();
}
pagination_ = input.readMessage(cosmos.base.query.v1beta1.Pagination.PageResponse.parser(), extensionRegistry);
if (subBuilder != null) {
subBuilder.mergeFrom(pagination_);
pagination_ = subBuilder.buildPartial();
}
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 {
if (((mutable_bitField0_ & 0x00000002) == 0x00000002)) {
attributes_ = java.util.Collections.unmodifiableList(attributes_);
}
this.unknownFields = unknownFields.build();
makeExtensionsImmutable();
}
}
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return io.provenance.attribute.v1.QueryOuterClass.internal_static_provenance_attribute_v1_QueryAttributeResponse_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return io.provenance.attribute.v1.QueryOuterClass.internal_static_provenance_attribute_v1_QueryAttributeResponse_fieldAccessorTable
.ensureFieldAccessorsInitialized(
io.provenance.attribute.v1.QueryAttributeResponse.class, io.provenance.attribute.v1.QueryAttributeResponse.Builder.class);
}
private int bitField0_;
public static final int ACCOUNT_FIELD_NUMBER = 1;
private volatile java.lang.Object account_;
/**
*
* a string containing the address of the account the attributes are assigned to.
*
*
* string account = 1;
*/
public java.lang.String getAccount() {
java.lang.Object ref = account_;
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();
account_ = s;
return s;
}
}
/**
*
* a string containing the address of the account the attributes are assigned to.
*
*
* string account = 1;
*/
public com.google.protobuf.ByteString
getAccountBytes() {
java.lang.Object ref = account_;
if (ref instanceof java.lang.String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
account_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
public static final int ATTRIBUTES_FIELD_NUMBER = 2;
private java.util.List attributes_;
/**
*
* a list of attribute values
*
*
* repeated .provenance.attribute.v1.Attribute attributes = 2 [(.gogoproto.nullable) = false];
*/
public java.util.List getAttributesList() {
return attributes_;
}
/**
*
* a list of attribute values
*
*
* repeated .provenance.attribute.v1.Attribute attributes = 2 [(.gogoproto.nullable) = false];
*/
public java.util.List extends io.provenance.attribute.v1.AttributeOrBuilder>
getAttributesOrBuilderList() {
return attributes_;
}
/**
*
* a list of attribute values
*
*
* repeated .provenance.attribute.v1.Attribute attributes = 2 [(.gogoproto.nullable) = false];
*/
public int getAttributesCount() {
return attributes_.size();
}
/**
*
* a list of attribute values
*
*
* repeated .provenance.attribute.v1.Attribute attributes = 2 [(.gogoproto.nullable) = false];
*/
public io.provenance.attribute.v1.Attribute getAttributes(int index) {
return attributes_.get(index);
}
/**
*
* a list of attribute values
*
*
* repeated .provenance.attribute.v1.Attribute attributes = 2 [(.gogoproto.nullable) = false];
*/
public io.provenance.attribute.v1.AttributeOrBuilder getAttributesOrBuilder(
int index) {
return attributes_.get(index);
}
public static final int PAGINATION_FIELD_NUMBER = 3;
private cosmos.base.query.v1beta1.Pagination.PageResponse pagination_;
/**
*
* pagination defines an optional pagination for the request.
*
*
* .cosmos.base.query.v1beta1.PageResponse pagination = 3;
*/
public boolean hasPagination() {
return pagination_ != null;
}
/**
*
* pagination defines an optional pagination for the request.
*
*
* .cosmos.base.query.v1beta1.PageResponse pagination = 3;
*/
public cosmos.base.query.v1beta1.Pagination.PageResponse getPagination() {
return pagination_ == null ? cosmos.base.query.v1beta1.Pagination.PageResponse.getDefaultInstance() : pagination_;
}
/**
*
* pagination defines an optional pagination for the request.
*
*
* .cosmos.base.query.v1beta1.PageResponse pagination = 3;
*/
public cosmos.base.query.v1beta1.Pagination.PageResponseOrBuilder getPaginationOrBuilder() {
return getPagination();
}
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 (!getAccountBytes().isEmpty()) {
com.google.protobuf.GeneratedMessageV3.writeString(output, 1, account_);
}
for (int i = 0; i < attributes_.size(); i++) {
output.writeMessage(2, attributes_.get(i));
}
if (pagination_ != null) {
output.writeMessage(3, getPagination());
}
unknownFields.writeTo(output);
}
@java.lang.Override
public int getSerializedSize() {
int size = memoizedSize;
if (size != -1) return size;
size = 0;
if (!getAccountBytes().isEmpty()) {
size += com.google.protobuf.GeneratedMessageV3.computeStringSize(1, account_);
}
for (int i = 0; i < attributes_.size(); i++) {
size += com.google.protobuf.CodedOutputStream
.computeMessageSize(2, attributes_.get(i));
}
if (pagination_ != null) {
size += com.google.protobuf.CodedOutputStream
.computeMessageSize(3, getPagination());
}
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.attribute.v1.QueryAttributeResponse)) {
return super.equals(obj);
}
io.provenance.attribute.v1.QueryAttributeResponse other = (io.provenance.attribute.v1.QueryAttributeResponse) obj;
boolean result = true;
result = result && getAccount()
.equals(other.getAccount());
result = result && getAttributesList()
.equals(other.getAttributesList());
result = result && (hasPagination() == other.hasPagination());
if (hasPagination()) {
result = result && getPagination()
.equals(other.getPagination());
}
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) + ACCOUNT_FIELD_NUMBER;
hash = (53 * hash) + getAccount().hashCode();
if (getAttributesCount() > 0) {
hash = (37 * hash) + ATTRIBUTES_FIELD_NUMBER;
hash = (53 * hash) + getAttributesList().hashCode();
}
if (hasPagination()) {
hash = (37 * hash) + PAGINATION_FIELD_NUMBER;
hash = (53 * hash) + getPagination().hashCode();
}
hash = (29 * hash) + unknownFields.hashCode();
memoizedHashCode = hash;
return hash;
}
public static io.provenance.attribute.v1.QueryAttributeResponse parseFrom(
java.nio.ByteBuffer data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static io.provenance.attribute.v1.QueryAttributeResponse parseFrom(
java.nio.ByteBuffer data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static io.provenance.attribute.v1.QueryAttributeResponse parseFrom(
com.google.protobuf.ByteString data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static io.provenance.attribute.v1.QueryAttributeResponse 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.attribute.v1.QueryAttributeResponse parseFrom(byte[] data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static io.provenance.attribute.v1.QueryAttributeResponse parseFrom(
byte[] data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static io.provenance.attribute.v1.QueryAttributeResponse parseFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static io.provenance.attribute.v1.QueryAttributeResponse 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.attribute.v1.QueryAttributeResponse parseDelimitedFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseDelimitedWithIOException(PARSER, input);
}
public static io.provenance.attribute.v1.QueryAttributeResponse 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.attribute.v1.QueryAttributeResponse parseFrom(
com.google.protobuf.CodedInputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static io.provenance.attribute.v1.QueryAttributeResponse 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.attribute.v1.QueryAttributeResponse 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;
}
/**
*
* QueryAttributeResponse is the response type for the Query/Attribute method.
*
*
* Protobuf type {@code provenance.attribute.v1.QueryAttributeResponse}
*/
public static final class Builder extends
com.google.protobuf.GeneratedMessageV3.Builder implements
// @@protoc_insertion_point(builder_implements:provenance.attribute.v1.QueryAttributeResponse)
io.provenance.attribute.v1.QueryAttributeResponseOrBuilder {
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return io.provenance.attribute.v1.QueryOuterClass.internal_static_provenance_attribute_v1_QueryAttributeResponse_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return io.provenance.attribute.v1.QueryOuterClass.internal_static_provenance_attribute_v1_QueryAttributeResponse_fieldAccessorTable
.ensureFieldAccessorsInitialized(
io.provenance.attribute.v1.QueryAttributeResponse.class, io.provenance.attribute.v1.QueryAttributeResponse.Builder.class);
}
// Construct using io.provenance.attribute.v1.QueryAttributeResponse.newBuilder()
private Builder() {
maybeForceBuilderInitialization();
}
private Builder(
com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
super(parent);
maybeForceBuilderInitialization();
}
private void maybeForceBuilderInitialization() {
if (com.google.protobuf.GeneratedMessageV3
.alwaysUseFieldBuilders) {
getAttributesFieldBuilder();
}
}
@java.lang.Override
public Builder clear() {
super.clear();
account_ = "";
if (attributesBuilder_ == null) {
attributes_ = java.util.Collections.emptyList();
bitField0_ = (bitField0_ & ~0x00000002);
} else {
attributesBuilder_.clear();
}
if (paginationBuilder_ == null) {
pagination_ = null;
} else {
pagination_ = null;
paginationBuilder_ = null;
}
return this;
}
@java.lang.Override
public com.google.protobuf.Descriptors.Descriptor
getDescriptorForType() {
return io.provenance.attribute.v1.QueryOuterClass.internal_static_provenance_attribute_v1_QueryAttributeResponse_descriptor;
}
@java.lang.Override
public io.provenance.attribute.v1.QueryAttributeResponse getDefaultInstanceForType() {
return io.provenance.attribute.v1.QueryAttributeResponse.getDefaultInstance();
}
@java.lang.Override
public io.provenance.attribute.v1.QueryAttributeResponse build() {
io.provenance.attribute.v1.QueryAttributeResponse result = buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
@java.lang.Override
public io.provenance.attribute.v1.QueryAttributeResponse buildPartial() {
io.provenance.attribute.v1.QueryAttributeResponse result = new io.provenance.attribute.v1.QueryAttributeResponse(this);
int from_bitField0_ = bitField0_;
int to_bitField0_ = 0;
result.account_ = account_;
if (attributesBuilder_ == null) {
if (((bitField0_ & 0x00000002) == 0x00000002)) {
attributes_ = java.util.Collections.unmodifiableList(attributes_);
bitField0_ = (bitField0_ & ~0x00000002);
}
result.attributes_ = attributes_;
} else {
result.attributes_ = attributesBuilder_.build();
}
if (paginationBuilder_ == null) {
result.pagination_ = pagination_;
} else {
result.pagination_ = paginationBuilder_.build();
}
result.bitField0_ = to_bitField0_;
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.attribute.v1.QueryAttributeResponse) {
return mergeFrom((io.provenance.attribute.v1.QueryAttributeResponse)other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(io.provenance.attribute.v1.QueryAttributeResponse other) {
if (other == io.provenance.attribute.v1.QueryAttributeResponse.getDefaultInstance()) return this;
if (!other.getAccount().isEmpty()) {
account_ = other.account_;
onChanged();
}
if (attributesBuilder_ == null) {
if (!other.attributes_.isEmpty()) {
if (attributes_.isEmpty()) {
attributes_ = other.attributes_;
bitField0_ = (bitField0_ & ~0x00000002);
} else {
ensureAttributesIsMutable();
attributes_.addAll(other.attributes_);
}
onChanged();
}
} else {
if (!other.attributes_.isEmpty()) {
if (attributesBuilder_.isEmpty()) {
attributesBuilder_.dispose();
attributesBuilder_ = null;
attributes_ = other.attributes_;
bitField0_ = (bitField0_ & ~0x00000002);
attributesBuilder_ =
com.google.protobuf.GeneratedMessageV3.alwaysUseFieldBuilders ?
getAttributesFieldBuilder() : null;
} else {
attributesBuilder_.addAllMessages(other.attributes_);
}
}
}
if (other.hasPagination()) {
mergePagination(other.getPagination());
}
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.attribute.v1.QueryAttributeResponse parsedMessage = null;
try {
parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry);
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
parsedMessage = (io.provenance.attribute.v1.QueryAttributeResponse) e.getUnfinishedMessage();
throw e.unwrapIOException();
} finally {
if (parsedMessage != null) {
mergeFrom(parsedMessage);
}
}
return this;
}
private int bitField0_;
private java.lang.Object account_ = "";
/**
*
* a string containing the address of the account the attributes are assigned to.
*
*
* string account = 1;
*/
public java.lang.String getAccount() {
java.lang.Object ref = account_;
if (!(ref instanceof java.lang.String)) {
com.google.protobuf.ByteString bs =
(com.google.protobuf.ByteString) ref;
java.lang.String s = bs.toStringUtf8();
account_ = s;
return s;
} else {
return (java.lang.String) ref;
}
}
/**
*
* a string containing the address of the account the attributes are assigned to.
*
*
* string account = 1;
*/
public com.google.protobuf.ByteString
getAccountBytes() {
java.lang.Object ref = account_;
if (ref instanceof String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
account_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
/**
*
* a string containing the address of the account the attributes are assigned to.
*
*
* string account = 1;
*/
public Builder setAccount(
java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
account_ = value;
onChanged();
return this;
}
/**
*
* a string containing the address of the account the attributes are assigned to.
*
*
* string account = 1;
*/
public Builder clearAccount() {
account_ = getDefaultInstance().getAccount();
onChanged();
return this;
}
/**
*
* a string containing the address of the account the attributes are assigned to.
*
*
* string account = 1;
*/
public Builder setAccountBytes(
com.google.protobuf.ByteString value) {
if (value == null) {
throw new NullPointerException();
}
checkByteStringIsUtf8(value);
account_ = value;
onChanged();
return this;
}
private java.util.List attributes_ =
java.util.Collections.emptyList();
private void ensureAttributesIsMutable() {
if (!((bitField0_ & 0x00000002) == 0x00000002)) {
attributes_ = new java.util.ArrayList(attributes_);
bitField0_ |= 0x00000002;
}
}
private com.google.protobuf.RepeatedFieldBuilderV3<
io.provenance.attribute.v1.Attribute, io.provenance.attribute.v1.Attribute.Builder, io.provenance.attribute.v1.AttributeOrBuilder> attributesBuilder_;
/**
*
* a list of attribute values
*
*
* repeated .provenance.attribute.v1.Attribute attributes = 2 [(.gogoproto.nullable) = false];
*/
public java.util.List getAttributesList() {
if (attributesBuilder_ == null) {
return java.util.Collections.unmodifiableList(attributes_);
} else {
return attributesBuilder_.getMessageList();
}
}
/**
*
* a list of attribute values
*
*
* repeated .provenance.attribute.v1.Attribute attributes = 2 [(.gogoproto.nullable) = false];
*/
public int getAttributesCount() {
if (attributesBuilder_ == null) {
return attributes_.size();
} else {
return attributesBuilder_.getCount();
}
}
/**
*
* a list of attribute values
*
*
* repeated .provenance.attribute.v1.Attribute attributes = 2 [(.gogoproto.nullable) = false];
*/
public io.provenance.attribute.v1.Attribute getAttributes(int index) {
if (attributesBuilder_ == null) {
return attributes_.get(index);
} else {
return attributesBuilder_.getMessage(index);
}
}
/**
*
* a list of attribute values
*
*
* repeated .provenance.attribute.v1.Attribute attributes = 2 [(.gogoproto.nullable) = false];
*/
public Builder setAttributes(
int index, io.provenance.attribute.v1.Attribute value) {
if (attributesBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
ensureAttributesIsMutable();
attributes_.set(index, value);
onChanged();
} else {
attributesBuilder_.setMessage(index, value);
}
return this;
}
/**
*
* a list of attribute values
*
*
* repeated .provenance.attribute.v1.Attribute attributes = 2 [(.gogoproto.nullable) = false];
*/
public Builder setAttributes(
int index, io.provenance.attribute.v1.Attribute.Builder builderForValue) {
if (attributesBuilder_ == null) {
ensureAttributesIsMutable();
attributes_.set(index, builderForValue.build());
onChanged();
} else {
attributesBuilder_.setMessage(index, builderForValue.build());
}
return this;
}
/**
*
* a list of attribute values
*
*
* repeated .provenance.attribute.v1.Attribute attributes = 2 [(.gogoproto.nullable) = false];
*/
public Builder addAttributes(io.provenance.attribute.v1.Attribute value) {
if (attributesBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
ensureAttributesIsMutable();
attributes_.add(value);
onChanged();
} else {
attributesBuilder_.addMessage(value);
}
return this;
}
/**
*
* a list of attribute values
*
*
* repeated .provenance.attribute.v1.Attribute attributes = 2 [(.gogoproto.nullable) = false];
*/
public Builder addAttributes(
int index, io.provenance.attribute.v1.Attribute value) {
if (attributesBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
ensureAttributesIsMutable();
attributes_.add(index, value);
onChanged();
} else {
attributesBuilder_.addMessage(index, value);
}
return this;
}
/**
*
* a list of attribute values
*
*
* repeated .provenance.attribute.v1.Attribute attributes = 2 [(.gogoproto.nullable) = false];
*/
public Builder addAttributes(
io.provenance.attribute.v1.Attribute.Builder builderForValue) {
if (attributesBuilder_ == null) {
ensureAttributesIsMutable();
attributes_.add(builderForValue.build());
onChanged();
} else {
attributesBuilder_.addMessage(builderForValue.build());
}
return this;
}
/**
*
* a list of attribute values
*
*
* repeated .provenance.attribute.v1.Attribute attributes = 2 [(.gogoproto.nullable) = false];
*/
public Builder addAttributes(
int index, io.provenance.attribute.v1.Attribute.Builder builderForValue) {
if (attributesBuilder_ == null) {
ensureAttributesIsMutable();
attributes_.add(index, builderForValue.build());
onChanged();
} else {
attributesBuilder_.addMessage(index, builderForValue.build());
}
return this;
}
/**
*
* a list of attribute values
*
*
* repeated .provenance.attribute.v1.Attribute attributes = 2 [(.gogoproto.nullable) = false];
*/
public Builder addAllAttributes(
java.lang.Iterable extends io.provenance.attribute.v1.Attribute> values) {
if (attributesBuilder_ == null) {
ensureAttributesIsMutable();
com.google.protobuf.AbstractMessageLite.Builder.addAll(
values, attributes_);
onChanged();
} else {
attributesBuilder_.addAllMessages(values);
}
return this;
}
/**
*
* a list of attribute values
*
*
* repeated .provenance.attribute.v1.Attribute attributes = 2 [(.gogoproto.nullable) = false];
*/
public Builder clearAttributes() {
if (attributesBuilder_ == null) {
attributes_ = java.util.Collections.emptyList();
bitField0_ = (bitField0_ & ~0x00000002);
onChanged();
} else {
attributesBuilder_.clear();
}
return this;
}
/**
*
* a list of attribute values
*
*
* repeated .provenance.attribute.v1.Attribute attributes = 2 [(.gogoproto.nullable) = false];
*/
public Builder removeAttributes(int index) {
if (attributesBuilder_ == null) {
ensureAttributesIsMutable();
attributes_.remove(index);
onChanged();
} else {
attributesBuilder_.remove(index);
}
return this;
}
/**
*
* a list of attribute values
*
*
* repeated .provenance.attribute.v1.Attribute attributes = 2 [(.gogoproto.nullable) = false];
*/
public io.provenance.attribute.v1.Attribute.Builder getAttributesBuilder(
int index) {
return getAttributesFieldBuilder().getBuilder(index);
}
/**
*
* a list of attribute values
*
*
* repeated .provenance.attribute.v1.Attribute attributes = 2 [(.gogoproto.nullable) = false];
*/
public io.provenance.attribute.v1.AttributeOrBuilder getAttributesOrBuilder(
int index) {
if (attributesBuilder_ == null) {
return attributes_.get(index); } else {
return attributesBuilder_.getMessageOrBuilder(index);
}
}
/**
*
* a list of attribute values
*
*
* repeated .provenance.attribute.v1.Attribute attributes = 2 [(.gogoproto.nullable) = false];
*/
public java.util.List extends io.provenance.attribute.v1.AttributeOrBuilder>
getAttributesOrBuilderList() {
if (attributesBuilder_ != null) {
return attributesBuilder_.getMessageOrBuilderList();
} else {
return java.util.Collections.unmodifiableList(attributes_);
}
}
/**
*
* a list of attribute values
*
*
* repeated .provenance.attribute.v1.Attribute attributes = 2 [(.gogoproto.nullable) = false];
*/
public io.provenance.attribute.v1.Attribute.Builder addAttributesBuilder() {
return getAttributesFieldBuilder().addBuilder(
io.provenance.attribute.v1.Attribute.getDefaultInstance());
}
/**
*
* a list of attribute values
*
*
* repeated .provenance.attribute.v1.Attribute attributes = 2 [(.gogoproto.nullable) = false];
*/
public io.provenance.attribute.v1.Attribute.Builder addAttributesBuilder(
int index) {
return getAttributesFieldBuilder().addBuilder(
index, io.provenance.attribute.v1.Attribute.getDefaultInstance());
}
/**
*
* a list of attribute values
*
*
* repeated .provenance.attribute.v1.Attribute attributes = 2 [(.gogoproto.nullable) = false];
*/
public java.util.List
getAttributesBuilderList() {
return getAttributesFieldBuilder().getBuilderList();
}
private com.google.protobuf.RepeatedFieldBuilderV3<
io.provenance.attribute.v1.Attribute, io.provenance.attribute.v1.Attribute.Builder, io.provenance.attribute.v1.AttributeOrBuilder>
getAttributesFieldBuilder() {
if (attributesBuilder_ == null) {
attributesBuilder_ = new com.google.protobuf.RepeatedFieldBuilderV3<
io.provenance.attribute.v1.Attribute, io.provenance.attribute.v1.Attribute.Builder, io.provenance.attribute.v1.AttributeOrBuilder>(
attributes_,
((bitField0_ & 0x00000002) == 0x00000002),
getParentForChildren(),
isClean());
attributes_ = null;
}
return attributesBuilder_;
}
private cosmos.base.query.v1beta1.Pagination.PageResponse pagination_ = null;
private com.google.protobuf.SingleFieldBuilderV3<
cosmos.base.query.v1beta1.Pagination.PageResponse, cosmos.base.query.v1beta1.Pagination.PageResponse.Builder, cosmos.base.query.v1beta1.Pagination.PageResponseOrBuilder> paginationBuilder_;
/**
*
* pagination defines an optional pagination for the request.
*
*
* .cosmos.base.query.v1beta1.PageResponse pagination = 3;
*/
public boolean hasPagination() {
return paginationBuilder_ != null || pagination_ != null;
}
/**
*
* pagination defines an optional pagination for the request.
*
*
* .cosmos.base.query.v1beta1.PageResponse pagination = 3;
*/
public cosmos.base.query.v1beta1.Pagination.PageResponse getPagination() {
if (paginationBuilder_ == null) {
return pagination_ == null ? cosmos.base.query.v1beta1.Pagination.PageResponse.getDefaultInstance() : pagination_;
} else {
return paginationBuilder_.getMessage();
}
}
/**
*
* pagination defines an optional pagination for the request.
*
*
* .cosmos.base.query.v1beta1.PageResponse pagination = 3;
*/
public Builder setPagination(cosmos.base.query.v1beta1.Pagination.PageResponse value) {
if (paginationBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
pagination_ = value;
onChanged();
} else {
paginationBuilder_.setMessage(value);
}
return this;
}
/**
*
* pagination defines an optional pagination for the request.
*
*
* .cosmos.base.query.v1beta1.PageResponse pagination = 3;
*/
public Builder setPagination(
cosmos.base.query.v1beta1.Pagination.PageResponse.Builder builderForValue) {
if (paginationBuilder_ == null) {
pagination_ = builderForValue.build();
onChanged();
} else {
paginationBuilder_.setMessage(builderForValue.build());
}
return this;
}
/**
*
* pagination defines an optional pagination for the request.
*
*
* .cosmos.base.query.v1beta1.PageResponse pagination = 3;
*/
public Builder mergePagination(cosmos.base.query.v1beta1.Pagination.PageResponse value) {
if (paginationBuilder_ == null) {
if (pagination_ != null) {
pagination_ =
cosmos.base.query.v1beta1.Pagination.PageResponse.newBuilder(pagination_).mergeFrom(value).buildPartial();
} else {
pagination_ = value;
}
onChanged();
} else {
paginationBuilder_.mergeFrom(value);
}
return this;
}
/**
*
* pagination defines an optional pagination for the request.
*
*
* .cosmos.base.query.v1beta1.PageResponse pagination = 3;
*/
public Builder clearPagination() {
if (paginationBuilder_ == null) {
pagination_ = null;
onChanged();
} else {
pagination_ = null;
paginationBuilder_ = null;
}
return this;
}
/**
*
* pagination defines an optional pagination for the request.
*
*
* .cosmos.base.query.v1beta1.PageResponse pagination = 3;
*/
public cosmos.base.query.v1beta1.Pagination.PageResponse.Builder getPaginationBuilder() {
onChanged();
return getPaginationFieldBuilder().getBuilder();
}
/**
*
* pagination defines an optional pagination for the request.
*
*
* .cosmos.base.query.v1beta1.PageResponse pagination = 3;
*/
public cosmos.base.query.v1beta1.Pagination.PageResponseOrBuilder getPaginationOrBuilder() {
if (paginationBuilder_ != null) {
return paginationBuilder_.getMessageOrBuilder();
} else {
return pagination_ == null ?
cosmos.base.query.v1beta1.Pagination.PageResponse.getDefaultInstance() : pagination_;
}
}
/**
*
* pagination defines an optional pagination for the request.
*
*
* .cosmos.base.query.v1beta1.PageResponse pagination = 3;
*/
private com.google.protobuf.SingleFieldBuilderV3<
cosmos.base.query.v1beta1.Pagination.PageResponse, cosmos.base.query.v1beta1.Pagination.PageResponse.Builder, cosmos.base.query.v1beta1.Pagination.PageResponseOrBuilder>
getPaginationFieldBuilder() {
if (paginationBuilder_ == null) {
paginationBuilder_ = new com.google.protobuf.SingleFieldBuilderV3<
cosmos.base.query.v1beta1.Pagination.PageResponse, cosmos.base.query.v1beta1.Pagination.PageResponse.Builder, cosmos.base.query.v1beta1.Pagination.PageResponseOrBuilder>(
getPagination(),
getParentForChildren(),
isClean());
pagination_ = null;
}
return paginationBuilder_;
}
@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.attribute.v1.QueryAttributeResponse)
}
// @@protoc_insertion_point(class_scope:provenance.attribute.v1.QueryAttributeResponse)
private static final io.provenance.attribute.v1.QueryAttributeResponse DEFAULT_INSTANCE;
static {
DEFAULT_INSTANCE = new io.provenance.attribute.v1.QueryAttributeResponse();
}
public static io.provenance.attribute.v1.QueryAttributeResponse getDefaultInstance() {
return DEFAULT_INSTANCE;
}
private static final com.google.protobuf.Parser
PARSER = new com.google.protobuf.AbstractParser() {
@java.lang.Override
public QueryAttributeResponse parsePartialFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return new QueryAttributeResponse(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.attribute.v1.QueryAttributeResponse getDefaultInstanceForType() {
return DEFAULT_INSTANCE;
}
}