com.hedera.hashgraph.sdk.proto.AllProxyStakers Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sdk-full Show documentation
Show all versions of sdk-full Show documentation
Hedera™ Hashgraph SDK for Java
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: crypto_get_stakers.proto
// Protobuf Java Version: 3.25.3
package com.hedera.hashgraph.sdk.proto;
/**
*
**
* all of the accounts proxy staking to a given account, and the amounts proxy staked
*
*
* Protobuf type {@code proto.AllProxyStakers}
*/
public final class AllProxyStakers extends
com.google.protobuf.GeneratedMessageV3 implements
// @@protoc_insertion_point(message_implements:proto.AllProxyStakers)
AllProxyStakersOrBuilder {
private static final long serialVersionUID = 0L;
// Use AllProxyStakers.newBuilder() to construct.
private AllProxyStakers(com.google.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
}
private AllProxyStakers() {
proxyStaker_ = java.util.Collections.emptyList();
}
@java.lang.Override
@SuppressWarnings({"unused"})
protected java.lang.Object newInstance(
UnusedPrivateParameter unused) {
return new AllProxyStakers();
}
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return com.hedera.hashgraph.sdk.proto.CryptoGetStakers.internal_static_proto_AllProxyStakers_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return com.hedera.hashgraph.sdk.proto.CryptoGetStakers.internal_static_proto_AllProxyStakers_fieldAccessorTable
.ensureFieldAccessorsInitialized(
com.hedera.hashgraph.sdk.proto.AllProxyStakers.class, com.hedera.hashgraph.sdk.proto.AllProxyStakers.Builder.class);
}
private int bitField0_;
public static final int ACCOUNTID_FIELD_NUMBER = 1;
private com.hedera.hashgraph.sdk.proto.AccountID accountID_;
/**
*
**
* The Account ID that is being proxy staked to
*
*
* .proto.AccountID accountID = 1;
* @return Whether the accountID field is set.
*/
@java.lang.Override
public boolean hasAccountID() {
return ((bitField0_ & 0x00000001) != 0);
}
/**
*
**
* The Account ID that is being proxy staked to
*
*
* .proto.AccountID accountID = 1;
* @return The accountID.
*/
@java.lang.Override
public com.hedera.hashgraph.sdk.proto.AccountID getAccountID() {
return accountID_ == null ? com.hedera.hashgraph.sdk.proto.AccountID.getDefaultInstance() : accountID_;
}
/**
*
**
* The Account ID that is being proxy staked to
*
*
* .proto.AccountID accountID = 1;
*/
@java.lang.Override
public com.hedera.hashgraph.sdk.proto.AccountIDOrBuilder getAccountIDOrBuilder() {
return accountID_ == null ? com.hedera.hashgraph.sdk.proto.AccountID.getDefaultInstance() : accountID_;
}
public static final int PROXYSTAKER_FIELD_NUMBER = 2;
@SuppressWarnings("serial")
private java.util.List proxyStaker_;
/**
*
**
* Each of the proxy staking accounts, and the amount they are proxy staking
*
*
* repeated .proto.ProxyStaker proxyStaker = 2;
*/
@java.lang.Override
public java.util.List getProxyStakerList() {
return proxyStaker_;
}
/**
*
**
* Each of the proxy staking accounts, and the amount they are proxy staking
*
*
* repeated .proto.ProxyStaker proxyStaker = 2;
*/
@java.lang.Override
public java.util.List extends com.hedera.hashgraph.sdk.proto.ProxyStakerOrBuilder>
getProxyStakerOrBuilderList() {
return proxyStaker_;
}
/**
*
**
* Each of the proxy staking accounts, and the amount they are proxy staking
*
*
* repeated .proto.ProxyStaker proxyStaker = 2;
*/
@java.lang.Override
public int getProxyStakerCount() {
return proxyStaker_.size();
}
/**
*
**
* Each of the proxy staking accounts, and the amount they are proxy staking
*
*
* repeated .proto.ProxyStaker proxyStaker = 2;
*/
@java.lang.Override
public com.hedera.hashgraph.sdk.proto.ProxyStaker getProxyStaker(int index) {
return proxyStaker_.get(index);
}
/**
*
**
* Each of the proxy staking accounts, and the amount they are proxy staking
*
*
* repeated .proto.ProxyStaker proxyStaker = 2;
*/
@java.lang.Override
public com.hedera.hashgraph.sdk.proto.ProxyStakerOrBuilder getProxyStakerOrBuilder(
int index) {
return proxyStaker_.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 {
if (((bitField0_ & 0x00000001) != 0)) {
output.writeMessage(1, getAccountID());
}
for (int i = 0; i < proxyStaker_.size(); i++) {
output.writeMessage(2, proxyStaker_.get(i));
}
getUnknownFields().writeTo(output);
}
@java.lang.Override
public int getSerializedSize() {
int size = memoizedSize;
if (size != -1) return size;
size = 0;
if (((bitField0_ & 0x00000001) != 0)) {
size += com.google.protobuf.CodedOutputStream
.computeMessageSize(1, getAccountID());
}
for (int i = 0; i < proxyStaker_.size(); i++) {
size += com.google.protobuf.CodedOutputStream
.computeMessageSize(2, proxyStaker_.get(i));
}
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 com.hedera.hashgraph.sdk.proto.AllProxyStakers)) {
return super.equals(obj);
}
com.hedera.hashgraph.sdk.proto.AllProxyStakers other = (com.hedera.hashgraph.sdk.proto.AllProxyStakers) obj;
if (hasAccountID() != other.hasAccountID()) return false;
if (hasAccountID()) {
if (!getAccountID()
.equals(other.getAccountID())) return false;
}
if (!getProxyStakerList()
.equals(other.getProxyStakerList())) 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();
if (hasAccountID()) {
hash = (37 * hash) + ACCOUNTID_FIELD_NUMBER;
hash = (53 * hash) + getAccountID().hashCode();
}
if (getProxyStakerCount() > 0) {
hash = (37 * hash) + PROXYSTAKER_FIELD_NUMBER;
hash = (53 * hash) + getProxyStakerList().hashCode();
}
hash = (29 * hash) + getUnknownFields().hashCode();
memoizedHashCode = hash;
return hash;
}
public static com.hedera.hashgraph.sdk.proto.AllProxyStakers parseFrom(
java.nio.ByteBuffer data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.hedera.hashgraph.sdk.proto.AllProxyStakers parseFrom(
java.nio.ByteBuffer data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static com.hedera.hashgraph.sdk.proto.AllProxyStakers parseFrom(
com.google.protobuf.ByteString data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.hedera.hashgraph.sdk.proto.AllProxyStakers parseFrom(
com.google.protobuf.ByteString data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static com.hedera.hashgraph.sdk.proto.AllProxyStakers parseFrom(byte[] data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.hedera.hashgraph.sdk.proto.AllProxyStakers parseFrom(
byte[] data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static com.hedera.hashgraph.sdk.proto.AllProxyStakers parseFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static com.hedera.hashgraph.sdk.proto.AllProxyStakers 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 com.hedera.hashgraph.sdk.proto.AllProxyStakers parseDelimitedFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseDelimitedWithIOException(PARSER, input);
}
public static com.hedera.hashgraph.sdk.proto.AllProxyStakers 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 com.hedera.hashgraph.sdk.proto.AllProxyStakers parseFrom(
com.google.protobuf.CodedInputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static com.hedera.hashgraph.sdk.proto.AllProxyStakers 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(com.hedera.hashgraph.sdk.proto.AllProxyStakers 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;
}
/**
*
**
* all of the accounts proxy staking to a given account, and the amounts proxy staked
*
*
* Protobuf type {@code proto.AllProxyStakers}
*/
public static final class Builder extends
com.google.protobuf.GeneratedMessageV3.Builder implements
// @@protoc_insertion_point(builder_implements:proto.AllProxyStakers)
com.hedera.hashgraph.sdk.proto.AllProxyStakersOrBuilder {
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return com.hedera.hashgraph.sdk.proto.CryptoGetStakers.internal_static_proto_AllProxyStakers_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return com.hedera.hashgraph.sdk.proto.CryptoGetStakers.internal_static_proto_AllProxyStakers_fieldAccessorTable
.ensureFieldAccessorsInitialized(
com.hedera.hashgraph.sdk.proto.AllProxyStakers.class, com.hedera.hashgraph.sdk.proto.AllProxyStakers.Builder.class);
}
// Construct using com.hedera.hashgraph.sdk.proto.AllProxyStakers.newBuilder()
private Builder() {
maybeForceBuilderInitialization();
}
private Builder(
com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
super(parent);
maybeForceBuilderInitialization();
}
private void maybeForceBuilderInitialization() {
if (com.google.protobuf.GeneratedMessageV3
.alwaysUseFieldBuilders) {
getAccountIDFieldBuilder();
getProxyStakerFieldBuilder();
}
}
@java.lang.Override
public Builder clear() {
super.clear();
bitField0_ = 0;
accountID_ = null;
if (accountIDBuilder_ != null) {
accountIDBuilder_.dispose();
accountIDBuilder_ = null;
}
if (proxyStakerBuilder_ == null) {
proxyStaker_ = java.util.Collections.emptyList();
} else {
proxyStaker_ = null;
proxyStakerBuilder_.clear();
}
bitField0_ = (bitField0_ & ~0x00000002);
return this;
}
@java.lang.Override
public com.google.protobuf.Descriptors.Descriptor
getDescriptorForType() {
return com.hedera.hashgraph.sdk.proto.CryptoGetStakers.internal_static_proto_AllProxyStakers_descriptor;
}
@java.lang.Override
public com.hedera.hashgraph.sdk.proto.AllProxyStakers getDefaultInstanceForType() {
return com.hedera.hashgraph.sdk.proto.AllProxyStakers.getDefaultInstance();
}
@java.lang.Override
public com.hedera.hashgraph.sdk.proto.AllProxyStakers build() {
com.hedera.hashgraph.sdk.proto.AllProxyStakers result = buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
@java.lang.Override
public com.hedera.hashgraph.sdk.proto.AllProxyStakers buildPartial() {
com.hedera.hashgraph.sdk.proto.AllProxyStakers result = new com.hedera.hashgraph.sdk.proto.AllProxyStakers(this);
buildPartialRepeatedFields(result);
if (bitField0_ != 0) { buildPartial0(result); }
onBuilt();
return result;
}
private void buildPartialRepeatedFields(com.hedera.hashgraph.sdk.proto.AllProxyStakers result) {
if (proxyStakerBuilder_ == null) {
if (((bitField0_ & 0x00000002) != 0)) {
proxyStaker_ = java.util.Collections.unmodifiableList(proxyStaker_);
bitField0_ = (bitField0_ & ~0x00000002);
}
result.proxyStaker_ = proxyStaker_;
} else {
result.proxyStaker_ = proxyStakerBuilder_.build();
}
}
private void buildPartial0(com.hedera.hashgraph.sdk.proto.AllProxyStakers result) {
int from_bitField0_ = bitField0_;
int to_bitField0_ = 0;
if (((from_bitField0_ & 0x00000001) != 0)) {
result.accountID_ = accountIDBuilder_ == null
? accountID_
: accountIDBuilder_.build();
to_bitField0_ |= 0x00000001;
}
result.bitField0_ |= to_bitField0_;
}
@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 com.hedera.hashgraph.sdk.proto.AllProxyStakers) {
return mergeFrom((com.hedera.hashgraph.sdk.proto.AllProxyStakers)other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(com.hedera.hashgraph.sdk.proto.AllProxyStakers other) {
if (other == com.hedera.hashgraph.sdk.proto.AllProxyStakers.getDefaultInstance()) return this;
if (other.hasAccountID()) {
mergeAccountID(other.getAccountID());
}
if (proxyStakerBuilder_ == null) {
if (!other.proxyStaker_.isEmpty()) {
if (proxyStaker_.isEmpty()) {
proxyStaker_ = other.proxyStaker_;
bitField0_ = (bitField0_ & ~0x00000002);
} else {
ensureProxyStakerIsMutable();
proxyStaker_.addAll(other.proxyStaker_);
}
onChanged();
}
} else {
if (!other.proxyStaker_.isEmpty()) {
if (proxyStakerBuilder_.isEmpty()) {
proxyStakerBuilder_.dispose();
proxyStakerBuilder_ = null;
proxyStaker_ = other.proxyStaker_;
bitField0_ = (bitField0_ & ~0x00000002);
proxyStakerBuilder_ =
com.google.protobuf.GeneratedMessageV3.alwaysUseFieldBuilders ?
getProxyStakerFieldBuilder() : null;
} else {
proxyStakerBuilder_.addAllMessages(other.proxyStaker_);
}
}
}
this.mergeUnknownFields(other.getUnknownFields());
onChanged();
return this;
}
@java.lang.Override
public final boolean isInitialized() {
return true;
}
@java.lang.Override
public Builder mergeFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
if (extensionRegistry == null) {
throw new java.lang.NullPointerException();
}
try {
boolean done = false;
while (!done) {
int tag = input.readTag();
switch (tag) {
case 0:
done = true;
break;
case 10: {
input.readMessage(
getAccountIDFieldBuilder().getBuilder(),
extensionRegistry);
bitField0_ |= 0x00000001;
break;
} // case 10
case 18: {
com.hedera.hashgraph.sdk.proto.ProxyStaker m =
input.readMessage(
com.hedera.hashgraph.sdk.proto.ProxyStaker.parser(),
extensionRegistry);
if (proxyStakerBuilder_ == null) {
ensureProxyStakerIsMutable();
proxyStaker_.add(m);
} else {
proxyStakerBuilder_.addMessage(m);
}
break;
} // case 18
default: {
if (!super.parseUnknownField(input, extensionRegistry, tag)) {
done = true; // was an endgroup tag
}
break;
} // default:
} // switch (tag)
} // while (!done)
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
throw e.unwrapIOException();
} finally {
onChanged();
} // finally
return this;
}
private int bitField0_;
private com.hedera.hashgraph.sdk.proto.AccountID accountID_;
private com.google.protobuf.SingleFieldBuilderV3<
com.hedera.hashgraph.sdk.proto.AccountID, com.hedera.hashgraph.sdk.proto.AccountID.Builder, com.hedera.hashgraph.sdk.proto.AccountIDOrBuilder> accountIDBuilder_;
/**
*
**
* The Account ID that is being proxy staked to
*
*
* .proto.AccountID accountID = 1;
* @return Whether the accountID field is set.
*/
public boolean hasAccountID() {
return ((bitField0_ & 0x00000001) != 0);
}
/**
*
**
* The Account ID that is being proxy staked to
*
*
* .proto.AccountID accountID = 1;
* @return The accountID.
*/
public com.hedera.hashgraph.sdk.proto.AccountID getAccountID() {
if (accountIDBuilder_ == null) {
return accountID_ == null ? com.hedera.hashgraph.sdk.proto.AccountID.getDefaultInstance() : accountID_;
} else {
return accountIDBuilder_.getMessage();
}
}
/**
*
**
* The Account ID that is being proxy staked to
*
*
* .proto.AccountID accountID = 1;
*/
public Builder setAccountID(com.hedera.hashgraph.sdk.proto.AccountID value) {
if (accountIDBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
accountID_ = value;
} else {
accountIDBuilder_.setMessage(value);
}
bitField0_ |= 0x00000001;
onChanged();
return this;
}
/**
*
**
* The Account ID that is being proxy staked to
*
*
* .proto.AccountID accountID = 1;
*/
public Builder setAccountID(
com.hedera.hashgraph.sdk.proto.AccountID.Builder builderForValue) {
if (accountIDBuilder_ == null) {
accountID_ = builderForValue.build();
} else {
accountIDBuilder_.setMessage(builderForValue.build());
}
bitField0_ |= 0x00000001;
onChanged();
return this;
}
/**
*
**
* The Account ID that is being proxy staked to
*
*
* .proto.AccountID accountID = 1;
*/
public Builder mergeAccountID(com.hedera.hashgraph.sdk.proto.AccountID value) {
if (accountIDBuilder_ == null) {
if (((bitField0_ & 0x00000001) != 0) &&
accountID_ != null &&
accountID_ != com.hedera.hashgraph.sdk.proto.AccountID.getDefaultInstance()) {
getAccountIDBuilder().mergeFrom(value);
} else {
accountID_ = value;
}
} else {
accountIDBuilder_.mergeFrom(value);
}
if (accountID_ != null) {
bitField0_ |= 0x00000001;
onChanged();
}
return this;
}
/**
*
**
* The Account ID that is being proxy staked to
*
*
* .proto.AccountID accountID = 1;
*/
public Builder clearAccountID() {
bitField0_ = (bitField0_ & ~0x00000001);
accountID_ = null;
if (accountIDBuilder_ != null) {
accountIDBuilder_.dispose();
accountIDBuilder_ = null;
}
onChanged();
return this;
}
/**
*
**
* The Account ID that is being proxy staked to
*
*
* .proto.AccountID accountID = 1;
*/
public com.hedera.hashgraph.sdk.proto.AccountID.Builder getAccountIDBuilder() {
bitField0_ |= 0x00000001;
onChanged();
return getAccountIDFieldBuilder().getBuilder();
}
/**
*
**
* The Account ID that is being proxy staked to
*
*
* .proto.AccountID accountID = 1;
*/
public com.hedera.hashgraph.sdk.proto.AccountIDOrBuilder getAccountIDOrBuilder() {
if (accountIDBuilder_ != null) {
return accountIDBuilder_.getMessageOrBuilder();
} else {
return accountID_ == null ?
com.hedera.hashgraph.sdk.proto.AccountID.getDefaultInstance() : accountID_;
}
}
/**
*
**
* The Account ID that is being proxy staked to
*
*
* .proto.AccountID accountID = 1;
*/
private com.google.protobuf.SingleFieldBuilderV3<
com.hedera.hashgraph.sdk.proto.AccountID, com.hedera.hashgraph.sdk.proto.AccountID.Builder, com.hedera.hashgraph.sdk.proto.AccountIDOrBuilder>
getAccountIDFieldBuilder() {
if (accountIDBuilder_ == null) {
accountIDBuilder_ = new com.google.protobuf.SingleFieldBuilderV3<
com.hedera.hashgraph.sdk.proto.AccountID, com.hedera.hashgraph.sdk.proto.AccountID.Builder, com.hedera.hashgraph.sdk.proto.AccountIDOrBuilder>(
getAccountID(),
getParentForChildren(),
isClean());
accountID_ = null;
}
return accountIDBuilder_;
}
private java.util.List proxyStaker_ =
java.util.Collections.emptyList();
private void ensureProxyStakerIsMutable() {
if (!((bitField0_ & 0x00000002) != 0)) {
proxyStaker_ = new java.util.ArrayList(proxyStaker_);
bitField0_ |= 0x00000002;
}
}
private com.google.protobuf.RepeatedFieldBuilderV3<
com.hedera.hashgraph.sdk.proto.ProxyStaker, com.hedera.hashgraph.sdk.proto.ProxyStaker.Builder, com.hedera.hashgraph.sdk.proto.ProxyStakerOrBuilder> proxyStakerBuilder_;
/**
*
**
* Each of the proxy staking accounts, and the amount they are proxy staking
*
*
* repeated .proto.ProxyStaker proxyStaker = 2;
*/
public java.util.List getProxyStakerList() {
if (proxyStakerBuilder_ == null) {
return java.util.Collections.unmodifiableList(proxyStaker_);
} else {
return proxyStakerBuilder_.getMessageList();
}
}
/**
*
**
* Each of the proxy staking accounts, and the amount they are proxy staking
*
*
* repeated .proto.ProxyStaker proxyStaker = 2;
*/
public int getProxyStakerCount() {
if (proxyStakerBuilder_ == null) {
return proxyStaker_.size();
} else {
return proxyStakerBuilder_.getCount();
}
}
/**
*
**
* Each of the proxy staking accounts, and the amount they are proxy staking
*
*
* repeated .proto.ProxyStaker proxyStaker = 2;
*/
public com.hedera.hashgraph.sdk.proto.ProxyStaker getProxyStaker(int index) {
if (proxyStakerBuilder_ == null) {
return proxyStaker_.get(index);
} else {
return proxyStakerBuilder_.getMessage(index);
}
}
/**
*
**
* Each of the proxy staking accounts, and the amount they are proxy staking
*
*
* repeated .proto.ProxyStaker proxyStaker = 2;
*/
public Builder setProxyStaker(
int index, com.hedera.hashgraph.sdk.proto.ProxyStaker value) {
if (proxyStakerBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
ensureProxyStakerIsMutable();
proxyStaker_.set(index, value);
onChanged();
} else {
proxyStakerBuilder_.setMessage(index, value);
}
return this;
}
/**
*
**
* Each of the proxy staking accounts, and the amount they are proxy staking
*
*
* repeated .proto.ProxyStaker proxyStaker = 2;
*/
public Builder setProxyStaker(
int index, com.hedera.hashgraph.sdk.proto.ProxyStaker.Builder builderForValue) {
if (proxyStakerBuilder_ == null) {
ensureProxyStakerIsMutable();
proxyStaker_.set(index, builderForValue.build());
onChanged();
} else {
proxyStakerBuilder_.setMessage(index, builderForValue.build());
}
return this;
}
/**
*
**
* Each of the proxy staking accounts, and the amount they are proxy staking
*
*
* repeated .proto.ProxyStaker proxyStaker = 2;
*/
public Builder addProxyStaker(com.hedera.hashgraph.sdk.proto.ProxyStaker value) {
if (proxyStakerBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
ensureProxyStakerIsMutable();
proxyStaker_.add(value);
onChanged();
} else {
proxyStakerBuilder_.addMessage(value);
}
return this;
}
/**
*
**
* Each of the proxy staking accounts, and the amount they are proxy staking
*
*
* repeated .proto.ProxyStaker proxyStaker = 2;
*/
public Builder addProxyStaker(
int index, com.hedera.hashgraph.sdk.proto.ProxyStaker value) {
if (proxyStakerBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
ensureProxyStakerIsMutable();
proxyStaker_.add(index, value);
onChanged();
} else {
proxyStakerBuilder_.addMessage(index, value);
}
return this;
}
/**
*
**
* Each of the proxy staking accounts, and the amount they are proxy staking
*
*
* repeated .proto.ProxyStaker proxyStaker = 2;
*/
public Builder addProxyStaker(
com.hedera.hashgraph.sdk.proto.ProxyStaker.Builder builderForValue) {
if (proxyStakerBuilder_ == null) {
ensureProxyStakerIsMutable();
proxyStaker_.add(builderForValue.build());
onChanged();
} else {
proxyStakerBuilder_.addMessage(builderForValue.build());
}
return this;
}
/**
*
**
* Each of the proxy staking accounts, and the amount they are proxy staking
*
*
* repeated .proto.ProxyStaker proxyStaker = 2;
*/
public Builder addProxyStaker(
int index, com.hedera.hashgraph.sdk.proto.ProxyStaker.Builder builderForValue) {
if (proxyStakerBuilder_ == null) {
ensureProxyStakerIsMutable();
proxyStaker_.add(index, builderForValue.build());
onChanged();
} else {
proxyStakerBuilder_.addMessage(index, builderForValue.build());
}
return this;
}
/**
*
**
* Each of the proxy staking accounts, and the amount they are proxy staking
*
*
* repeated .proto.ProxyStaker proxyStaker = 2;
*/
public Builder addAllProxyStaker(
java.lang.Iterable extends com.hedera.hashgraph.sdk.proto.ProxyStaker> values) {
if (proxyStakerBuilder_ == null) {
ensureProxyStakerIsMutable();
com.google.protobuf.AbstractMessageLite.Builder.addAll(
values, proxyStaker_);
onChanged();
} else {
proxyStakerBuilder_.addAllMessages(values);
}
return this;
}
/**
*
**
* Each of the proxy staking accounts, and the amount they are proxy staking
*
*
* repeated .proto.ProxyStaker proxyStaker = 2;
*/
public Builder clearProxyStaker() {
if (proxyStakerBuilder_ == null) {
proxyStaker_ = java.util.Collections.emptyList();
bitField0_ = (bitField0_ & ~0x00000002);
onChanged();
} else {
proxyStakerBuilder_.clear();
}
return this;
}
/**
*
**
* Each of the proxy staking accounts, and the amount they are proxy staking
*
*
* repeated .proto.ProxyStaker proxyStaker = 2;
*/
public Builder removeProxyStaker(int index) {
if (proxyStakerBuilder_ == null) {
ensureProxyStakerIsMutable();
proxyStaker_.remove(index);
onChanged();
} else {
proxyStakerBuilder_.remove(index);
}
return this;
}
/**
*
**
* Each of the proxy staking accounts, and the amount they are proxy staking
*
*
* repeated .proto.ProxyStaker proxyStaker = 2;
*/
public com.hedera.hashgraph.sdk.proto.ProxyStaker.Builder getProxyStakerBuilder(
int index) {
return getProxyStakerFieldBuilder().getBuilder(index);
}
/**
*
**
* Each of the proxy staking accounts, and the amount they are proxy staking
*
*
* repeated .proto.ProxyStaker proxyStaker = 2;
*/
public com.hedera.hashgraph.sdk.proto.ProxyStakerOrBuilder getProxyStakerOrBuilder(
int index) {
if (proxyStakerBuilder_ == null) {
return proxyStaker_.get(index); } else {
return proxyStakerBuilder_.getMessageOrBuilder(index);
}
}
/**
*
**
* Each of the proxy staking accounts, and the amount they are proxy staking
*
*
* repeated .proto.ProxyStaker proxyStaker = 2;
*/
public java.util.List extends com.hedera.hashgraph.sdk.proto.ProxyStakerOrBuilder>
getProxyStakerOrBuilderList() {
if (proxyStakerBuilder_ != null) {
return proxyStakerBuilder_.getMessageOrBuilderList();
} else {
return java.util.Collections.unmodifiableList(proxyStaker_);
}
}
/**
*
**
* Each of the proxy staking accounts, and the amount they are proxy staking
*
*
* repeated .proto.ProxyStaker proxyStaker = 2;
*/
public com.hedera.hashgraph.sdk.proto.ProxyStaker.Builder addProxyStakerBuilder() {
return getProxyStakerFieldBuilder().addBuilder(
com.hedera.hashgraph.sdk.proto.ProxyStaker.getDefaultInstance());
}
/**
*
**
* Each of the proxy staking accounts, and the amount they are proxy staking
*
*
* repeated .proto.ProxyStaker proxyStaker = 2;
*/
public com.hedera.hashgraph.sdk.proto.ProxyStaker.Builder addProxyStakerBuilder(
int index) {
return getProxyStakerFieldBuilder().addBuilder(
index, com.hedera.hashgraph.sdk.proto.ProxyStaker.getDefaultInstance());
}
/**
*
**
* Each of the proxy staking accounts, and the amount they are proxy staking
*
*
* repeated .proto.ProxyStaker proxyStaker = 2;
*/
public java.util.List
getProxyStakerBuilderList() {
return getProxyStakerFieldBuilder().getBuilderList();
}
private com.google.protobuf.RepeatedFieldBuilderV3<
com.hedera.hashgraph.sdk.proto.ProxyStaker, com.hedera.hashgraph.sdk.proto.ProxyStaker.Builder, com.hedera.hashgraph.sdk.proto.ProxyStakerOrBuilder>
getProxyStakerFieldBuilder() {
if (proxyStakerBuilder_ == null) {
proxyStakerBuilder_ = new com.google.protobuf.RepeatedFieldBuilderV3<
com.hedera.hashgraph.sdk.proto.ProxyStaker, com.hedera.hashgraph.sdk.proto.ProxyStaker.Builder, com.hedera.hashgraph.sdk.proto.ProxyStakerOrBuilder>(
proxyStaker_,
((bitField0_ & 0x00000002) != 0),
getParentForChildren(),
isClean());
proxyStaker_ = null;
}
return proxyStakerBuilder_;
}
@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:proto.AllProxyStakers)
}
// @@protoc_insertion_point(class_scope:proto.AllProxyStakers)
private static final com.hedera.hashgraph.sdk.proto.AllProxyStakers DEFAULT_INSTANCE;
static {
DEFAULT_INSTANCE = new com.hedera.hashgraph.sdk.proto.AllProxyStakers();
}
public static com.hedera.hashgraph.sdk.proto.AllProxyStakers getDefaultInstance() {
return DEFAULT_INSTANCE;
}
private static final com.google.protobuf.Parser
PARSER = new com.google.protobuf.AbstractParser() {
@java.lang.Override
public AllProxyStakers 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 parser() {
return PARSER;
}
@java.lang.Override
public com.google.protobuf.Parser getParserForType() {
return PARSER;
}
@java.lang.Override
public com.hedera.hashgraph.sdk.proto.AllProxyStakers getDefaultInstanceForType() {
return DEFAULT_INSTANCE;
}
}