com.hedera.hashgraph.sdk.proto.Roster 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: roster.proto
// Protobuf Java Version: 3.25.3
package com.hedera.hashgraph.sdk.proto;
/**
*
**
* A single roster in the network state.
* <p>
* The roster SHALL be a list of `RosterEntry` objects.
*
*
* Protobuf type {@code com.hedera.hapi.node.state.roster.Roster}
*/
public final class Roster extends
com.google.protobuf.GeneratedMessageV3 implements
// @@protoc_insertion_point(message_implements:com.hedera.hapi.node.state.roster.Roster)
RosterOrBuilder {
private static final long serialVersionUID = 0L;
// Use Roster.newBuilder() to construct.
private Roster(com.google.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
}
private Roster() {
rosterEntries_ = java.util.Collections.emptyList();
}
@java.lang.Override
@SuppressWarnings({"unused"})
protected java.lang.Object newInstance(
UnusedPrivateParameter unused) {
return new Roster();
}
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return com.hedera.hashgraph.sdk.proto.RosterOuterClass.internal_static_com_hedera_hapi_node_state_roster_Roster_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return com.hedera.hashgraph.sdk.proto.RosterOuterClass.internal_static_com_hedera_hapi_node_state_roster_Roster_fieldAccessorTable
.ensureFieldAccessorsInitialized(
com.hedera.hashgraph.sdk.proto.Roster.class, com.hedera.hashgraph.sdk.proto.Roster.Builder.class);
}
public static final int ROSTER_ENTRIES_FIELD_NUMBER = 1;
@SuppressWarnings("serial")
private java.util.List rosterEntries_;
/**
*
**
* List of roster entries, one per consensus node.
* <p>
* This list SHALL contain roster entries in natural order of ascending node ids.
* This list SHALL NOT be empty.<br/>
*
*
* repeated .com.hedera.hapi.node.state.roster.RosterEntry roster_entries = 1;
*/
@java.lang.Override
public java.util.List getRosterEntriesList() {
return rosterEntries_;
}
/**
*
**
* List of roster entries, one per consensus node.
* <p>
* This list SHALL contain roster entries in natural order of ascending node ids.
* This list SHALL NOT be empty.<br/>
*
*
* repeated .com.hedera.hapi.node.state.roster.RosterEntry roster_entries = 1;
*/
@java.lang.Override
public java.util.List extends com.hedera.hashgraph.sdk.proto.RosterEntryOrBuilder>
getRosterEntriesOrBuilderList() {
return rosterEntries_;
}
/**
*
**
* List of roster entries, one per consensus node.
* <p>
* This list SHALL contain roster entries in natural order of ascending node ids.
* This list SHALL NOT be empty.<br/>
*
*
* repeated .com.hedera.hapi.node.state.roster.RosterEntry roster_entries = 1;
*/
@java.lang.Override
public int getRosterEntriesCount() {
return rosterEntries_.size();
}
/**
*
**
* List of roster entries, one per consensus node.
* <p>
* This list SHALL contain roster entries in natural order of ascending node ids.
* This list SHALL NOT be empty.<br/>
*
*
* repeated .com.hedera.hapi.node.state.roster.RosterEntry roster_entries = 1;
*/
@java.lang.Override
public com.hedera.hashgraph.sdk.proto.RosterEntry getRosterEntries(int index) {
return rosterEntries_.get(index);
}
/**
*
**
* List of roster entries, one per consensus node.
* <p>
* This list SHALL contain roster entries in natural order of ascending node ids.
* This list SHALL NOT be empty.<br/>
*
*
* repeated .com.hedera.hapi.node.state.roster.RosterEntry roster_entries = 1;
*/
@java.lang.Override
public com.hedera.hashgraph.sdk.proto.RosterEntryOrBuilder getRosterEntriesOrBuilder(
int index) {
return rosterEntries_.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 < rosterEntries_.size(); i++) {
output.writeMessage(1, rosterEntries_.get(i));
}
getUnknownFields().writeTo(output);
}
@java.lang.Override
public int getSerializedSize() {
int size = memoizedSize;
if (size != -1) return size;
size = 0;
for (int i = 0; i < rosterEntries_.size(); i++) {
size += com.google.protobuf.CodedOutputStream
.computeMessageSize(1, rosterEntries_.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.Roster)) {
return super.equals(obj);
}
com.hedera.hashgraph.sdk.proto.Roster other = (com.hedera.hashgraph.sdk.proto.Roster) obj;
if (!getRosterEntriesList()
.equals(other.getRosterEntriesList())) 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 (getRosterEntriesCount() > 0) {
hash = (37 * hash) + ROSTER_ENTRIES_FIELD_NUMBER;
hash = (53 * hash) + getRosterEntriesList().hashCode();
}
hash = (29 * hash) + getUnknownFields().hashCode();
memoizedHashCode = hash;
return hash;
}
public static com.hedera.hashgraph.sdk.proto.Roster parseFrom(
java.nio.ByteBuffer data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.hedera.hashgraph.sdk.proto.Roster 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.Roster parseFrom(
com.google.protobuf.ByteString data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.hedera.hashgraph.sdk.proto.Roster 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.Roster parseFrom(byte[] data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.hedera.hashgraph.sdk.proto.Roster 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.Roster parseFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static com.hedera.hashgraph.sdk.proto.Roster 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.Roster parseDelimitedFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseDelimitedWithIOException(PARSER, input);
}
public static com.hedera.hashgraph.sdk.proto.Roster 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.Roster 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.Roster 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.Roster 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;
}
/**
*
**
* A single roster in the network state.
* <p>
* The roster SHALL be a list of `RosterEntry` objects.
*
*
* Protobuf type {@code com.hedera.hapi.node.state.roster.Roster}
*/
public static final class Builder extends
com.google.protobuf.GeneratedMessageV3.Builder implements
// @@protoc_insertion_point(builder_implements:com.hedera.hapi.node.state.roster.Roster)
com.hedera.hashgraph.sdk.proto.RosterOrBuilder {
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return com.hedera.hashgraph.sdk.proto.RosterOuterClass.internal_static_com_hedera_hapi_node_state_roster_Roster_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return com.hedera.hashgraph.sdk.proto.RosterOuterClass.internal_static_com_hedera_hapi_node_state_roster_Roster_fieldAccessorTable
.ensureFieldAccessorsInitialized(
com.hedera.hashgraph.sdk.proto.Roster.class, com.hedera.hashgraph.sdk.proto.Roster.Builder.class);
}
// Construct using com.hedera.hashgraph.sdk.proto.Roster.newBuilder()
private Builder() {
}
private Builder(
com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
super(parent);
}
@java.lang.Override
public Builder clear() {
super.clear();
bitField0_ = 0;
if (rosterEntriesBuilder_ == null) {
rosterEntries_ = java.util.Collections.emptyList();
} else {
rosterEntries_ = null;
rosterEntriesBuilder_.clear();
}
bitField0_ = (bitField0_ & ~0x00000001);
return this;
}
@java.lang.Override
public com.google.protobuf.Descriptors.Descriptor
getDescriptorForType() {
return com.hedera.hashgraph.sdk.proto.RosterOuterClass.internal_static_com_hedera_hapi_node_state_roster_Roster_descriptor;
}
@java.lang.Override
public com.hedera.hashgraph.sdk.proto.Roster getDefaultInstanceForType() {
return com.hedera.hashgraph.sdk.proto.Roster.getDefaultInstance();
}
@java.lang.Override
public com.hedera.hashgraph.sdk.proto.Roster build() {
com.hedera.hashgraph.sdk.proto.Roster result = buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
@java.lang.Override
public com.hedera.hashgraph.sdk.proto.Roster buildPartial() {
com.hedera.hashgraph.sdk.proto.Roster result = new com.hedera.hashgraph.sdk.proto.Roster(this);
buildPartialRepeatedFields(result);
if (bitField0_ != 0) { buildPartial0(result); }
onBuilt();
return result;
}
private void buildPartialRepeatedFields(com.hedera.hashgraph.sdk.proto.Roster result) {
if (rosterEntriesBuilder_ == null) {
if (((bitField0_ & 0x00000001) != 0)) {
rosterEntries_ = java.util.Collections.unmodifiableList(rosterEntries_);
bitField0_ = (bitField0_ & ~0x00000001);
}
result.rosterEntries_ = rosterEntries_;
} else {
result.rosterEntries_ = rosterEntriesBuilder_.build();
}
}
private void buildPartial0(com.hedera.hashgraph.sdk.proto.Roster result) {
int from_bitField0_ = 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.Roster) {
return mergeFrom((com.hedera.hashgraph.sdk.proto.Roster)other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(com.hedera.hashgraph.sdk.proto.Roster other) {
if (other == com.hedera.hashgraph.sdk.proto.Roster.getDefaultInstance()) return this;
if (rosterEntriesBuilder_ == null) {
if (!other.rosterEntries_.isEmpty()) {
if (rosterEntries_.isEmpty()) {
rosterEntries_ = other.rosterEntries_;
bitField0_ = (bitField0_ & ~0x00000001);
} else {
ensureRosterEntriesIsMutable();
rosterEntries_.addAll(other.rosterEntries_);
}
onChanged();
}
} else {
if (!other.rosterEntries_.isEmpty()) {
if (rosterEntriesBuilder_.isEmpty()) {
rosterEntriesBuilder_.dispose();
rosterEntriesBuilder_ = null;
rosterEntries_ = other.rosterEntries_;
bitField0_ = (bitField0_ & ~0x00000001);
rosterEntriesBuilder_ =
com.google.protobuf.GeneratedMessageV3.alwaysUseFieldBuilders ?
getRosterEntriesFieldBuilder() : null;
} else {
rosterEntriesBuilder_.addAllMessages(other.rosterEntries_);
}
}
}
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: {
com.hedera.hashgraph.sdk.proto.RosterEntry m =
input.readMessage(
com.hedera.hashgraph.sdk.proto.RosterEntry.parser(),
extensionRegistry);
if (rosterEntriesBuilder_ == null) {
ensureRosterEntriesIsMutable();
rosterEntries_.add(m);
} else {
rosterEntriesBuilder_.addMessage(m);
}
break;
} // case 10
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 java.util.List rosterEntries_ =
java.util.Collections.emptyList();
private void ensureRosterEntriesIsMutable() {
if (!((bitField0_ & 0x00000001) != 0)) {
rosterEntries_ = new java.util.ArrayList(rosterEntries_);
bitField0_ |= 0x00000001;
}
}
private com.google.protobuf.RepeatedFieldBuilderV3<
com.hedera.hashgraph.sdk.proto.RosterEntry, com.hedera.hashgraph.sdk.proto.RosterEntry.Builder, com.hedera.hashgraph.sdk.proto.RosterEntryOrBuilder> rosterEntriesBuilder_;
/**
*
**
* List of roster entries, one per consensus node.
* <p>
* This list SHALL contain roster entries in natural order of ascending node ids.
* This list SHALL NOT be empty.<br/>
*
*
* repeated .com.hedera.hapi.node.state.roster.RosterEntry roster_entries = 1;
*/
public java.util.List getRosterEntriesList() {
if (rosterEntriesBuilder_ == null) {
return java.util.Collections.unmodifiableList(rosterEntries_);
} else {
return rosterEntriesBuilder_.getMessageList();
}
}
/**
*
**
* List of roster entries, one per consensus node.
* <p>
* This list SHALL contain roster entries in natural order of ascending node ids.
* This list SHALL NOT be empty.<br/>
*
*
* repeated .com.hedera.hapi.node.state.roster.RosterEntry roster_entries = 1;
*/
public int getRosterEntriesCount() {
if (rosterEntriesBuilder_ == null) {
return rosterEntries_.size();
} else {
return rosterEntriesBuilder_.getCount();
}
}
/**
*
**
* List of roster entries, one per consensus node.
* <p>
* This list SHALL contain roster entries in natural order of ascending node ids.
* This list SHALL NOT be empty.<br/>
*
*
* repeated .com.hedera.hapi.node.state.roster.RosterEntry roster_entries = 1;
*/
public com.hedera.hashgraph.sdk.proto.RosterEntry getRosterEntries(int index) {
if (rosterEntriesBuilder_ == null) {
return rosterEntries_.get(index);
} else {
return rosterEntriesBuilder_.getMessage(index);
}
}
/**
*
**
* List of roster entries, one per consensus node.
* <p>
* This list SHALL contain roster entries in natural order of ascending node ids.
* This list SHALL NOT be empty.<br/>
*
*
* repeated .com.hedera.hapi.node.state.roster.RosterEntry roster_entries = 1;
*/
public Builder setRosterEntries(
int index, com.hedera.hashgraph.sdk.proto.RosterEntry value) {
if (rosterEntriesBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
ensureRosterEntriesIsMutable();
rosterEntries_.set(index, value);
onChanged();
} else {
rosterEntriesBuilder_.setMessage(index, value);
}
return this;
}
/**
*
**
* List of roster entries, one per consensus node.
* <p>
* This list SHALL contain roster entries in natural order of ascending node ids.
* This list SHALL NOT be empty.<br/>
*
*
* repeated .com.hedera.hapi.node.state.roster.RosterEntry roster_entries = 1;
*/
public Builder setRosterEntries(
int index, com.hedera.hashgraph.sdk.proto.RosterEntry.Builder builderForValue) {
if (rosterEntriesBuilder_ == null) {
ensureRosterEntriesIsMutable();
rosterEntries_.set(index, builderForValue.build());
onChanged();
} else {
rosterEntriesBuilder_.setMessage(index, builderForValue.build());
}
return this;
}
/**
*
**
* List of roster entries, one per consensus node.
* <p>
* This list SHALL contain roster entries in natural order of ascending node ids.
* This list SHALL NOT be empty.<br/>
*
*
* repeated .com.hedera.hapi.node.state.roster.RosterEntry roster_entries = 1;
*/
public Builder addRosterEntries(com.hedera.hashgraph.sdk.proto.RosterEntry value) {
if (rosterEntriesBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
ensureRosterEntriesIsMutable();
rosterEntries_.add(value);
onChanged();
} else {
rosterEntriesBuilder_.addMessage(value);
}
return this;
}
/**
*
**
* List of roster entries, one per consensus node.
* <p>
* This list SHALL contain roster entries in natural order of ascending node ids.
* This list SHALL NOT be empty.<br/>
*
*
* repeated .com.hedera.hapi.node.state.roster.RosterEntry roster_entries = 1;
*/
public Builder addRosterEntries(
int index, com.hedera.hashgraph.sdk.proto.RosterEntry value) {
if (rosterEntriesBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
ensureRosterEntriesIsMutable();
rosterEntries_.add(index, value);
onChanged();
} else {
rosterEntriesBuilder_.addMessage(index, value);
}
return this;
}
/**
*
**
* List of roster entries, one per consensus node.
* <p>
* This list SHALL contain roster entries in natural order of ascending node ids.
* This list SHALL NOT be empty.<br/>
*
*
* repeated .com.hedera.hapi.node.state.roster.RosterEntry roster_entries = 1;
*/
public Builder addRosterEntries(
com.hedera.hashgraph.sdk.proto.RosterEntry.Builder builderForValue) {
if (rosterEntriesBuilder_ == null) {
ensureRosterEntriesIsMutable();
rosterEntries_.add(builderForValue.build());
onChanged();
} else {
rosterEntriesBuilder_.addMessage(builderForValue.build());
}
return this;
}
/**
*
**
* List of roster entries, one per consensus node.
* <p>
* This list SHALL contain roster entries in natural order of ascending node ids.
* This list SHALL NOT be empty.<br/>
*
*
* repeated .com.hedera.hapi.node.state.roster.RosterEntry roster_entries = 1;
*/
public Builder addRosterEntries(
int index, com.hedera.hashgraph.sdk.proto.RosterEntry.Builder builderForValue) {
if (rosterEntriesBuilder_ == null) {
ensureRosterEntriesIsMutable();
rosterEntries_.add(index, builderForValue.build());
onChanged();
} else {
rosterEntriesBuilder_.addMessage(index, builderForValue.build());
}
return this;
}
/**
*
**
* List of roster entries, one per consensus node.
* <p>
* This list SHALL contain roster entries in natural order of ascending node ids.
* This list SHALL NOT be empty.<br/>
*
*
* repeated .com.hedera.hapi.node.state.roster.RosterEntry roster_entries = 1;
*/
public Builder addAllRosterEntries(
java.lang.Iterable extends com.hedera.hashgraph.sdk.proto.RosterEntry> values) {
if (rosterEntriesBuilder_ == null) {
ensureRosterEntriesIsMutable();
com.google.protobuf.AbstractMessageLite.Builder.addAll(
values, rosterEntries_);
onChanged();
} else {
rosterEntriesBuilder_.addAllMessages(values);
}
return this;
}
/**
*
**
* List of roster entries, one per consensus node.
* <p>
* This list SHALL contain roster entries in natural order of ascending node ids.
* This list SHALL NOT be empty.<br/>
*
*
* repeated .com.hedera.hapi.node.state.roster.RosterEntry roster_entries = 1;
*/
public Builder clearRosterEntries() {
if (rosterEntriesBuilder_ == null) {
rosterEntries_ = java.util.Collections.emptyList();
bitField0_ = (bitField0_ & ~0x00000001);
onChanged();
} else {
rosterEntriesBuilder_.clear();
}
return this;
}
/**
*
**
* List of roster entries, one per consensus node.
* <p>
* This list SHALL contain roster entries in natural order of ascending node ids.
* This list SHALL NOT be empty.<br/>
*
*
* repeated .com.hedera.hapi.node.state.roster.RosterEntry roster_entries = 1;
*/
public Builder removeRosterEntries(int index) {
if (rosterEntriesBuilder_ == null) {
ensureRosterEntriesIsMutable();
rosterEntries_.remove(index);
onChanged();
} else {
rosterEntriesBuilder_.remove(index);
}
return this;
}
/**
*
**
* List of roster entries, one per consensus node.
* <p>
* This list SHALL contain roster entries in natural order of ascending node ids.
* This list SHALL NOT be empty.<br/>
*
*
* repeated .com.hedera.hapi.node.state.roster.RosterEntry roster_entries = 1;
*/
public com.hedera.hashgraph.sdk.proto.RosterEntry.Builder getRosterEntriesBuilder(
int index) {
return getRosterEntriesFieldBuilder().getBuilder(index);
}
/**
*
**
* List of roster entries, one per consensus node.
* <p>
* This list SHALL contain roster entries in natural order of ascending node ids.
* This list SHALL NOT be empty.<br/>
*
*
* repeated .com.hedera.hapi.node.state.roster.RosterEntry roster_entries = 1;
*/
public com.hedera.hashgraph.sdk.proto.RosterEntryOrBuilder getRosterEntriesOrBuilder(
int index) {
if (rosterEntriesBuilder_ == null) {
return rosterEntries_.get(index); } else {
return rosterEntriesBuilder_.getMessageOrBuilder(index);
}
}
/**
*
**
* List of roster entries, one per consensus node.
* <p>
* This list SHALL contain roster entries in natural order of ascending node ids.
* This list SHALL NOT be empty.<br/>
*
*
* repeated .com.hedera.hapi.node.state.roster.RosterEntry roster_entries = 1;
*/
public java.util.List extends com.hedera.hashgraph.sdk.proto.RosterEntryOrBuilder>
getRosterEntriesOrBuilderList() {
if (rosterEntriesBuilder_ != null) {
return rosterEntriesBuilder_.getMessageOrBuilderList();
} else {
return java.util.Collections.unmodifiableList(rosterEntries_);
}
}
/**
*
**
* List of roster entries, one per consensus node.
* <p>
* This list SHALL contain roster entries in natural order of ascending node ids.
* This list SHALL NOT be empty.<br/>
*
*
* repeated .com.hedera.hapi.node.state.roster.RosterEntry roster_entries = 1;
*/
public com.hedera.hashgraph.sdk.proto.RosterEntry.Builder addRosterEntriesBuilder() {
return getRosterEntriesFieldBuilder().addBuilder(
com.hedera.hashgraph.sdk.proto.RosterEntry.getDefaultInstance());
}
/**
*
**
* List of roster entries, one per consensus node.
* <p>
* This list SHALL contain roster entries in natural order of ascending node ids.
* This list SHALL NOT be empty.<br/>
*
*
* repeated .com.hedera.hapi.node.state.roster.RosterEntry roster_entries = 1;
*/
public com.hedera.hashgraph.sdk.proto.RosterEntry.Builder addRosterEntriesBuilder(
int index) {
return getRosterEntriesFieldBuilder().addBuilder(
index, com.hedera.hashgraph.sdk.proto.RosterEntry.getDefaultInstance());
}
/**
*
**
* List of roster entries, one per consensus node.
* <p>
* This list SHALL contain roster entries in natural order of ascending node ids.
* This list SHALL NOT be empty.<br/>
*
*
* repeated .com.hedera.hapi.node.state.roster.RosterEntry roster_entries = 1;
*/
public java.util.List
getRosterEntriesBuilderList() {
return getRosterEntriesFieldBuilder().getBuilderList();
}
private com.google.protobuf.RepeatedFieldBuilderV3<
com.hedera.hashgraph.sdk.proto.RosterEntry, com.hedera.hashgraph.sdk.proto.RosterEntry.Builder, com.hedera.hashgraph.sdk.proto.RosterEntryOrBuilder>
getRosterEntriesFieldBuilder() {
if (rosterEntriesBuilder_ == null) {
rosterEntriesBuilder_ = new com.google.protobuf.RepeatedFieldBuilderV3<
com.hedera.hashgraph.sdk.proto.RosterEntry, com.hedera.hashgraph.sdk.proto.RosterEntry.Builder, com.hedera.hashgraph.sdk.proto.RosterEntryOrBuilder>(
rosterEntries_,
((bitField0_ & 0x00000001) != 0),
getParentForChildren(),
isClean());
rosterEntries_ = null;
}
return rosterEntriesBuilder_;
}
@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:com.hedera.hapi.node.state.roster.Roster)
}
// @@protoc_insertion_point(class_scope:com.hedera.hapi.node.state.roster.Roster)
private static final com.hedera.hashgraph.sdk.proto.Roster DEFAULT_INSTANCE;
static {
DEFAULT_INSTANCE = new com.hedera.hashgraph.sdk.proto.Roster();
}
public static com.hedera.hashgraph.sdk.proto.Roster getDefaultInstance() {
return DEFAULT_INSTANCE;
}
private static final com.google.protobuf.Parser
PARSER = new com.google.protobuf.AbstractParser() {
@java.lang.Override
public Roster 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.Roster getDefaultInstanceForType() {
return DEFAULT_INSTANCE;
}
}