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

com.hederahashgraph.api.proto.java.ExchangeRateSet Maven / Gradle / Ivy

The newest version!
// Generated by the protocol buffer compiler.  DO NOT EDIT!
// source: exchange_rate.proto

package com.hederahashgraph.api.proto.java;

/**
 * 
 **
 * Two sets of exchange rates
 * 
* * Protobuf type {@code proto.ExchangeRateSet} */ public final class ExchangeRateSet extends com.google.protobuf.GeneratedMessageV3 implements // @@protoc_insertion_point(message_implements:proto.ExchangeRateSet) ExchangeRateSetOrBuilder { private static final long serialVersionUID = 0L; // Use ExchangeRateSet.newBuilder() to construct. private ExchangeRateSet(com.google.protobuf.GeneratedMessageV3.Builder builder) { super(builder); } private ExchangeRateSet() { } @java.lang.Override @SuppressWarnings({"unused"}) protected java.lang.Object newInstance( UnusedPrivateParameter unused) { return new ExchangeRateSet(); } @java.lang.Override public final com.google.protobuf.UnknownFieldSet getUnknownFields() { return this.unknownFields; } private ExchangeRateSet( com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { this(); if (extensionRegistry == null) { throw new java.lang.NullPointerException(); } 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.ExchangeRate.Builder subBuilder = null; if (currentRate_ != null) { subBuilder = currentRate_.toBuilder(); } currentRate_ = input.readMessage(com.hederahashgraph.api.proto.java.ExchangeRate.parser(), extensionRegistry); if (subBuilder != null) { subBuilder.mergeFrom(currentRate_); currentRate_ = subBuilder.buildPartial(); } break; } case 18: { com.hederahashgraph.api.proto.java.ExchangeRate.Builder subBuilder = null; if (nextRate_ != null) { subBuilder = nextRate_.toBuilder(); } nextRate_ = input.readMessage(com.hederahashgraph.api.proto.java.ExchangeRate.parser(), extensionRegistry); if (subBuilder != null) { subBuilder.mergeFrom(nextRate_); nextRate_ = subBuilder.buildPartial(); } 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 { this.unknownFields = unknownFields.build(); makeExtensionsImmutable(); } } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { return com.hederahashgraph.api.proto.java.ExchangeRateOuterClass.internal_static_proto_ExchangeRateSet_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable() { return com.hederahashgraph.api.proto.java.ExchangeRateOuterClass.internal_static_proto_ExchangeRateSet_fieldAccessorTable .ensureFieldAccessorsInitialized( com.hederahashgraph.api.proto.java.ExchangeRateSet.class, com.hederahashgraph.api.proto.java.ExchangeRateSet.Builder.class); } public static final int CURRENTRATE_FIELD_NUMBER = 1; private com.hederahashgraph.api.proto.java.ExchangeRate currentRate_; /** *
   **
   * Current exchange rate
   * 
* * .proto.ExchangeRate currentRate = 1; * @return Whether the currentRate field is set. */ @java.lang.Override public boolean hasCurrentRate() { return currentRate_ != null; } /** *
   **
   * Current exchange rate
   * 
* * .proto.ExchangeRate currentRate = 1; * @return The currentRate. */ @java.lang.Override public com.hederahashgraph.api.proto.java.ExchangeRate getCurrentRate() { return currentRate_ == null ? com.hederahashgraph.api.proto.java.ExchangeRate.getDefaultInstance() : currentRate_; } /** *
   **
   * Current exchange rate
   * 
* * .proto.ExchangeRate currentRate = 1; */ @java.lang.Override public com.hederahashgraph.api.proto.java.ExchangeRateOrBuilder getCurrentRateOrBuilder() { return getCurrentRate(); } public static final int NEXTRATE_FIELD_NUMBER = 2; private com.hederahashgraph.api.proto.java.ExchangeRate nextRate_; /** *
   **
   * Next exchange rate which will take effect when current rate expires
   * 
* * .proto.ExchangeRate nextRate = 2; * @return Whether the nextRate field is set. */ @java.lang.Override public boolean hasNextRate() { return nextRate_ != null; } /** *
   **
   * Next exchange rate which will take effect when current rate expires
   * 
* * .proto.ExchangeRate nextRate = 2; * @return The nextRate. */ @java.lang.Override public com.hederahashgraph.api.proto.java.ExchangeRate getNextRate() { return nextRate_ == null ? com.hederahashgraph.api.proto.java.ExchangeRate.getDefaultInstance() : nextRate_; } /** *
   **
   * Next exchange rate which will take effect when current rate expires
   * 
* * .proto.ExchangeRate nextRate = 2; */ @java.lang.Override public com.hederahashgraph.api.proto.java.ExchangeRateOrBuilder getNextRateOrBuilder() { return getNextRate(); } 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 (currentRate_ != null) { output.writeMessage(1, getCurrentRate()); } if (nextRate_ != null) { output.writeMessage(2, getNextRate()); } unknownFields.writeTo(output); } @java.lang.Override public int getSerializedSize() { int size = memoizedSize; if (size != -1) return size; size = 0; if (currentRate_ != null) { size += com.google.protobuf.CodedOutputStream .computeMessageSize(1, getCurrentRate()); } if (nextRate_ != null) { size += com.google.protobuf.CodedOutputStream .computeMessageSize(2, getNextRate()); } 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.ExchangeRateSet)) { return super.equals(obj); } com.hederahashgraph.api.proto.java.ExchangeRateSet other = (com.hederahashgraph.api.proto.java.ExchangeRateSet) obj; if (hasCurrentRate() != other.hasCurrentRate()) return false; if (hasCurrentRate()) { if (!getCurrentRate() .equals(other.getCurrentRate())) return false; } if (hasNextRate() != other.hasNextRate()) return false; if (hasNextRate()) { if (!getNextRate() .equals(other.getNextRate())) 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 (hasCurrentRate()) { hash = (37 * hash) + CURRENTRATE_FIELD_NUMBER; hash = (53 * hash) + getCurrentRate().hashCode(); } if (hasNextRate()) { hash = (37 * hash) + NEXTRATE_FIELD_NUMBER; hash = (53 * hash) + getNextRate().hashCode(); } hash = (29 * hash) + unknownFields.hashCode(); memoizedHashCode = hash; return hash; } public static com.hederahashgraph.api.proto.java.ExchangeRateSet parseFrom( java.nio.ByteBuffer data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static com.hederahashgraph.api.proto.java.ExchangeRateSet 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.ExchangeRateSet parseFrom( com.google.protobuf.ByteString data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static com.hederahashgraph.api.proto.java.ExchangeRateSet 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.ExchangeRateSet parseFrom(byte[] data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static com.hederahashgraph.api.proto.java.ExchangeRateSet 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.ExchangeRateSet parseFrom(java.io.InputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseWithIOException(PARSER, input); } public static com.hederahashgraph.api.proto.java.ExchangeRateSet 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.ExchangeRateSet parseDelimitedFrom(java.io.InputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseDelimitedWithIOException(PARSER, input); } public static com.hederahashgraph.api.proto.java.ExchangeRateSet 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.ExchangeRateSet 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.ExchangeRateSet 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.ExchangeRateSet 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; } /** *
   **
   * Two sets of exchange rates
   * 
* * Protobuf type {@code proto.ExchangeRateSet} */ public static final class Builder extends com.google.protobuf.GeneratedMessageV3.Builder implements // @@protoc_insertion_point(builder_implements:proto.ExchangeRateSet) com.hederahashgraph.api.proto.java.ExchangeRateSetOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { return com.hederahashgraph.api.proto.java.ExchangeRateOuterClass.internal_static_proto_ExchangeRateSet_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable() { return com.hederahashgraph.api.proto.java.ExchangeRateOuterClass.internal_static_proto_ExchangeRateSet_fieldAccessorTable .ensureFieldAccessorsInitialized( com.hederahashgraph.api.proto.java.ExchangeRateSet.class, com.hederahashgraph.api.proto.java.ExchangeRateSet.Builder.class); } // Construct using com.hederahashgraph.api.proto.java.ExchangeRateSet.newBuilder() private Builder() { maybeForceBuilderInitialization(); } private Builder( com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { super(parent); maybeForceBuilderInitialization(); } private void maybeForceBuilderInitialization() { if (com.google.protobuf.GeneratedMessageV3 .alwaysUseFieldBuilders) { } } @java.lang.Override public Builder clear() { super.clear(); if (currentRateBuilder_ == null) { currentRate_ = null; } else { currentRate_ = null; currentRateBuilder_ = null; } if (nextRateBuilder_ == null) { nextRate_ = null; } else { nextRate_ = null; nextRateBuilder_ = null; } return this; } @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { return com.hederahashgraph.api.proto.java.ExchangeRateOuterClass.internal_static_proto_ExchangeRateSet_descriptor; } @java.lang.Override public com.hederahashgraph.api.proto.java.ExchangeRateSet getDefaultInstanceForType() { return com.hederahashgraph.api.proto.java.ExchangeRateSet.getDefaultInstance(); } @java.lang.Override public com.hederahashgraph.api.proto.java.ExchangeRateSet build() { com.hederahashgraph.api.proto.java.ExchangeRateSet result = buildPartial(); if (!result.isInitialized()) { throw newUninitializedMessageException(result); } return result; } @java.lang.Override public com.hederahashgraph.api.proto.java.ExchangeRateSet buildPartial() { com.hederahashgraph.api.proto.java.ExchangeRateSet result = new com.hederahashgraph.api.proto.java.ExchangeRateSet(this); if (currentRateBuilder_ == null) { result.currentRate_ = currentRate_; } else { result.currentRate_ = currentRateBuilder_.build(); } if (nextRateBuilder_ == null) { result.nextRate_ = nextRate_; } else { result.nextRate_ = nextRateBuilder_.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.ExchangeRateSet) { return mergeFrom((com.hederahashgraph.api.proto.java.ExchangeRateSet)other); } else { super.mergeFrom(other); return this; } } public Builder mergeFrom(com.hederahashgraph.api.proto.java.ExchangeRateSet other) { if (other == com.hederahashgraph.api.proto.java.ExchangeRateSet.getDefaultInstance()) return this; if (other.hasCurrentRate()) { mergeCurrentRate(other.getCurrentRate()); } if (other.hasNextRate()) { mergeNextRate(other.getNextRate()); } 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.ExchangeRateSet parsedMessage = null; try { parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry); } catch (com.google.protobuf.InvalidProtocolBufferException e) { parsedMessage = (com.hederahashgraph.api.proto.java.ExchangeRateSet) e.getUnfinishedMessage(); throw e.unwrapIOException(); } finally { if (parsedMessage != null) { mergeFrom(parsedMessage); } } return this; } private com.hederahashgraph.api.proto.java.ExchangeRate currentRate_; private com.google.protobuf.SingleFieldBuilderV3< com.hederahashgraph.api.proto.java.ExchangeRate, com.hederahashgraph.api.proto.java.ExchangeRate.Builder, com.hederahashgraph.api.proto.java.ExchangeRateOrBuilder> currentRateBuilder_; /** *
     **
     * Current exchange rate
     * 
* * .proto.ExchangeRate currentRate = 1; * @return Whether the currentRate field is set. */ public boolean hasCurrentRate() { return currentRateBuilder_ != null || currentRate_ != null; } /** *
     **
     * Current exchange rate
     * 
* * .proto.ExchangeRate currentRate = 1; * @return The currentRate. */ public com.hederahashgraph.api.proto.java.ExchangeRate getCurrentRate() { if (currentRateBuilder_ == null) { return currentRate_ == null ? com.hederahashgraph.api.proto.java.ExchangeRate.getDefaultInstance() : currentRate_; } else { return currentRateBuilder_.getMessage(); } } /** *
     **
     * Current exchange rate
     * 
* * .proto.ExchangeRate currentRate = 1; */ public Builder setCurrentRate(com.hederahashgraph.api.proto.java.ExchangeRate value) { if (currentRateBuilder_ == null) { if (value == null) { throw new NullPointerException(); } currentRate_ = value; onChanged(); } else { currentRateBuilder_.setMessage(value); } return this; } /** *
     **
     * Current exchange rate
     * 
* * .proto.ExchangeRate currentRate = 1; */ public Builder setCurrentRate( com.hederahashgraph.api.proto.java.ExchangeRate.Builder builderForValue) { if (currentRateBuilder_ == null) { currentRate_ = builderForValue.build(); onChanged(); } else { currentRateBuilder_.setMessage(builderForValue.build()); } return this; } /** *
     **
     * Current exchange rate
     * 
* * .proto.ExchangeRate currentRate = 1; */ public Builder mergeCurrentRate(com.hederahashgraph.api.proto.java.ExchangeRate value) { if (currentRateBuilder_ == null) { if (currentRate_ != null) { currentRate_ = com.hederahashgraph.api.proto.java.ExchangeRate.newBuilder(currentRate_).mergeFrom(value).buildPartial(); } else { currentRate_ = value; } onChanged(); } else { currentRateBuilder_.mergeFrom(value); } return this; } /** *
     **
     * Current exchange rate
     * 
* * .proto.ExchangeRate currentRate = 1; */ public Builder clearCurrentRate() { if (currentRateBuilder_ == null) { currentRate_ = null; onChanged(); } else { currentRate_ = null; currentRateBuilder_ = null; } return this; } /** *
     **
     * Current exchange rate
     * 
* * .proto.ExchangeRate currentRate = 1; */ public com.hederahashgraph.api.proto.java.ExchangeRate.Builder getCurrentRateBuilder() { onChanged(); return getCurrentRateFieldBuilder().getBuilder(); } /** *
     **
     * Current exchange rate
     * 
* * .proto.ExchangeRate currentRate = 1; */ public com.hederahashgraph.api.proto.java.ExchangeRateOrBuilder getCurrentRateOrBuilder() { if (currentRateBuilder_ != null) { return currentRateBuilder_.getMessageOrBuilder(); } else { return currentRate_ == null ? com.hederahashgraph.api.proto.java.ExchangeRate.getDefaultInstance() : currentRate_; } } /** *
     **
     * Current exchange rate
     * 
* * .proto.ExchangeRate currentRate = 1; */ private com.google.protobuf.SingleFieldBuilderV3< com.hederahashgraph.api.proto.java.ExchangeRate, com.hederahashgraph.api.proto.java.ExchangeRate.Builder, com.hederahashgraph.api.proto.java.ExchangeRateOrBuilder> getCurrentRateFieldBuilder() { if (currentRateBuilder_ == null) { currentRateBuilder_ = new com.google.protobuf.SingleFieldBuilderV3< com.hederahashgraph.api.proto.java.ExchangeRate, com.hederahashgraph.api.proto.java.ExchangeRate.Builder, com.hederahashgraph.api.proto.java.ExchangeRateOrBuilder>( getCurrentRate(), getParentForChildren(), isClean()); currentRate_ = null; } return currentRateBuilder_; } private com.hederahashgraph.api.proto.java.ExchangeRate nextRate_; private com.google.protobuf.SingleFieldBuilderV3< com.hederahashgraph.api.proto.java.ExchangeRate, com.hederahashgraph.api.proto.java.ExchangeRate.Builder, com.hederahashgraph.api.proto.java.ExchangeRateOrBuilder> nextRateBuilder_; /** *
     **
     * Next exchange rate which will take effect when current rate expires
     * 
* * .proto.ExchangeRate nextRate = 2; * @return Whether the nextRate field is set. */ public boolean hasNextRate() { return nextRateBuilder_ != null || nextRate_ != null; } /** *
     **
     * Next exchange rate which will take effect when current rate expires
     * 
* * .proto.ExchangeRate nextRate = 2; * @return The nextRate. */ public com.hederahashgraph.api.proto.java.ExchangeRate getNextRate() { if (nextRateBuilder_ == null) { return nextRate_ == null ? com.hederahashgraph.api.proto.java.ExchangeRate.getDefaultInstance() : nextRate_; } else { return nextRateBuilder_.getMessage(); } } /** *
     **
     * Next exchange rate which will take effect when current rate expires
     * 
* * .proto.ExchangeRate nextRate = 2; */ public Builder setNextRate(com.hederahashgraph.api.proto.java.ExchangeRate value) { if (nextRateBuilder_ == null) { if (value == null) { throw new NullPointerException(); } nextRate_ = value; onChanged(); } else { nextRateBuilder_.setMessage(value); } return this; } /** *
     **
     * Next exchange rate which will take effect when current rate expires
     * 
* * .proto.ExchangeRate nextRate = 2; */ public Builder setNextRate( com.hederahashgraph.api.proto.java.ExchangeRate.Builder builderForValue) { if (nextRateBuilder_ == null) { nextRate_ = builderForValue.build(); onChanged(); } else { nextRateBuilder_.setMessage(builderForValue.build()); } return this; } /** *
     **
     * Next exchange rate which will take effect when current rate expires
     * 
* * .proto.ExchangeRate nextRate = 2; */ public Builder mergeNextRate(com.hederahashgraph.api.proto.java.ExchangeRate value) { if (nextRateBuilder_ == null) { if (nextRate_ != null) { nextRate_ = com.hederahashgraph.api.proto.java.ExchangeRate.newBuilder(nextRate_).mergeFrom(value).buildPartial(); } else { nextRate_ = value; } onChanged(); } else { nextRateBuilder_.mergeFrom(value); } return this; } /** *
     **
     * Next exchange rate which will take effect when current rate expires
     * 
* * .proto.ExchangeRate nextRate = 2; */ public Builder clearNextRate() { if (nextRateBuilder_ == null) { nextRate_ = null; onChanged(); } else { nextRate_ = null; nextRateBuilder_ = null; } return this; } /** *
     **
     * Next exchange rate which will take effect when current rate expires
     * 
* * .proto.ExchangeRate nextRate = 2; */ public com.hederahashgraph.api.proto.java.ExchangeRate.Builder getNextRateBuilder() { onChanged(); return getNextRateFieldBuilder().getBuilder(); } /** *
     **
     * Next exchange rate which will take effect when current rate expires
     * 
* * .proto.ExchangeRate nextRate = 2; */ public com.hederahashgraph.api.proto.java.ExchangeRateOrBuilder getNextRateOrBuilder() { if (nextRateBuilder_ != null) { return nextRateBuilder_.getMessageOrBuilder(); } else { return nextRate_ == null ? com.hederahashgraph.api.proto.java.ExchangeRate.getDefaultInstance() : nextRate_; } } /** *
     **
     * Next exchange rate which will take effect when current rate expires
     * 
* * .proto.ExchangeRate nextRate = 2; */ private com.google.protobuf.SingleFieldBuilderV3< com.hederahashgraph.api.proto.java.ExchangeRate, com.hederahashgraph.api.proto.java.ExchangeRate.Builder, com.hederahashgraph.api.proto.java.ExchangeRateOrBuilder> getNextRateFieldBuilder() { if (nextRateBuilder_ == null) { nextRateBuilder_ = new com.google.protobuf.SingleFieldBuilderV3< com.hederahashgraph.api.proto.java.ExchangeRate, com.hederahashgraph.api.proto.java.ExchangeRate.Builder, com.hederahashgraph.api.proto.java.ExchangeRateOrBuilder>( getNextRate(), getParentForChildren(), isClean()); nextRate_ = null; } return nextRateBuilder_; } @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.ExchangeRateSet) } // @@protoc_insertion_point(class_scope:proto.ExchangeRateSet) private static final com.hederahashgraph.api.proto.java.ExchangeRateSet DEFAULT_INSTANCE; static { DEFAULT_INSTANCE = new com.hederahashgraph.api.proto.java.ExchangeRateSet(); } public static com.hederahashgraph.api.proto.java.ExchangeRateSet getDefaultInstance() { return DEFAULT_INSTANCE; } private static final com.google.protobuf.Parser PARSER = new com.google.protobuf.AbstractParser() { @java.lang.Override public ExchangeRateSet parsePartialFrom( com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return new ExchangeRateSet(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.ExchangeRateSet getDefaultInstanceForType() { return DEFAULT_INSTANCE; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy