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

org.openfeed.Low Maven / Gradle / Ivy

The newest version!
// Generated by the protocol buffer compiler.  DO NOT EDIT!
// NO CHECKED-IN PROTOBUF GENCODE
// source: openfeed.proto
// Protobuf Java Version: 4.28.3

package org.openfeed;

/**
 * Protobuf type {@code org.openfeed.Low}
 */
public final class Low extends
    com.google.protobuf.GeneratedMessage implements
    // @@protoc_insertion_point(message_implements:org.openfeed.Low)
    LowOrBuilder {
private static final long serialVersionUID = 0L;
  static {
    com.google.protobuf.RuntimeVersion.validateProtobufGencodeVersion(
      com.google.protobuf.RuntimeVersion.RuntimeDomain.PUBLIC,
      /* major= */ 4,
      /* minor= */ 28,
      /* patch= */ 3,
      /* suffix= */ "",
      Low.class.getName());
  }
  // Use Low.newBuilder() to construct.
  private Low(com.google.protobuf.GeneratedMessage.Builder builder) {
    super(builder);
  }
  private Low() {
    currency_ = "";
  }

  public static final com.google.protobuf.Descriptors.Descriptor
      getDescriptor() {
    return org.openfeed.Openfeed.internal_static_org_openfeed_Low_descriptor;
  }

  @java.lang.Override
  protected com.google.protobuf.GeneratedMessage.FieldAccessorTable
      internalGetFieldAccessorTable() {
    return org.openfeed.Openfeed.internal_static_org_openfeed_Low_fieldAccessorTable
        .ensureFieldAccessorsInitialized(
            org.openfeed.Low.class, org.openfeed.Low.Builder.class);
  }

  public static final int TRANSACTIONTIME_FIELD_NUMBER = 9;
  private long transactionTime_ = 0L;
  /**
   * sint64 transactionTime = 9;
   * @return The transactionTime.
   */
  @java.lang.Override
  public long getTransactionTime() {
    return transactionTime_;
  }

  public static final int TRADEDATE_FIELD_NUMBER = 10;
  private int tradeDate_ = 0;
  /**
   * 
   * / Date only, format 2012-07-04 -> 20120704
   * 
* * sint32 tradeDate = 10; * @return The tradeDate. */ @java.lang.Override public int getTradeDate() { return tradeDate_; } public static final int PRICE_FIELD_NUMBER = 11; private long price_ = 0L; /** *
   * / Divide by priceDenominator
   * 
* * sint64 price = 11; * @return The price. */ @java.lang.Override public long getPrice() { return price_; } public static final int CURRENCY_FIELD_NUMBER = 12; @SuppressWarnings("serial") private volatile java.lang.Object currency_ = ""; /** * string currency = 12; * @return The currency. */ @java.lang.Override public java.lang.String getCurrency() { java.lang.Object ref = currency_; if (ref instanceof java.lang.String) { return (java.lang.String) ref; } else { com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; java.lang.String s = bs.toStringUtf8(); currency_ = s; return s; } } /** * string currency = 12; * @return The bytes for currency. */ @java.lang.Override public com.google.protobuf.ByteString getCurrencyBytes() { java.lang.Object ref = currency_; if (ref instanceof java.lang.String) { com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8( (java.lang.String) ref); currency_ = b; return b; } else { return (com.google.protobuf.ByteString) ref; } } 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 (transactionTime_ != 0L) { output.writeSInt64(9, transactionTime_); } if (tradeDate_ != 0) { output.writeSInt32(10, tradeDate_); } if (price_ != 0L) { output.writeSInt64(11, price_); } if (!com.google.protobuf.GeneratedMessage.isStringEmpty(currency_)) { com.google.protobuf.GeneratedMessage.writeString(output, 12, currency_); } getUnknownFields().writeTo(output); } @java.lang.Override public int getSerializedSize() { int size = memoizedSize; if (size != -1) return size; size = 0; if (transactionTime_ != 0L) { size += com.google.protobuf.CodedOutputStream .computeSInt64Size(9, transactionTime_); } if (tradeDate_ != 0) { size += com.google.protobuf.CodedOutputStream .computeSInt32Size(10, tradeDate_); } if (price_ != 0L) { size += com.google.protobuf.CodedOutputStream .computeSInt64Size(11, price_); } if (!com.google.protobuf.GeneratedMessage.isStringEmpty(currency_)) { size += com.google.protobuf.GeneratedMessage.computeStringSize(12, currency_); } 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 org.openfeed.Low)) { return super.equals(obj); } org.openfeed.Low other = (org.openfeed.Low) obj; if (getTransactionTime() != other.getTransactionTime()) return false; if (getTradeDate() != other.getTradeDate()) return false; if (getPrice() != other.getPrice()) return false; if (!getCurrency() .equals(other.getCurrency())) 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(); hash = (37 * hash) + TRANSACTIONTIME_FIELD_NUMBER; hash = (53 * hash) + com.google.protobuf.Internal.hashLong( getTransactionTime()); hash = (37 * hash) + TRADEDATE_FIELD_NUMBER; hash = (53 * hash) + getTradeDate(); hash = (37 * hash) + PRICE_FIELD_NUMBER; hash = (53 * hash) + com.google.protobuf.Internal.hashLong( getPrice()); hash = (37 * hash) + CURRENCY_FIELD_NUMBER; hash = (53 * hash) + getCurrency().hashCode(); hash = (29 * hash) + getUnknownFields().hashCode(); memoizedHashCode = hash; return hash; } public static org.openfeed.Low parseFrom( java.nio.ByteBuffer data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static org.openfeed.Low parseFrom( java.nio.ByteBuffer data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } public static org.openfeed.Low parseFrom( com.google.protobuf.ByteString data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static org.openfeed.Low parseFrom( com.google.protobuf.ByteString data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } public static org.openfeed.Low parseFrom(byte[] data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static org.openfeed.Low parseFrom( byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } public static org.openfeed.Low parseFrom(java.io.InputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessage .parseWithIOException(PARSER, input); } public static org.openfeed.Low parseFrom( java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { return com.google.protobuf.GeneratedMessage .parseWithIOException(PARSER, input, extensionRegistry); } public static org.openfeed.Low parseDelimitedFrom(java.io.InputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessage .parseDelimitedWithIOException(PARSER, input); } public static org.openfeed.Low parseDelimitedFrom( java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { return com.google.protobuf.GeneratedMessage .parseDelimitedWithIOException(PARSER, input, extensionRegistry); } public static org.openfeed.Low parseFrom( com.google.protobuf.CodedInputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessage .parseWithIOException(PARSER, input); } public static org.openfeed.Low parseFrom( com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { return com.google.protobuf.GeneratedMessage .parseWithIOException(PARSER, input, extensionRegistry); } @java.lang.Override public Builder newBuilderForType() { return newBuilder(); } public static Builder newBuilder() { return DEFAULT_INSTANCE.toBuilder(); } public static Builder newBuilder(org.openfeed.Low 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.GeneratedMessage.BuilderParent parent) { Builder builder = new Builder(parent); return builder; } /** * Protobuf type {@code org.openfeed.Low} */ public static final class Builder extends com.google.protobuf.GeneratedMessage.Builder implements // @@protoc_insertion_point(builder_implements:org.openfeed.Low) org.openfeed.LowOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { return org.openfeed.Openfeed.internal_static_org_openfeed_Low_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { return org.openfeed.Openfeed.internal_static_org_openfeed_Low_fieldAccessorTable .ensureFieldAccessorsInitialized( org.openfeed.Low.class, org.openfeed.Low.Builder.class); } // Construct using org.openfeed.Low.newBuilder() private Builder() { } private Builder( com.google.protobuf.GeneratedMessage.BuilderParent parent) { super(parent); } @java.lang.Override public Builder clear() { super.clear(); bitField0_ = 0; transactionTime_ = 0L; tradeDate_ = 0; price_ = 0L; currency_ = ""; return this; } @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { return org.openfeed.Openfeed.internal_static_org_openfeed_Low_descriptor; } @java.lang.Override public org.openfeed.Low getDefaultInstanceForType() { return org.openfeed.Low.getDefaultInstance(); } @java.lang.Override public org.openfeed.Low build() { org.openfeed.Low result = buildPartial(); if (!result.isInitialized()) { throw newUninitializedMessageException(result); } return result; } @java.lang.Override public org.openfeed.Low buildPartial() { org.openfeed.Low result = new org.openfeed.Low(this); if (bitField0_ != 0) { buildPartial0(result); } onBuilt(); return result; } private void buildPartial0(org.openfeed.Low result) { int from_bitField0_ = bitField0_; if (((from_bitField0_ & 0x00000001) != 0)) { result.transactionTime_ = transactionTime_; } if (((from_bitField0_ & 0x00000002) != 0)) { result.tradeDate_ = tradeDate_; } if (((from_bitField0_ & 0x00000004) != 0)) { result.price_ = price_; } if (((from_bitField0_ & 0x00000008) != 0)) { result.currency_ = currency_; } } @java.lang.Override public Builder mergeFrom(com.google.protobuf.Message other) { if (other instanceof org.openfeed.Low) { return mergeFrom((org.openfeed.Low)other); } else { super.mergeFrom(other); return this; } } public Builder mergeFrom(org.openfeed.Low other) { if (other == org.openfeed.Low.getDefaultInstance()) return this; if (other.getTransactionTime() != 0L) { setTransactionTime(other.getTransactionTime()); } if (other.getTradeDate() != 0) { setTradeDate(other.getTradeDate()); } if (other.getPrice() != 0L) { setPrice(other.getPrice()); } if (!other.getCurrency().isEmpty()) { currency_ = other.currency_; bitField0_ |= 0x00000008; onChanged(); } 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 72: { transactionTime_ = input.readSInt64(); bitField0_ |= 0x00000001; break; } // case 72 case 80: { tradeDate_ = input.readSInt32(); bitField0_ |= 0x00000002; break; } // case 80 case 88: { price_ = input.readSInt64(); bitField0_ |= 0x00000004; break; } // case 88 case 98: { currency_ = input.readStringRequireUtf8(); bitField0_ |= 0x00000008; break; } // case 98 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 long transactionTime_ ; /** * sint64 transactionTime = 9; * @return The transactionTime. */ @java.lang.Override public long getTransactionTime() { return transactionTime_; } /** * sint64 transactionTime = 9; * @param value The transactionTime to set. * @return This builder for chaining. */ public Builder setTransactionTime(long value) { transactionTime_ = value; bitField0_ |= 0x00000001; onChanged(); return this; } /** * sint64 transactionTime = 9; * @return This builder for chaining. */ public Builder clearTransactionTime() { bitField0_ = (bitField0_ & ~0x00000001); transactionTime_ = 0L; onChanged(); return this; } private int tradeDate_ ; /** *
     * / Date only, format 2012-07-04 -> 20120704
     * 
* * sint32 tradeDate = 10; * @return The tradeDate. */ @java.lang.Override public int getTradeDate() { return tradeDate_; } /** *
     * / Date only, format 2012-07-04 -> 20120704
     * 
* * sint32 tradeDate = 10; * @param value The tradeDate to set. * @return This builder for chaining. */ public Builder setTradeDate(int value) { tradeDate_ = value; bitField0_ |= 0x00000002; onChanged(); return this; } /** *
     * / Date only, format 2012-07-04 -> 20120704
     * 
* * sint32 tradeDate = 10; * @return This builder for chaining. */ public Builder clearTradeDate() { bitField0_ = (bitField0_ & ~0x00000002); tradeDate_ = 0; onChanged(); return this; } private long price_ ; /** *
     * / Divide by priceDenominator
     * 
* * sint64 price = 11; * @return The price. */ @java.lang.Override public long getPrice() { return price_; } /** *
     * / Divide by priceDenominator
     * 
* * sint64 price = 11; * @param value The price to set. * @return This builder for chaining. */ public Builder setPrice(long value) { price_ = value; bitField0_ |= 0x00000004; onChanged(); return this; } /** *
     * / Divide by priceDenominator
     * 
* * sint64 price = 11; * @return This builder for chaining. */ public Builder clearPrice() { bitField0_ = (bitField0_ & ~0x00000004); price_ = 0L; onChanged(); return this; } private java.lang.Object currency_ = ""; /** * string currency = 12; * @return The currency. */ public java.lang.String getCurrency() { java.lang.Object ref = currency_; if (!(ref instanceof java.lang.String)) { com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; java.lang.String s = bs.toStringUtf8(); currency_ = s; return s; } else { return (java.lang.String) ref; } } /** * string currency = 12; * @return The bytes for currency. */ public com.google.protobuf.ByteString getCurrencyBytes() { java.lang.Object ref = currency_; if (ref instanceof String) { com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8( (java.lang.String) ref); currency_ = b; return b; } else { return (com.google.protobuf.ByteString) ref; } } /** * string currency = 12; * @param value The currency to set. * @return This builder for chaining. */ public Builder setCurrency( java.lang.String value) { if (value == null) { throw new NullPointerException(); } currency_ = value; bitField0_ |= 0x00000008; onChanged(); return this; } /** * string currency = 12; * @return This builder for chaining. */ public Builder clearCurrency() { currency_ = getDefaultInstance().getCurrency(); bitField0_ = (bitField0_ & ~0x00000008); onChanged(); return this; } /** * string currency = 12; * @param value The bytes for currency to set. * @return This builder for chaining. */ public Builder setCurrencyBytes( com.google.protobuf.ByteString value) { if (value == null) { throw new NullPointerException(); } checkByteStringIsUtf8(value); currency_ = value; bitField0_ |= 0x00000008; onChanged(); return this; } // @@protoc_insertion_point(builder_scope:org.openfeed.Low) } // @@protoc_insertion_point(class_scope:org.openfeed.Low) private static final org.openfeed.Low DEFAULT_INSTANCE; static { DEFAULT_INSTANCE = new org.openfeed.Low(); } public static org.openfeed.Low getDefaultInstance() { return DEFAULT_INSTANCE; } private static final com.google.protobuf.Parser PARSER = new com.google.protobuf.AbstractParser() { @java.lang.Override public Low 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 org.openfeed.Low getDefaultInstanceForType() { return DEFAULT_INSTANCE; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy