com.hederahashgraph.api.proto.java.NetworkGetExecutionTimeQuery Maven / Gradle / Ivy
The newest version!
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: network_get_execution_time.proto
package com.hederahashgraph.api.proto.java;
/**
*
**
* Gets the time in nanoseconds spent in <tt>handleTransaction</tt> for one or more
* TransactionIDs (assuming they have reached consensus "recently", since only a limited
* number of execution times are kept in-memory, depending on the value of the node-local
* property <tt>stats.executionTimesToTrack</tt>).
*
*
* Protobuf type {@code proto.NetworkGetExecutionTimeQuery}
*/
public final class NetworkGetExecutionTimeQuery extends
com.google.protobuf.GeneratedMessageV3 implements
// @@protoc_insertion_point(message_implements:proto.NetworkGetExecutionTimeQuery)
NetworkGetExecutionTimeQueryOrBuilder {
private static final long serialVersionUID = 0L;
// Use NetworkGetExecutionTimeQuery.newBuilder() to construct.
private NetworkGetExecutionTimeQuery(com.google.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
}
private NetworkGetExecutionTimeQuery() {
transactionIds_ = java.util.Collections.emptyList();
}
@java.lang.Override
@SuppressWarnings({"unused"})
protected java.lang.Object newInstance(
UnusedPrivateParameter unused) {
return new NetworkGetExecutionTimeQuery();
}
@java.lang.Override
public final com.google.protobuf.UnknownFieldSet
getUnknownFields() {
return this.unknownFields;
}
private NetworkGetExecutionTimeQuery(
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: {
com.hederahashgraph.api.proto.java.QueryHeader.Builder subBuilder = null;
if (header_ != null) {
subBuilder = header_.toBuilder();
}
header_ = input.readMessage(com.hederahashgraph.api.proto.java.QueryHeader.parser(), extensionRegistry);
if (subBuilder != null) {
subBuilder.mergeFrom(header_);
header_ = subBuilder.buildPartial();
}
break;
}
case 18: {
if (!((mutable_bitField0_ & 0x00000001) != 0)) {
transactionIds_ = new java.util.ArrayList();
mutable_bitField0_ |= 0x00000001;
}
transactionIds_.add(
input.readMessage(com.hederahashgraph.api.proto.java.TransactionID.parser(), extensionRegistry));
break;
}
default: {
if (!parseUnknownField(
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) != 0)) {
transactionIds_ = java.util.Collections.unmodifiableList(transactionIds_);
}
this.unknownFields = unknownFields.build();
makeExtensionsImmutable();
}
}
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return com.hederahashgraph.api.proto.java.NetworkGetExecutionTime.internal_static_proto_NetworkGetExecutionTimeQuery_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return com.hederahashgraph.api.proto.java.NetworkGetExecutionTime.internal_static_proto_NetworkGetExecutionTimeQuery_fieldAccessorTable
.ensureFieldAccessorsInitialized(
com.hederahashgraph.api.proto.java.NetworkGetExecutionTimeQuery.class, com.hederahashgraph.api.proto.java.NetworkGetExecutionTimeQuery.Builder.class);
}
public static final int HEADER_FIELD_NUMBER = 1;
private com.hederahashgraph.api.proto.java.QueryHeader header_;
/**
*
**
* standard info sent from client to node including the signed payment, and what kind of response
* is requested (cost, state proof, both, or neither).
*
*
* .proto.QueryHeader header = 1;
* @return Whether the header field is set.
*/
@java.lang.Override
public boolean hasHeader() {
return header_ != null;
}
/**
*
**
* standard info sent from client to node including the signed payment, and what kind of response
* is requested (cost, state proof, both, or neither).
*
*
* .proto.QueryHeader header = 1;
* @return The header.
*/
@java.lang.Override
public com.hederahashgraph.api.proto.java.QueryHeader getHeader() {
return header_ == null ? com.hederahashgraph.api.proto.java.QueryHeader.getDefaultInstance() : header_;
}
/**
*
**
* standard info sent from client to node including the signed payment, and what kind of response
* is requested (cost, state proof, both, or neither).
*
*
* .proto.QueryHeader header = 1;
*/
@java.lang.Override
public com.hederahashgraph.api.proto.java.QueryHeaderOrBuilder getHeaderOrBuilder() {
return getHeader();
}
public static final int TRANSACTION_IDS_FIELD_NUMBER = 2;
private java.util.List transactionIds_;
/**
*
**
* The id(s) of the transactions to get the execution time(s) of
*
*
* repeated .proto.TransactionID transaction_ids = 2;
*/
@java.lang.Override
public java.util.List getTransactionIdsList() {
return transactionIds_;
}
/**
*
**
* The id(s) of the transactions to get the execution time(s) of
*
*
* repeated .proto.TransactionID transaction_ids = 2;
*/
@java.lang.Override
public java.util.List extends com.hederahashgraph.api.proto.java.TransactionIDOrBuilder>
getTransactionIdsOrBuilderList() {
return transactionIds_;
}
/**
*
**
* The id(s) of the transactions to get the execution time(s) of
*
*
* repeated .proto.TransactionID transaction_ids = 2;
*/
@java.lang.Override
public int getTransactionIdsCount() {
return transactionIds_.size();
}
/**
*
**
* The id(s) of the transactions to get the execution time(s) of
*
*
* repeated .proto.TransactionID transaction_ids = 2;
*/
@java.lang.Override
public com.hederahashgraph.api.proto.java.TransactionID getTransactionIds(int index) {
return transactionIds_.get(index);
}
/**
*
**
* The id(s) of the transactions to get the execution time(s) of
*
*
* repeated .proto.TransactionID transaction_ids = 2;
*/
@java.lang.Override
public com.hederahashgraph.api.proto.java.TransactionIDOrBuilder getTransactionIdsOrBuilder(
int index) {
return transactionIds_.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 (header_ != null) {
output.writeMessage(1, getHeader());
}
for (int i = 0; i < transactionIds_.size(); i++) {
output.writeMessage(2, transactionIds_.get(i));
}
unknownFields.writeTo(output);
}
@java.lang.Override
public int getSerializedSize() {
int size = memoizedSize;
if (size != -1) return size;
size = 0;
if (header_ != null) {
size += com.google.protobuf.CodedOutputStream
.computeMessageSize(1, getHeader());
}
for (int i = 0; i < transactionIds_.size(); i++) {
size += com.google.protobuf.CodedOutputStream
.computeMessageSize(2, transactionIds_.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 com.hederahashgraph.api.proto.java.NetworkGetExecutionTimeQuery)) {
return super.equals(obj);
}
com.hederahashgraph.api.proto.java.NetworkGetExecutionTimeQuery other = (com.hederahashgraph.api.proto.java.NetworkGetExecutionTimeQuery) obj;
if (hasHeader() != other.hasHeader()) return false;
if (hasHeader()) {
if (!getHeader()
.equals(other.getHeader())) return false;
}
if (!getTransactionIdsList()
.equals(other.getTransactionIdsList())) return false;
if (!unknownFields.equals(other.unknownFields)) 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 (getTransactionIdsCount() > 0) {
hash = (37 * hash) + TRANSACTION_IDS_FIELD_NUMBER;
hash = (53 * hash) + getTransactionIdsList().hashCode();
}
hash = (29 * hash) + unknownFields.hashCode();
memoizedHashCode = hash;
return hash;
}
public static com.hederahashgraph.api.proto.java.NetworkGetExecutionTimeQuery parseFrom(
java.nio.ByteBuffer data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.hederahashgraph.api.proto.java.NetworkGetExecutionTimeQuery parseFrom(
java.nio.ByteBuffer data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static com.hederahashgraph.api.proto.java.NetworkGetExecutionTimeQuery parseFrom(
com.google.protobuf.ByteString data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.hederahashgraph.api.proto.java.NetworkGetExecutionTimeQuery parseFrom(
com.google.protobuf.ByteString data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static com.hederahashgraph.api.proto.java.NetworkGetExecutionTimeQuery parseFrom(byte[] data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.hederahashgraph.api.proto.java.NetworkGetExecutionTimeQuery parseFrom(
byte[] data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static com.hederahashgraph.api.proto.java.NetworkGetExecutionTimeQuery parseFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static com.hederahashgraph.api.proto.java.NetworkGetExecutionTimeQuery 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.hederahashgraph.api.proto.java.NetworkGetExecutionTimeQuery parseDelimitedFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseDelimitedWithIOException(PARSER, input);
}
public static com.hederahashgraph.api.proto.java.NetworkGetExecutionTimeQuery 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.hederahashgraph.api.proto.java.NetworkGetExecutionTimeQuery parseFrom(
com.google.protobuf.CodedInputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static com.hederahashgraph.api.proto.java.NetworkGetExecutionTimeQuery 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.hederahashgraph.api.proto.java.NetworkGetExecutionTimeQuery 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;
}
/**
*
**
* Gets the time in nanoseconds spent in <tt>handleTransaction</tt> for one or more
* TransactionIDs (assuming they have reached consensus "recently", since only a limited
* number of execution times are kept in-memory, depending on the value of the node-local
* property <tt>stats.executionTimesToTrack</tt>).
*
*
* Protobuf type {@code proto.NetworkGetExecutionTimeQuery}
*/
public static final class Builder extends
com.google.protobuf.GeneratedMessageV3.Builder implements
// @@protoc_insertion_point(builder_implements:proto.NetworkGetExecutionTimeQuery)
com.hederahashgraph.api.proto.java.NetworkGetExecutionTimeQueryOrBuilder {
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return com.hederahashgraph.api.proto.java.NetworkGetExecutionTime.internal_static_proto_NetworkGetExecutionTimeQuery_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return com.hederahashgraph.api.proto.java.NetworkGetExecutionTime.internal_static_proto_NetworkGetExecutionTimeQuery_fieldAccessorTable
.ensureFieldAccessorsInitialized(
com.hederahashgraph.api.proto.java.NetworkGetExecutionTimeQuery.class, com.hederahashgraph.api.proto.java.NetworkGetExecutionTimeQuery.Builder.class);
}
// Construct using com.hederahashgraph.api.proto.java.NetworkGetExecutionTimeQuery.newBuilder()
private Builder() {
maybeForceBuilderInitialization();
}
private Builder(
com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
super(parent);
maybeForceBuilderInitialization();
}
private void maybeForceBuilderInitialization() {
if (com.google.protobuf.GeneratedMessageV3
.alwaysUseFieldBuilders) {
getTransactionIdsFieldBuilder();
}
}
@java.lang.Override
public Builder clear() {
super.clear();
if (headerBuilder_ == null) {
header_ = null;
} else {
header_ = null;
headerBuilder_ = null;
}
if (transactionIdsBuilder_ == null) {
transactionIds_ = java.util.Collections.emptyList();
bitField0_ = (bitField0_ & ~0x00000001);
} else {
transactionIdsBuilder_.clear();
}
return this;
}
@java.lang.Override
public com.google.protobuf.Descriptors.Descriptor
getDescriptorForType() {
return com.hederahashgraph.api.proto.java.NetworkGetExecutionTime.internal_static_proto_NetworkGetExecutionTimeQuery_descriptor;
}
@java.lang.Override
public com.hederahashgraph.api.proto.java.NetworkGetExecutionTimeQuery getDefaultInstanceForType() {
return com.hederahashgraph.api.proto.java.NetworkGetExecutionTimeQuery.getDefaultInstance();
}
@java.lang.Override
public com.hederahashgraph.api.proto.java.NetworkGetExecutionTimeQuery build() {
com.hederahashgraph.api.proto.java.NetworkGetExecutionTimeQuery result = buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
@java.lang.Override
public com.hederahashgraph.api.proto.java.NetworkGetExecutionTimeQuery buildPartial() {
com.hederahashgraph.api.proto.java.NetworkGetExecutionTimeQuery result = new com.hederahashgraph.api.proto.java.NetworkGetExecutionTimeQuery(this);
int from_bitField0_ = bitField0_;
if (headerBuilder_ == null) {
result.header_ = header_;
} else {
result.header_ = headerBuilder_.build();
}
if (transactionIdsBuilder_ == null) {
if (((bitField0_ & 0x00000001) != 0)) {
transactionIds_ = java.util.Collections.unmodifiableList(transactionIds_);
bitField0_ = (bitField0_ & ~0x00000001);
}
result.transactionIds_ = transactionIds_;
} else {
result.transactionIds_ = transactionIdsBuilder_.build();
}
onBuilt();
return result;
}
@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.hederahashgraph.api.proto.java.NetworkGetExecutionTimeQuery) {
return mergeFrom((com.hederahashgraph.api.proto.java.NetworkGetExecutionTimeQuery)other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(com.hederahashgraph.api.proto.java.NetworkGetExecutionTimeQuery other) {
if (other == com.hederahashgraph.api.proto.java.NetworkGetExecutionTimeQuery.getDefaultInstance()) return this;
if (other.hasHeader()) {
mergeHeader(other.getHeader());
}
if (transactionIdsBuilder_ == null) {
if (!other.transactionIds_.isEmpty()) {
if (transactionIds_.isEmpty()) {
transactionIds_ = other.transactionIds_;
bitField0_ = (bitField0_ & ~0x00000001);
} else {
ensureTransactionIdsIsMutable();
transactionIds_.addAll(other.transactionIds_);
}
onChanged();
}
} else {
if (!other.transactionIds_.isEmpty()) {
if (transactionIdsBuilder_.isEmpty()) {
transactionIdsBuilder_.dispose();
transactionIdsBuilder_ = null;
transactionIds_ = other.transactionIds_;
bitField0_ = (bitField0_ & ~0x00000001);
transactionIdsBuilder_ =
com.google.protobuf.GeneratedMessageV3.alwaysUseFieldBuilders ?
getTransactionIdsFieldBuilder() : null;
} else {
transactionIdsBuilder_.addAllMessages(other.transactionIds_);
}
}
}
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 {
com.hederahashgraph.api.proto.java.NetworkGetExecutionTimeQuery parsedMessage = null;
try {
parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry);
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
parsedMessage = (com.hederahashgraph.api.proto.java.NetworkGetExecutionTimeQuery) e.getUnfinishedMessage();
throw e.unwrapIOException();
} finally {
if (parsedMessage != null) {
mergeFrom(parsedMessage);
}
}
return this;
}
private int bitField0_;
private com.hederahashgraph.api.proto.java.QueryHeader header_;
private com.google.protobuf.SingleFieldBuilderV3<
com.hederahashgraph.api.proto.java.QueryHeader, com.hederahashgraph.api.proto.java.QueryHeader.Builder, com.hederahashgraph.api.proto.java.QueryHeaderOrBuilder> headerBuilder_;
/**
*
**
* standard info sent from client to node including the signed payment, and what kind of response
* is requested (cost, state proof, both, or neither).
*
*
* .proto.QueryHeader header = 1;
* @return Whether the header field is set.
*/
public boolean hasHeader() {
return headerBuilder_ != null || header_ != null;
}
/**
*
**
* standard info sent from client to node including the signed payment, and what kind of response
* is requested (cost, state proof, both, or neither).
*
*
* .proto.QueryHeader header = 1;
* @return The header.
*/
public com.hederahashgraph.api.proto.java.QueryHeader getHeader() {
if (headerBuilder_ == null) {
return header_ == null ? com.hederahashgraph.api.proto.java.QueryHeader.getDefaultInstance() : header_;
} else {
return headerBuilder_.getMessage();
}
}
/**
*
**
* standard info sent from client to node including the signed payment, and what kind of response
* is requested (cost, state proof, both, or neither).
*
*
* .proto.QueryHeader header = 1;
*/
public Builder setHeader(com.hederahashgraph.api.proto.java.QueryHeader value) {
if (headerBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
header_ = value;
onChanged();
} else {
headerBuilder_.setMessage(value);
}
return this;
}
/**
*
**
* standard info sent from client to node including the signed payment, and what kind of response
* is requested (cost, state proof, both, or neither).
*
*
* .proto.QueryHeader header = 1;
*/
public Builder setHeader(
com.hederahashgraph.api.proto.java.QueryHeader.Builder builderForValue) {
if (headerBuilder_ == null) {
header_ = builderForValue.build();
onChanged();
} else {
headerBuilder_.setMessage(builderForValue.build());
}
return this;
}
/**
*
**
* standard info sent from client to node including the signed payment, and what kind of response
* is requested (cost, state proof, both, or neither).
*
*
* .proto.QueryHeader header = 1;
*/
public Builder mergeHeader(com.hederahashgraph.api.proto.java.QueryHeader value) {
if (headerBuilder_ == null) {
if (header_ != null) {
header_ =
com.hederahashgraph.api.proto.java.QueryHeader.newBuilder(header_).mergeFrom(value).buildPartial();
} else {
header_ = value;
}
onChanged();
} else {
headerBuilder_.mergeFrom(value);
}
return this;
}
/**
*
**
* standard info sent from client to node including the signed payment, and what kind of response
* is requested (cost, state proof, both, or neither).
*
*
* .proto.QueryHeader header = 1;
*/
public Builder clearHeader() {
if (headerBuilder_ == null) {
header_ = null;
onChanged();
} else {
header_ = null;
headerBuilder_ = null;
}
return this;
}
/**
*
**
* standard info sent from client to node including the signed payment, and what kind of response
* is requested (cost, state proof, both, or neither).
*
*
* .proto.QueryHeader header = 1;
*/
public com.hederahashgraph.api.proto.java.QueryHeader.Builder getHeaderBuilder() {
onChanged();
return getHeaderFieldBuilder().getBuilder();
}
/**
*
**
* standard info sent from client to node including the signed payment, and what kind of response
* is requested (cost, state proof, both, or neither).
*
*
* .proto.QueryHeader header = 1;
*/
public com.hederahashgraph.api.proto.java.QueryHeaderOrBuilder getHeaderOrBuilder() {
if (headerBuilder_ != null) {
return headerBuilder_.getMessageOrBuilder();
} else {
return header_ == null ?
com.hederahashgraph.api.proto.java.QueryHeader.getDefaultInstance() : header_;
}
}
/**
*
**
* standard info sent from client to node including the signed payment, and what kind of response
* is requested (cost, state proof, both, or neither).
*
*
* .proto.QueryHeader header = 1;
*/
private com.google.protobuf.SingleFieldBuilderV3<
com.hederahashgraph.api.proto.java.QueryHeader, com.hederahashgraph.api.proto.java.QueryHeader.Builder, com.hederahashgraph.api.proto.java.QueryHeaderOrBuilder>
getHeaderFieldBuilder() {
if (headerBuilder_ == null) {
headerBuilder_ = new com.google.protobuf.SingleFieldBuilderV3<
com.hederahashgraph.api.proto.java.QueryHeader, com.hederahashgraph.api.proto.java.QueryHeader.Builder, com.hederahashgraph.api.proto.java.QueryHeaderOrBuilder>(
getHeader(),
getParentForChildren(),
isClean());
header_ = null;
}
return headerBuilder_;
}
private java.util.List transactionIds_ =
java.util.Collections.emptyList();
private void ensureTransactionIdsIsMutable() {
if (!((bitField0_ & 0x00000001) != 0)) {
transactionIds_ = new java.util.ArrayList(transactionIds_);
bitField0_ |= 0x00000001;
}
}
private com.google.protobuf.RepeatedFieldBuilderV3<
com.hederahashgraph.api.proto.java.TransactionID, com.hederahashgraph.api.proto.java.TransactionID.Builder, com.hederahashgraph.api.proto.java.TransactionIDOrBuilder> transactionIdsBuilder_;
/**
*
**
* The id(s) of the transactions to get the execution time(s) of
*
*
* repeated .proto.TransactionID transaction_ids = 2;
*/
public java.util.List getTransactionIdsList() {
if (transactionIdsBuilder_ == null) {
return java.util.Collections.unmodifiableList(transactionIds_);
} else {
return transactionIdsBuilder_.getMessageList();
}
}
/**
*
**
* The id(s) of the transactions to get the execution time(s) of
*
*
* repeated .proto.TransactionID transaction_ids = 2;
*/
public int getTransactionIdsCount() {
if (transactionIdsBuilder_ == null) {
return transactionIds_.size();
} else {
return transactionIdsBuilder_.getCount();
}
}
/**
*
**
* The id(s) of the transactions to get the execution time(s) of
*
*
* repeated .proto.TransactionID transaction_ids = 2;
*/
public com.hederahashgraph.api.proto.java.TransactionID getTransactionIds(int index) {
if (transactionIdsBuilder_ == null) {
return transactionIds_.get(index);
} else {
return transactionIdsBuilder_.getMessage(index);
}
}
/**
*
**
* The id(s) of the transactions to get the execution time(s) of
*
*
* repeated .proto.TransactionID transaction_ids = 2;
*/
public Builder setTransactionIds(
int index, com.hederahashgraph.api.proto.java.TransactionID value) {
if (transactionIdsBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
ensureTransactionIdsIsMutable();
transactionIds_.set(index, value);
onChanged();
} else {
transactionIdsBuilder_.setMessage(index, value);
}
return this;
}
/**
*
**
* The id(s) of the transactions to get the execution time(s) of
*
*
* repeated .proto.TransactionID transaction_ids = 2;
*/
public Builder setTransactionIds(
int index, com.hederahashgraph.api.proto.java.TransactionID.Builder builderForValue) {
if (transactionIdsBuilder_ == null) {
ensureTransactionIdsIsMutable();
transactionIds_.set(index, builderForValue.build());
onChanged();
} else {
transactionIdsBuilder_.setMessage(index, builderForValue.build());
}
return this;
}
/**
*
**
* The id(s) of the transactions to get the execution time(s) of
*
*
* repeated .proto.TransactionID transaction_ids = 2;
*/
public Builder addTransactionIds(com.hederahashgraph.api.proto.java.TransactionID value) {
if (transactionIdsBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
ensureTransactionIdsIsMutable();
transactionIds_.add(value);
onChanged();
} else {
transactionIdsBuilder_.addMessage(value);
}
return this;
}
/**
*
**
* The id(s) of the transactions to get the execution time(s) of
*
*
* repeated .proto.TransactionID transaction_ids = 2;
*/
public Builder addTransactionIds(
int index, com.hederahashgraph.api.proto.java.TransactionID value) {
if (transactionIdsBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
ensureTransactionIdsIsMutable();
transactionIds_.add(index, value);
onChanged();
} else {
transactionIdsBuilder_.addMessage(index, value);
}
return this;
}
/**
*
**
* The id(s) of the transactions to get the execution time(s) of
*
*
* repeated .proto.TransactionID transaction_ids = 2;
*/
public Builder addTransactionIds(
com.hederahashgraph.api.proto.java.TransactionID.Builder builderForValue) {
if (transactionIdsBuilder_ == null) {
ensureTransactionIdsIsMutable();
transactionIds_.add(builderForValue.build());
onChanged();
} else {
transactionIdsBuilder_.addMessage(builderForValue.build());
}
return this;
}
/**
*
**
* The id(s) of the transactions to get the execution time(s) of
*
*
* repeated .proto.TransactionID transaction_ids = 2;
*/
public Builder addTransactionIds(
int index, com.hederahashgraph.api.proto.java.TransactionID.Builder builderForValue) {
if (transactionIdsBuilder_ == null) {
ensureTransactionIdsIsMutable();
transactionIds_.add(index, builderForValue.build());
onChanged();
} else {
transactionIdsBuilder_.addMessage(index, builderForValue.build());
}
return this;
}
/**
*
**
* The id(s) of the transactions to get the execution time(s) of
*
*
* repeated .proto.TransactionID transaction_ids = 2;
*/
public Builder addAllTransactionIds(
java.lang.Iterable extends com.hederahashgraph.api.proto.java.TransactionID> values) {
if (transactionIdsBuilder_ == null) {
ensureTransactionIdsIsMutable();
com.google.protobuf.AbstractMessageLite.Builder.addAll(
values, transactionIds_);
onChanged();
} else {
transactionIdsBuilder_.addAllMessages(values);
}
return this;
}
/**
*
**
* The id(s) of the transactions to get the execution time(s) of
*
*
* repeated .proto.TransactionID transaction_ids = 2;
*/
public Builder clearTransactionIds() {
if (transactionIdsBuilder_ == null) {
transactionIds_ = java.util.Collections.emptyList();
bitField0_ = (bitField0_ & ~0x00000001);
onChanged();
} else {
transactionIdsBuilder_.clear();
}
return this;
}
/**
*
**
* The id(s) of the transactions to get the execution time(s) of
*
*
* repeated .proto.TransactionID transaction_ids = 2;
*/
public Builder removeTransactionIds(int index) {
if (transactionIdsBuilder_ == null) {
ensureTransactionIdsIsMutable();
transactionIds_.remove(index);
onChanged();
} else {
transactionIdsBuilder_.remove(index);
}
return this;
}
/**
*
**
* The id(s) of the transactions to get the execution time(s) of
*
*
* repeated .proto.TransactionID transaction_ids = 2;
*/
public com.hederahashgraph.api.proto.java.TransactionID.Builder getTransactionIdsBuilder(
int index) {
return getTransactionIdsFieldBuilder().getBuilder(index);
}
/**
*
**
* The id(s) of the transactions to get the execution time(s) of
*
*
* repeated .proto.TransactionID transaction_ids = 2;
*/
public com.hederahashgraph.api.proto.java.TransactionIDOrBuilder getTransactionIdsOrBuilder(
int index) {
if (transactionIdsBuilder_ == null) {
return transactionIds_.get(index); } else {
return transactionIdsBuilder_.getMessageOrBuilder(index);
}
}
/**
*
**
* The id(s) of the transactions to get the execution time(s) of
*
*
* repeated .proto.TransactionID transaction_ids = 2;
*/
public java.util.List extends com.hederahashgraph.api.proto.java.TransactionIDOrBuilder>
getTransactionIdsOrBuilderList() {
if (transactionIdsBuilder_ != null) {
return transactionIdsBuilder_.getMessageOrBuilderList();
} else {
return java.util.Collections.unmodifiableList(transactionIds_);
}
}
/**
*
**
* The id(s) of the transactions to get the execution time(s) of
*
*
* repeated .proto.TransactionID transaction_ids = 2;
*/
public com.hederahashgraph.api.proto.java.TransactionID.Builder addTransactionIdsBuilder() {
return getTransactionIdsFieldBuilder().addBuilder(
com.hederahashgraph.api.proto.java.TransactionID.getDefaultInstance());
}
/**
*
**
* The id(s) of the transactions to get the execution time(s) of
*
*
* repeated .proto.TransactionID transaction_ids = 2;
*/
public com.hederahashgraph.api.proto.java.TransactionID.Builder addTransactionIdsBuilder(
int index) {
return getTransactionIdsFieldBuilder().addBuilder(
index, com.hederahashgraph.api.proto.java.TransactionID.getDefaultInstance());
}
/**
*
**
* The id(s) of the transactions to get the execution time(s) of
*
*
* repeated .proto.TransactionID transaction_ids = 2;
*/
public java.util.List
getTransactionIdsBuilderList() {
return getTransactionIdsFieldBuilder().getBuilderList();
}
private com.google.protobuf.RepeatedFieldBuilderV3<
com.hederahashgraph.api.proto.java.TransactionID, com.hederahashgraph.api.proto.java.TransactionID.Builder, com.hederahashgraph.api.proto.java.TransactionIDOrBuilder>
getTransactionIdsFieldBuilder() {
if (transactionIdsBuilder_ == null) {
transactionIdsBuilder_ = new com.google.protobuf.RepeatedFieldBuilderV3<
com.hederahashgraph.api.proto.java.TransactionID, com.hederahashgraph.api.proto.java.TransactionID.Builder, com.hederahashgraph.api.proto.java.TransactionIDOrBuilder>(
transactionIds_,
((bitField0_ & 0x00000001) != 0),
getParentForChildren(),
isClean());
transactionIds_ = null;
}
return transactionIdsBuilder_;
}
@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.NetworkGetExecutionTimeQuery)
}
// @@protoc_insertion_point(class_scope:proto.NetworkGetExecutionTimeQuery)
private static final com.hederahashgraph.api.proto.java.NetworkGetExecutionTimeQuery DEFAULT_INSTANCE;
static {
DEFAULT_INSTANCE = new com.hederahashgraph.api.proto.java.NetworkGetExecutionTimeQuery();
}
public static com.hederahashgraph.api.proto.java.NetworkGetExecutionTimeQuery getDefaultInstance() {
return DEFAULT_INSTANCE;
}
private static final com.google.protobuf.Parser
PARSER = new com.google.protobuf.AbstractParser() {
@java.lang.Override
public NetworkGetExecutionTimeQuery parsePartialFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return new NetworkGetExecutionTimeQuery(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 com.hederahashgraph.api.proto.java.NetworkGetExecutionTimeQuery getDefaultInstanceForType() {
return DEFAULT_INSTANCE;
}
}