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.marker.v1.QueryEscrowResponse Maven / Gradle / Ivy
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: provenance/marker/v1/query.proto
package io.provenance.marker.v1;
/**
*
* QueryEscrowResponse is the response type for the Query/MarkerEscrow method.
*
*
* Protobuf type {@code provenance.marker.v1.QueryEscrowResponse}
*/
public final class QueryEscrowResponse extends
com.google.protobuf.GeneratedMessageV3 implements
// @@protoc_insertion_point(message_implements:provenance.marker.v1.QueryEscrowResponse)
QueryEscrowResponseOrBuilder {
private static final long serialVersionUID = 0L;
// Use QueryEscrowResponse.newBuilder() to construct.
private QueryEscrowResponse(com.google.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
}
private QueryEscrowResponse() {
escrow_ = java.util.Collections.emptyList();
}
@java.lang.Override
public final com.google.protobuf.UnknownFieldSet
getUnknownFields() {
return this.unknownFields;
}
private QueryEscrowResponse(
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: {
if (!((mutable_bitField0_ & 0x00000001) == 0x00000001)) {
escrow_ = new java.util.ArrayList();
mutable_bitField0_ |= 0x00000001;
}
escrow_.add(
input.readMessage(cosmos.base.v1beta1.CoinOuterClass.Coin.parser(), extensionRegistry));
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_ & 0x00000001) == 0x00000001)) {
escrow_ = java.util.Collections.unmodifiableList(escrow_);
}
this.unknownFields = unknownFields.build();
makeExtensionsImmutable();
}
}
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return io.provenance.marker.v1.QueryOuterClass.internal_static_provenance_marker_v1_QueryEscrowResponse_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return io.provenance.marker.v1.QueryOuterClass.internal_static_provenance_marker_v1_QueryEscrowResponse_fieldAccessorTable
.ensureFieldAccessorsInitialized(
io.provenance.marker.v1.QueryEscrowResponse.class, io.provenance.marker.v1.QueryEscrowResponse.Builder.class);
}
public static final int ESCROW_FIELD_NUMBER = 1;
private java.util.List escrow_;
/**
* repeated .cosmos.base.v1beta1.Coin escrow = 1 [(.gogoproto.nullable) = false, (.gogoproto.castrepeated) = "github.com/cosmos/cosmos-sdk/types.Coins"];
*/
public java.util.List getEscrowList() {
return escrow_;
}
/**
* repeated .cosmos.base.v1beta1.Coin escrow = 1 [(.gogoproto.nullable) = false, (.gogoproto.castrepeated) = "github.com/cosmos/cosmos-sdk/types.Coins"];
*/
public java.util.List extends cosmos.base.v1beta1.CoinOuterClass.CoinOrBuilder>
getEscrowOrBuilderList() {
return escrow_;
}
/**
* repeated .cosmos.base.v1beta1.Coin escrow = 1 [(.gogoproto.nullable) = false, (.gogoproto.castrepeated) = "github.com/cosmos/cosmos-sdk/types.Coins"];
*/
public int getEscrowCount() {
return escrow_.size();
}
/**
* repeated .cosmos.base.v1beta1.Coin escrow = 1 [(.gogoproto.nullable) = false, (.gogoproto.castrepeated) = "github.com/cosmos/cosmos-sdk/types.Coins"];
*/
public cosmos.base.v1beta1.CoinOuterClass.Coin getEscrow(int index) {
return escrow_.get(index);
}
/**
* repeated .cosmos.base.v1beta1.Coin escrow = 1 [(.gogoproto.nullable) = false, (.gogoproto.castrepeated) = "github.com/cosmos/cosmos-sdk/types.Coins"];
*/
public cosmos.base.v1beta1.CoinOuterClass.CoinOrBuilder getEscrowOrBuilder(
int index) {
return escrow_.get(index);
}
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 {
for (int i = 0; i < escrow_.size(); i++) {
output.writeMessage(1, escrow_.get(i));
}
unknownFields.writeTo(output);
}
@java.lang.Override
public int getSerializedSize() {
int size = memoizedSize;
if (size != -1) return size;
size = 0;
for (int i = 0; i < escrow_.size(); i++) {
size += com.google.protobuf.CodedOutputStream
.computeMessageSize(1, escrow_.get(i));
}
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.marker.v1.QueryEscrowResponse)) {
return super.equals(obj);
}
io.provenance.marker.v1.QueryEscrowResponse other = (io.provenance.marker.v1.QueryEscrowResponse) obj;
boolean result = true;
result = result && getEscrowList()
.equals(other.getEscrowList());
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();
if (getEscrowCount() > 0) {
hash = (37 * hash) + ESCROW_FIELD_NUMBER;
hash = (53 * hash) + getEscrowList().hashCode();
}
hash = (29 * hash) + unknownFields.hashCode();
memoizedHashCode = hash;
return hash;
}
public static io.provenance.marker.v1.QueryEscrowResponse parseFrom(
java.nio.ByteBuffer data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static io.provenance.marker.v1.QueryEscrowResponse parseFrom(
java.nio.ByteBuffer data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static io.provenance.marker.v1.QueryEscrowResponse parseFrom(
com.google.protobuf.ByteString data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static io.provenance.marker.v1.QueryEscrowResponse 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.marker.v1.QueryEscrowResponse parseFrom(byte[] data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static io.provenance.marker.v1.QueryEscrowResponse parseFrom(
byte[] data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static io.provenance.marker.v1.QueryEscrowResponse parseFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static io.provenance.marker.v1.QueryEscrowResponse 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.marker.v1.QueryEscrowResponse parseDelimitedFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseDelimitedWithIOException(PARSER, input);
}
public static io.provenance.marker.v1.QueryEscrowResponse 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.marker.v1.QueryEscrowResponse parseFrom(
com.google.protobuf.CodedInputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static io.provenance.marker.v1.QueryEscrowResponse 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.marker.v1.QueryEscrowResponse 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;
}
/**
*
* QueryEscrowResponse is the response type for the Query/MarkerEscrow method.
*
*
* Protobuf type {@code provenance.marker.v1.QueryEscrowResponse}
*/
public static final class Builder extends
com.google.protobuf.GeneratedMessageV3.Builder implements
// @@protoc_insertion_point(builder_implements:provenance.marker.v1.QueryEscrowResponse)
io.provenance.marker.v1.QueryEscrowResponseOrBuilder {
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return io.provenance.marker.v1.QueryOuterClass.internal_static_provenance_marker_v1_QueryEscrowResponse_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return io.provenance.marker.v1.QueryOuterClass.internal_static_provenance_marker_v1_QueryEscrowResponse_fieldAccessorTable
.ensureFieldAccessorsInitialized(
io.provenance.marker.v1.QueryEscrowResponse.class, io.provenance.marker.v1.QueryEscrowResponse.Builder.class);
}
// Construct using io.provenance.marker.v1.QueryEscrowResponse.newBuilder()
private Builder() {
maybeForceBuilderInitialization();
}
private Builder(
com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
super(parent);
maybeForceBuilderInitialization();
}
private void maybeForceBuilderInitialization() {
if (com.google.protobuf.GeneratedMessageV3
.alwaysUseFieldBuilders) {
getEscrowFieldBuilder();
}
}
@java.lang.Override
public Builder clear() {
super.clear();
if (escrowBuilder_ == null) {
escrow_ = java.util.Collections.emptyList();
bitField0_ = (bitField0_ & ~0x00000001);
} else {
escrowBuilder_.clear();
}
return this;
}
@java.lang.Override
public com.google.protobuf.Descriptors.Descriptor
getDescriptorForType() {
return io.provenance.marker.v1.QueryOuterClass.internal_static_provenance_marker_v1_QueryEscrowResponse_descriptor;
}
@java.lang.Override
public io.provenance.marker.v1.QueryEscrowResponse getDefaultInstanceForType() {
return io.provenance.marker.v1.QueryEscrowResponse.getDefaultInstance();
}
@java.lang.Override
public io.provenance.marker.v1.QueryEscrowResponse build() {
io.provenance.marker.v1.QueryEscrowResponse result = buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
@java.lang.Override
public io.provenance.marker.v1.QueryEscrowResponse buildPartial() {
io.provenance.marker.v1.QueryEscrowResponse result = new io.provenance.marker.v1.QueryEscrowResponse(this);
int from_bitField0_ = bitField0_;
if (escrowBuilder_ == null) {
if (((bitField0_ & 0x00000001) == 0x00000001)) {
escrow_ = java.util.Collections.unmodifiableList(escrow_);
bitField0_ = (bitField0_ & ~0x00000001);
}
result.escrow_ = escrow_;
} else {
result.escrow_ = escrowBuilder_.build();
}
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.marker.v1.QueryEscrowResponse) {
return mergeFrom((io.provenance.marker.v1.QueryEscrowResponse)other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(io.provenance.marker.v1.QueryEscrowResponse other) {
if (other == io.provenance.marker.v1.QueryEscrowResponse.getDefaultInstance()) return this;
if (escrowBuilder_ == null) {
if (!other.escrow_.isEmpty()) {
if (escrow_.isEmpty()) {
escrow_ = other.escrow_;
bitField0_ = (bitField0_ & ~0x00000001);
} else {
ensureEscrowIsMutable();
escrow_.addAll(other.escrow_);
}
onChanged();
}
} else {
if (!other.escrow_.isEmpty()) {
if (escrowBuilder_.isEmpty()) {
escrowBuilder_.dispose();
escrowBuilder_ = null;
escrow_ = other.escrow_;
bitField0_ = (bitField0_ & ~0x00000001);
escrowBuilder_ =
com.google.protobuf.GeneratedMessageV3.alwaysUseFieldBuilders ?
getEscrowFieldBuilder() : null;
} else {
escrowBuilder_.addAllMessages(other.escrow_);
}
}
}
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.marker.v1.QueryEscrowResponse parsedMessage = null;
try {
parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry);
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
parsedMessage = (io.provenance.marker.v1.QueryEscrowResponse) e.getUnfinishedMessage();
throw e.unwrapIOException();
} finally {
if (parsedMessage != null) {
mergeFrom(parsedMessage);
}
}
return this;
}
private int bitField0_;
private java.util.List escrow_ =
java.util.Collections.emptyList();
private void ensureEscrowIsMutable() {
if (!((bitField0_ & 0x00000001) == 0x00000001)) {
escrow_ = new java.util.ArrayList(escrow_);
bitField0_ |= 0x00000001;
}
}
private com.google.protobuf.RepeatedFieldBuilderV3<
cosmos.base.v1beta1.CoinOuterClass.Coin, cosmos.base.v1beta1.CoinOuterClass.Coin.Builder, cosmos.base.v1beta1.CoinOuterClass.CoinOrBuilder> escrowBuilder_;
/**
* repeated .cosmos.base.v1beta1.Coin escrow = 1 [(.gogoproto.nullable) = false, (.gogoproto.castrepeated) = "github.com/cosmos/cosmos-sdk/types.Coins"];
*/
public java.util.List getEscrowList() {
if (escrowBuilder_ == null) {
return java.util.Collections.unmodifiableList(escrow_);
} else {
return escrowBuilder_.getMessageList();
}
}
/**
* repeated .cosmos.base.v1beta1.Coin escrow = 1 [(.gogoproto.nullable) = false, (.gogoproto.castrepeated) = "github.com/cosmos/cosmos-sdk/types.Coins"];
*/
public int getEscrowCount() {
if (escrowBuilder_ == null) {
return escrow_.size();
} else {
return escrowBuilder_.getCount();
}
}
/**
* repeated .cosmos.base.v1beta1.Coin escrow = 1 [(.gogoproto.nullable) = false, (.gogoproto.castrepeated) = "github.com/cosmos/cosmos-sdk/types.Coins"];
*/
public cosmos.base.v1beta1.CoinOuterClass.Coin getEscrow(int index) {
if (escrowBuilder_ == null) {
return escrow_.get(index);
} else {
return escrowBuilder_.getMessage(index);
}
}
/**
* repeated .cosmos.base.v1beta1.Coin escrow = 1 [(.gogoproto.nullable) = false, (.gogoproto.castrepeated) = "github.com/cosmos/cosmos-sdk/types.Coins"];
*/
public Builder setEscrow(
int index, cosmos.base.v1beta1.CoinOuterClass.Coin value) {
if (escrowBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
ensureEscrowIsMutable();
escrow_.set(index, value);
onChanged();
} else {
escrowBuilder_.setMessage(index, value);
}
return this;
}
/**
* repeated .cosmos.base.v1beta1.Coin escrow = 1 [(.gogoproto.nullable) = false, (.gogoproto.castrepeated) = "github.com/cosmos/cosmos-sdk/types.Coins"];
*/
public Builder setEscrow(
int index, cosmos.base.v1beta1.CoinOuterClass.Coin.Builder builderForValue) {
if (escrowBuilder_ == null) {
ensureEscrowIsMutable();
escrow_.set(index, builderForValue.build());
onChanged();
} else {
escrowBuilder_.setMessage(index, builderForValue.build());
}
return this;
}
/**
* repeated .cosmos.base.v1beta1.Coin escrow = 1 [(.gogoproto.nullable) = false, (.gogoproto.castrepeated) = "github.com/cosmos/cosmos-sdk/types.Coins"];
*/
public Builder addEscrow(cosmos.base.v1beta1.CoinOuterClass.Coin value) {
if (escrowBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
ensureEscrowIsMutable();
escrow_.add(value);
onChanged();
} else {
escrowBuilder_.addMessage(value);
}
return this;
}
/**
* repeated .cosmos.base.v1beta1.Coin escrow = 1 [(.gogoproto.nullable) = false, (.gogoproto.castrepeated) = "github.com/cosmos/cosmos-sdk/types.Coins"];
*/
public Builder addEscrow(
int index, cosmos.base.v1beta1.CoinOuterClass.Coin value) {
if (escrowBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
ensureEscrowIsMutable();
escrow_.add(index, value);
onChanged();
} else {
escrowBuilder_.addMessage(index, value);
}
return this;
}
/**
* repeated .cosmos.base.v1beta1.Coin escrow = 1 [(.gogoproto.nullable) = false, (.gogoproto.castrepeated) = "github.com/cosmos/cosmos-sdk/types.Coins"];
*/
public Builder addEscrow(
cosmos.base.v1beta1.CoinOuterClass.Coin.Builder builderForValue) {
if (escrowBuilder_ == null) {
ensureEscrowIsMutable();
escrow_.add(builderForValue.build());
onChanged();
} else {
escrowBuilder_.addMessage(builderForValue.build());
}
return this;
}
/**
* repeated .cosmos.base.v1beta1.Coin escrow = 1 [(.gogoproto.nullable) = false, (.gogoproto.castrepeated) = "github.com/cosmos/cosmos-sdk/types.Coins"];
*/
public Builder addEscrow(
int index, cosmos.base.v1beta1.CoinOuterClass.Coin.Builder builderForValue) {
if (escrowBuilder_ == null) {
ensureEscrowIsMutable();
escrow_.add(index, builderForValue.build());
onChanged();
} else {
escrowBuilder_.addMessage(index, builderForValue.build());
}
return this;
}
/**
* repeated .cosmos.base.v1beta1.Coin escrow = 1 [(.gogoproto.nullable) = false, (.gogoproto.castrepeated) = "github.com/cosmos/cosmos-sdk/types.Coins"];
*/
public Builder addAllEscrow(
java.lang.Iterable extends cosmos.base.v1beta1.CoinOuterClass.Coin> values) {
if (escrowBuilder_ == null) {
ensureEscrowIsMutable();
com.google.protobuf.AbstractMessageLite.Builder.addAll(
values, escrow_);
onChanged();
} else {
escrowBuilder_.addAllMessages(values);
}
return this;
}
/**
* repeated .cosmos.base.v1beta1.Coin escrow = 1 [(.gogoproto.nullable) = false, (.gogoproto.castrepeated) = "github.com/cosmos/cosmos-sdk/types.Coins"];
*/
public Builder clearEscrow() {
if (escrowBuilder_ == null) {
escrow_ = java.util.Collections.emptyList();
bitField0_ = (bitField0_ & ~0x00000001);
onChanged();
} else {
escrowBuilder_.clear();
}
return this;
}
/**
* repeated .cosmos.base.v1beta1.Coin escrow = 1 [(.gogoproto.nullable) = false, (.gogoproto.castrepeated) = "github.com/cosmos/cosmos-sdk/types.Coins"];
*/
public Builder removeEscrow(int index) {
if (escrowBuilder_ == null) {
ensureEscrowIsMutable();
escrow_.remove(index);
onChanged();
} else {
escrowBuilder_.remove(index);
}
return this;
}
/**
* repeated .cosmos.base.v1beta1.Coin escrow = 1 [(.gogoproto.nullable) = false, (.gogoproto.castrepeated) = "github.com/cosmos/cosmos-sdk/types.Coins"];
*/
public cosmos.base.v1beta1.CoinOuterClass.Coin.Builder getEscrowBuilder(
int index) {
return getEscrowFieldBuilder().getBuilder(index);
}
/**
* repeated .cosmos.base.v1beta1.Coin escrow = 1 [(.gogoproto.nullable) = false, (.gogoproto.castrepeated) = "github.com/cosmos/cosmos-sdk/types.Coins"];
*/
public cosmos.base.v1beta1.CoinOuterClass.CoinOrBuilder getEscrowOrBuilder(
int index) {
if (escrowBuilder_ == null) {
return escrow_.get(index); } else {
return escrowBuilder_.getMessageOrBuilder(index);
}
}
/**
* repeated .cosmos.base.v1beta1.Coin escrow = 1 [(.gogoproto.nullable) = false, (.gogoproto.castrepeated) = "github.com/cosmos/cosmos-sdk/types.Coins"];
*/
public java.util.List extends cosmos.base.v1beta1.CoinOuterClass.CoinOrBuilder>
getEscrowOrBuilderList() {
if (escrowBuilder_ != null) {
return escrowBuilder_.getMessageOrBuilderList();
} else {
return java.util.Collections.unmodifiableList(escrow_);
}
}
/**
* repeated .cosmos.base.v1beta1.Coin escrow = 1 [(.gogoproto.nullable) = false, (.gogoproto.castrepeated) = "github.com/cosmos/cosmos-sdk/types.Coins"];
*/
public cosmos.base.v1beta1.CoinOuterClass.Coin.Builder addEscrowBuilder() {
return getEscrowFieldBuilder().addBuilder(
cosmos.base.v1beta1.CoinOuterClass.Coin.getDefaultInstance());
}
/**
* repeated .cosmos.base.v1beta1.Coin escrow = 1 [(.gogoproto.nullable) = false, (.gogoproto.castrepeated) = "github.com/cosmos/cosmos-sdk/types.Coins"];
*/
public cosmos.base.v1beta1.CoinOuterClass.Coin.Builder addEscrowBuilder(
int index) {
return getEscrowFieldBuilder().addBuilder(
index, cosmos.base.v1beta1.CoinOuterClass.Coin.getDefaultInstance());
}
/**
* repeated .cosmos.base.v1beta1.Coin escrow = 1 [(.gogoproto.nullable) = false, (.gogoproto.castrepeated) = "github.com/cosmos/cosmos-sdk/types.Coins"];
*/
public java.util.List
getEscrowBuilderList() {
return getEscrowFieldBuilder().getBuilderList();
}
private com.google.protobuf.RepeatedFieldBuilderV3<
cosmos.base.v1beta1.CoinOuterClass.Coin, cosmos.base.v1beta1.CoinOuterClass.Coin.Builder, cosmos.base.v1beta1.CoinOuterClass.CoinOrBuilder>
getEscrowFieldBuilder() {
if (escrowBuilder_ == null) {
escrowBuilder_ = new com.google.protobuf.RepeatedFieldBuilderV3<
cosmos.base.v1beta1.CoinOuterClass.Coin, cosmos.base.v1beta1.CoinOuterClass.Coin.Builder, cosmos.base.v1beta1.CoinOuterClass.CoinOrBuilder>(
escrow_,
((bitField0_ & 0x00000001) == 0x00000001),
getParentForChildren(),
isClean());
escrow_ = null;
}
return escrowBuilder_;
}
@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.marker.v1.QueryEscrowResponse)
}
// @@protoc_insertion_point(class_scope:provenance.marker.v1.QueryEscrowResponse)
private static final io.provenance.marker.v1.QueryEscrowResponse DEFAULT_INSTANCE;
static {
DEFAULT_INSTANCE = new io.provenance.marker.v1.QueryEscrowResponse();
}
public static io.provenance.marker.v1.QueryEscrowResponse getDefaultInstance() {
return DEFAULT_INSTANCE;
}
private static final com.google.protobuf.Parser
PARSER = new com.google.protobuf.AbstractParser() {
@java.lang.Override
public QueryEscrowResponse parsePartialFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return new QueryEscrowResponse(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.marker.v1.QueryEscrowResponse getDefaultInstanceForType() {
return DEFAULT_INSTANCE;
}
}