All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.hedera.hashgraph.sdk.proto.CryptoGetStakersResponse Maven / Gradle / Ivy

The newest version!
// 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;

/**
 * 
 **
 * Response when the client sends the node CryptoGetStakersQuery
 * 
* * Protobuf type {@code proto.CryptoGetStakersResponse} */ public final class CryptoGetStakersResponse extends com.google.protobuf.GeneratedMessageV3 implements // @@protoc_insertion_point(message_implements:proto.CryptoGetStakersResponse) CryptoGetStakersResponseOrBuilder { private static final long serialVersionUID = 0L; // Use CryptoGetStakersResponse.newBuilder() to construct. private CryptoGetStakersResponse(com.google.protobuf.GeneratedMessageV3.Builder builder) { super(builder); } private CryptoGetStakersResponse() { } @java.lang.Override @SuppressWarnings({"unused"}) protected java.lang.Object newInstance( UnusedPrivateParameter unused) { return new CryptoGetStakersResponse(); } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { return com.hedera.hashgraph.sdk.proto.CryptoGetStakers.internal_static_proto_CryptoGetStakersResponse_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable() { return com.hedera.hashgraph.sdk.proto.CryptoGetStakers.internal_static_proto_CryptoGetStakersResponse_fieldAccessorTable .ensureFieldAccessorsInitialized( com.hedera.hashgraph.sdk.proto.CryptoGetStakersResponse.class, com.hedera.hashgraph.sdk.proto.CryptoGetStakersResponse.Builder.class); } private int bitField0_; public static final int HEADER_FIELD_NUMBER = 1; private com.hedera.hashgraph.sdk.proto.ResponseHeader header_; /** *
   **
   * Standard response from node to client, including the requested fields: cost, or state proof,
   * or both, or neither
   * 
* * .proto.ResponseHeader header = 1; * @return Whether the header field is set. */ @java.lang.Override public boolean hasHeader() { return ((bitField0_ & 0x00000001) != 0); } /** *
   **
   * Standard response from node to client, including the requested fields: cost, or state proof,
   * or both, or neither
   * 
* * .proto.ResponseHeader header = 1; * @return The header. */ @java.lang.Override public com.hedera.hashgraph.sdk.proto.ResponseHeader getHeader() { return header_ == null ? com.hedera.hashgraph.sdk.proto.ResponseHeader.getDefaultInstance() : header_; } /** *
   **
   * Standard response from node to client, including the requested fields: cost, or state proof,
   * or both, or neither
   * 
* * .proto.ResponseHeader header = 1; */ @java.lang.Override public com.hedera.hashgraph.sdk.proto.ResponseHeaderOrBuilder getHeaderOrBuilder() { return header_ == null ? com.hedera.hashgraph.sdk.proto.ResponseHeader.getDefaultInstance() : header_; } public static final int STAKERS_FIELD_NUMBER = 3; private com.hedera.hashgraph.sdk.proto.AllProxyStakers stakers_; /** *
   **
   * List of accounts proxy staking to this account, and the amount each is currently proxy
   * staking
   * 
* * .proto.AllProxyStakers stakers = 3; * @return Whether the stakers field is set. */ @java.lang.Override public boolean hasStakers() { return ((bitField0_ & 0x00000002) != 0); } /** *
   **
   * List of accounts proxy staking to this account, and the amount each is currently proxy
   * staking
   * 
* * .proto.AllProxyStakers stakers = 3; * @return The stakers. */ @java.lang.Override public com.hedera.hashgraph.sdk.proto.AllProxyStakers getStakers() { return stakers_ == null ? com.hedera.hashgraph.sdk.proto.AllProxyStakers.getDefaultInstance() : stakers_; } /** *
   **
   * List of accounts proxy staking to this account, and the amount each is currently proxy
   * staking
   * 
* * .proto.AllProxyStakers stakers = 3; */ @java.lang.Override public com.hedera.hashgraph.sdk.proto.AllProxyStakersOrBuilder getStakersOrBuilder() { return stakers_ == null ? com.hedera.hashgraph.sdk.proto.AllProxyStakers.getDefaultInstance() : stakers_; } 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, getHeader()); } if (((bitField0_ & 0x00000002) != 0)) { output.writeMessage(3, getStakers()); } 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, getHeader()); } if (((bitField0_ & 0x00000002) != 0)) { size += com.google.protobuf.CodedOutputStream .computeMessageSize(3, getStakers()); } 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.CryptoGetStakersResponse)) { return super.equals(obj); } com.hedera.hashgraph.sdk.proto.CryptoGetStakersResponse other = (com.hedera.hashgraph.sdk.proto.CryptoGetStakersResponse) obj; if (hasHeader() != other.hasHeader()) return false; if (hasHeader()) { if (!getHeader() .equals(other.getHeader())) return false; } if (hasStakers() != other.hasStakers()) return false; if (hasStakers()) { if (!getStakers() .equals(other.getStakers())) 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 (hasHeader()) { hash = (37 * hash) + HEADER_FIELD_NUMBER; hash = (53 * hash) + getHeader().hashCode(); } if (hasStakers()) { hash = (37 * hash) + STAKERS_FIELD_NUMBER; hash = (53 * hash) + getStakers().hashCode(); } hash = (29 * hash) + getUnknownFields().hashCode(); memoizedHashCode = hash; return hash; } public static com.hedera.hashgraph.sdk.proto.CryptoGetStakersResponse parseFrom( java.nio.ByteBuffer data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static com.hedera.hashgraph.sdk.proto.CryptoGetStakersResponse 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.CryptoGetStakersResponse parseFrom( com.google.protobuf.ByteString data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static com.hedera.hashgraph.sdk.proto.CryptoGetStakersResponse 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.CryptoGetStakersResponse parseFrom(byte[] data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static com.hedera.hashgraph.sdk.proto.CryptoGetStakersResponse 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.CryptoGetStakersResponse parseFrom(java.io.InputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseWithIOException(PARSER, input); } public static com.hedera.hashgraph.sdk.proto.CryptoGetStakersResponse 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.CryptoGetStakersResponse parseDelimitedFrom(java.io.InputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseDelimitedWithIOException(PARSER, input); } public static com.hedera.hashgraph.sdk.proto.CryptoGetStakersResponse 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.CryptoGetStakersResponse 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.CryptoGetStakersResponse 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.CryptoGetStakersResponse 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; } /** *
   **
   * Response when the client sends the node CryptoGetStakersQuery
   * 
* * Protobuf type {@code proto.CryptoGetStakersResponse} */ public static final class Builder extends com.google.protobuf.GeneratedMessageV3.Builder implements // @@protoc_insertion_point(builder_implements:proto.CryptoGetStakersResponse) com.hedera.hashgraph.sdk.proto.CryptoGetStakersResponseOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { return com.hedera.hashgraph.sdk.proto.CryptoGetStakers.internal_static_proto_CryptoGetStakersResponse_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable() { return com.hedera.hashgraph.sdk.proto.CryptoGetStakers.internal_static_proto_CryptoGetStakersResponse_fieldAccessorTable .ensureFieldAccessorsInitialized( com.hedera.hashgraph.sdk.proto.CryptoGetStakersResponse.class, com.hedera.hashgraph.sdk.proto.CryptoGetStakersResponse.Builder.class); } // Construct using com.hedera.hashgraph.sdk.proto.CryptoGetStakersResponse.newBuilder() private Builder() { maybeForceBuilderInitialization(); } private Builder( com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { super(parent); maybeForceBuilderInitialization(); } private void maybeForceBuilderInitialization() { if (com.google.protobuf.GeneratedMessageV3 .alwaysUseFieldBuilders) { getHeaderFieldBuilder(); getStakersFieldBuilder(); } } @java.lang.Override public Builder clear() { super.clear(); bitField0_ = 0; header_ = null; if (headerBuilder_ != null) { headerBuilder_.dispose(); headerBuilder_ = null; } stakers_ = null; if (stakersBuilder_ != null) { stakersBuilder_.dispose(); stakersBuilder_ = null; } return this; } @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { return com.hedera.hashgraph.sdk.proto.CryptoGetStakers.internal_static_proto_CryptoGetStakersResponse_descriptor; } @java.lang.Override public com.hedera.hashgraph.sdk.proto.CryptoGetStakersResponse getDefaultInstanceForType() { return com.hedera.hashgraph.sdk.proto.CryptoGetStakersResponse.getDefaultInstance(); } @java.lang.Override public com.hedera.hashgraph.sdk.proto.CryptoGetStakersResponse build() { com.hedera.hashgraph.sdk.proto.CryptoGetStakersResponse result = buildPartial(); if (!result.isInitialized()) { throw newUninitializedMessageException(result); } return result; } @java.lang.Override public com.hedera.hashgraph.sdk.proto.CryptoGetStakersResponse buildPartial() { com.hedera.hashgraph.sdk.proto.CryptoGetStakersResponse result = new com.hedera.hashgraph.sdk.proto.CryptoGetStakersResponse(this); if (bitField0_ != 0) { buildPartial0(result); } onBuilt(); return result; } private void buildPartial0(com.hedera.hashgraph.sdk.proto.CryptoGetStakersResponse result) { int from_bitField0_ = bitField0_; int to_bitField0_ = 0; if (((from_bitField0_ & 0x00000001) != 0)) { result.header_ = headerBuilder_ == null ? header_ : headerBuilder_.build(); to_bitField0_ |= 0x00000001; } if (((from_bitField0_ & 0x00000002) != 0)) { result.stakers_ = stakersBuilder_ == null ? stakers_ : stakersBuilder_.build(); to_bitField0_ |= 0x00000002; } 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.CryptoGetStakersResponse) { return mergeFrom((com.hedera.hashgraph.sdk.proto.CryptoGetStakersResponse)other); } else { super.mergeFrom(other); return this; } } public Builder mergeFrom(com.hedera.hashgraph.sdk.proto.CryptoGetStakersResponse other) { if (other == com.hedera.hashgraph.sdk.proto.CryptoGetStakersResponse.getDefaultInstance()) return this; if (other.hasHeader()) { mergeHeader(other.getHeader()); } if (other.hasStakers()) { mergeStakers(other.getStakers()); } 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( getHeaderFieldBuilder().getBuilder(), extensionRegistry); bitField0_ |= 0x00000001; break; } // case 10 case 26: { input.readMessage( getStakersFieldBuilder().getBuilder(), extensionRegistry); bitField0_ |= 0x00000002; break; } // case 26 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.ResponseHeader header_; private com.google.protobuf.SingleFieldBuilderV3< com.hedera.hashgraph.sdk.proto.ResponseHeader, com.hedera.hashgraph.sdk.proto.ResponseHeader.Builder, com.hedera.hashgraph.sdk.proto.ResponseHeaderOrBuilder> headerBuilder_; /** *
     **
     * Standard response from node to client, including the requested fields: cost, or state proof,
     * or both, or neither
     * 
* * .proto.ResponseHeader header = 1; * @return Whether the header field is set. */ public boolean hasHeader() { return ((bitField0_ & 0x00000001) != 0); } /** *
     **
     * Standard response from node to client, including the requested fields: cost, or state proof,
     * or both, or neither
     * 
* * .proto.ResponseHeader header = 1; * @return The header. */ public com.hedera.hashgraph.sdk.proto.ResponseHeader getHeader() { if (headerBuilder_ == null) { return header_ == null ? com.hedera.hashgraph.sdk.proto.ResponseHeader.getDefaultInstance() : header_; } else { return headerBuilder_.getMessage(); } } /** *
     **
     * Standard response from node to client, including the requested fields: cost, or state proof,
     * or both, or neither
     * 
* * .proto.ResponseHeader header = 1; */ public Builder setHeader(com.hedera.hashgraph.sdk.proto.ResponseHeader value) { if (headerBuilder_ == null) { if (value == null) { throw new NullPointerException(); } header_ = value; } else { headerBuilder_.setMessage(value); } bitField0_ |= 0x00000001; onChanged(); return this; } /** *
     **
     * Standard response from node to client, including the requested fields: cost, or state proof,
     * or both, or neither
     * 
* * .proto.ResponseHeader header = 1; */ public Builder setHeader( com.hedera.hashgraph.sdk.proto.ResponseHeader.Builder builderForValue) { if (headerBuilder_ == null) { header_ = builderForValue.build(); } else { headerBuilder_.setMessage(builderForValue.build()); } bitField0_ |= 0x00000001; onChanged(); return this; } /** *
     **
     * Standard response from node to client, including the requested fields: cost, or state proof,
     * or both, or neither
     * 
* * .proto.ResponseHeader header = 1; */ public Builder mergeHeader(com.hedera.hashgraph.sdk.proto.ResponseHeader value) { if (headerBuilder_ == null) { if (((bitField0_ & 0x00000001) != 0) && header_ != null && header_ != com.hedera.hashgraph.sdk.proto.ResponseHeader.getDefaultInstance()) { getHeaderBuilder().mergeFrom(value); } else { header_ = value; } } else { headerBuilder_.mergeFrom(value); } if (header_ != null) { bitField0_ |= 0x00000001; onChanged(); } return this; } /** *
     **
     * Standard response from node to client, including the requested fields: cost, or state proof,
     * or both, or neither
     * 
* * .proto.ResponseHeader header = 1; */ public Builder clearHeader() { bitField0_ = (bitField0_ & ~0x00000001); header_ = null; if (headerBuilder_ != null) { headerBuilder_.dispose(); headerBuilder_ = null; } onChanged(); return this; } /** *
     **
     * Standard response from node to client, including the requested fields: cost, or state proof,
     * or both, or neither
     * 
* * .proto.ResponseHeader header = 1; */ public com.hedera.hashgraph.sdk.proto.ResponseHeader.Builder getHeaderBuilder() { bitField0_ |= 0x00000001; onChanged(); return getHeaderFieldBuilder().getBuilder(); } /** *
     **
     * Standard response from node to client, including the requested fields: cost, or state proof,
     * or both, or neither
     * 
* * .proto.ResponseHeader header = 1; */ public com.hedera.hashgraph.sdk.proto.ResponseHeaderOrBuilder getHeaderOrBuilder() { if (headerBuilder_ != null) { return headerBuilder_.getMessageOrBuilder(); } else { return header_ == null ? com.hedera.hashgraph.sdk.proto.ResponseHeader.getDefaultInstance() : header_; } } /** *
     **
     * Standard response from node to client, including the requested fields: cost, or state proof,
     * or both, or neither
     * 
* * .proto.ResponseHeader header = 1; */ private com.google.protobuf.SingleFieldBuilderV3< com.hedera.hashgraph.sdk.proto.ResponseHeader, com.hedera.hashgraph.sdk.proto.ResponseHeader.Builder, com.hedera.hashgraph.sdk.proto.ResponseHeaderOrBuilder> getHeaderFieldBuilder() { if (headerBuilder_ == null) { headerBuilder_ = new com.google.protobuf.SingleFieldBuilderV3< com.hedera.hashgraph.sdk.proto.ResponseHeader, com.hedera.hashgraph.sdk.proto.ResponseHeader.Builder, com.hedera.hashgraph.sdk.proto.ResponseHeaderOrBuilder>( getHeader(), getParentForChildren(), isClean()); header_ = null; } return headerBuilder_; } private com.hedera.hashgraph.sdk.proto.AllProxyStakers stakers_; private com.google.protobuf.SingleFieldBuilderV3< com.hedera.hashgraph.sdk.proto.AllProxyStakers, com.hedera.hashgraph.sdk.proto.AllProxyStakers.Builder, com.hedera.hashgraph.sdk.proto.AllProxyStakersOrBuilder> stakersBuilder_; /** *
     **
     * List of accounts proxy staking to this account, and the amount each is currently proxy
     * staking
     * 
* * .proto.AllProxyStakers stakers = 3; * @return Whether the stakers field is set. */ public boolean hasStakers() { return ((bitField0_ & 0x00000002) != 0); } /** *
     **
     * List of accounts proxy staking to this account, and the amount each is currently proxy
     * staking
     * 
* * .proto.AllProxyStakers stakers = 3; * @return The stakers. */ public com.hedera.hashgraph.sdk.proto.AllProxyStakers getStakers() { if (stakersBuilder_ == null) { return stakers_ == null ? com.hedera.hashgraph.sdk.proto.AllProxyStakers.getDefaultInstance() : stakers_; } else { return stakersBuilder_.getMessage(); } } /** *
     **
     * List of accounts proxy staking to this account, and the amount each is currently proxy
     * staking
     * 
* * .proto.AllProxyStakers stakers = 3; */ public Builder setStakers(com.hedera.hashgraph.sdk.proto.AllProxyStakers value) { if (stakersBuilder_ == null) { if (value == null) { throw new NullPointerException(); } stakers_ = value; } else { stakersBuilder_.setMessage(value); } bitField0_ |= 0x00000002; onChanged(); return this; } /** *
     **
     * List of accounts proxy staking to this account, and the amount each is currently proxy
     * staking
     * 
* * .proto.AllProxyStakers stakers = 3; */ public Builder setStakers( com.hedera.hashgraph.sdk.proto.AllProxyStakers.Builder builderForValue) { if (stakersBuilder_ == null) { stakers_ = builderForValue.build(); } else { stakersBuilder_.setMessage(builderForValue.build()); } bitField0_ |= 0x00000002; onChanged(); return this; } /** *
     **
     * List of accounts proxy staking to this account, and the amount each is currently proxy
     * staking
     * 
* * .proto.AllProxyStakers stakers = 3; */ public Builder mergeStakers(com.hedera.hashgraph.sdk.proto.AllProxyStakers value) { if (stakersBuilder_ == null) { if (((bitField0_ & 0x00000002) != 0) && stakers_ != null && stakers_ != com.hedera.hashgraph.sdk.proto.AllProxyStakers.getDefaultInstance()) { getStakersBuilder().mergeFrom(value); } else { stakers_ = value; } } else { stakersBuilder_.mergeFrom(value); } if (stakers_ != null) { bitField0_ |= 0x00000002; onChanged(); } return this; } /** *
     **
     * List of accounts proxy staking to this account, and the amount each is currently proxy
     * staking
     * 
* * .proto.AllProxyStakers stakers = 3; */ public Builder clearStakers() { bitField0_ = (bitField0_ & ~0x00000002); stakers_ = null; if (stakersBuilder_ != null) { stakersBuilder_.dispose(); stakersBuilder_ = null; } onChanged(); return this; } /** *
     **
     * List of accounts proxy staking to this account, and the amount each is currently proxy
     * staking
     * 
* * .proto.AllProxyStakers stakers = 3; */ public com.hedera.hashgraph.sdk.proto.AllProxyStakers.Builder getStakersBuilder() { bitField0_ |= 0x00000002; onChanged(); return getStakersFieldBuilder().getBuilder(); } /** *
     **
     * List of accounts proxy staking to this account, and the amount each is currently proxy
     * staking
     * 
* * .proto.AllProxyStakers stakers = 3; */ public com.hedera.hashgraph.sdk.proto.AllProxyStakersOrBuilder getStakersOrBuilder() { if (stakersBuilder_ != null) { return stakersBuilder_.getMessageOrBuilder(); } else { return stakers_ == null ? com.hedera.hashgraph.sdk.proto.AllProxyStakers.getDefaultInstance() : stakers_; } } /** *
     **
     * List of accounts proxy staking to this account, and the amount each is currently proxy
     * staking
     * 
* * .proto.AllProxyStakers stakers = 3; */ private com.google.protobuf.SingleFieldBuilderV3< com.hedera.hashgraph.sdk.proto.AllProxyStakers, com.hedera.hashgraph.sdk.proto.AllProxyStakers.Builder, com.hedera.hashgraph.sdk.proto.AllProxyStakersOrBuilder> getStakersFieldBuilder() { if (stakersBuilder_ == null) { stakersBuilder_ = new com.google.protobuf.SingleFieldBuilderV3< com.hedera.hashgraph.sdk.proto.AllProxyStakers, com.hedera.hashgraph.sdk.proto.AllProxyStakers.Builder, com.hedera.hashgraph.sdk.proto.AllProxyStakersOrBuilder>( getStakers(), getParentForChildren(), isClean()); stakers_ = null; } return stakersBuilder_; } @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.CryptoGetStakersResponse) } // @@protoc_insertion_point(class_scope:proto.CryptoGetStakersResponse) private static final com.hedera.hashgraph.sdk.proto.CryptoGetStakersResponse DEFAULT_INSTANCE; static { DEFAULT_INSTANCE = new com.hedera.hashgraph.sdk.proto.CryptoGetStakersResponse(); } public static com.hedera.hashgraph.sdk.proto.CryptoGetStakersResponse getDefaultInstance() { return DEFAULT_INSTANCE; } private static final com.google.protobuf.Parser PARSER = new com.google.protobuf.AbstractParser() { @java.lang.Override public CryptoGetStakersResponse 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.CryptoGetStakersResponse getDefaultInstanceForType() { return DEFAULT_INSTANCE; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy