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

cz.proto.IntervalDayTimeInfo Maven / Gradle / Ivy

There is a newer version: 2.0.0
Show newest version
// Generated by the protocol buffer compiler.  DO NOT EDIT!
// source: data_type.proto

package cz.proto;

/**
 * Protobuf type {@code cz.proto.IntervalDayTimeInfo}
 */
public final class IntervalDayTimeInfo extends
    com.google.protobuf.GeneratedMessageV3 implements
    // @@protoc_insertion_point(message_implements:cz.proto.IntervalDayTimeInfo)
    IntervalDayTimeInfoOrBuilder {
private static final long serialVersionUID = 0L;
  // Use IntervalDayTimeInfo.newBuilder() to construct.
  private IntervalDayTimeInfo(com.google.protobuf.GeneratedMessageV3.Builder builder) {
    super(builder);
  }
  private IntervalDayTimeInfo() {
    from_ = 0;
    to_ = 0;
    precision_ = 0;
  }

  @java.lang.Override
  @SuppressWarnings({"unused"})
  protected java.lang.Object newInstance(
      UnusedPrivateParameter unused) {
    return new IntervalDayTimeInfo();
  }

  @java.lang.Override
  public final com.google.protobuf.UnknownFieldSet
  getUnknownFields() {
    return this.unknownFields;
  }
  private IntervalDayTimeInfo(
      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 8: {
            int rawValue = input.readEnum();

            from_ = rawValue;
            break;
          }
          case 16: {
            int rawValue = input.readEnum();

            to_ = rawValue;
            break;
          }
          case 24: {
            int rawValue = input.readEnum();

            precision_ = rawValue;
            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 cz.proto.DataTypeOuterClass.internal_static_cz_proto_IntervalDayTimeInfo_descriptor;
  }

  @java.lang.Override
  protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
      internalGetFieldAccessorTable() {
    return cz.proto.DataTypeOuterClass.internal_static_cz_proto_IntervalDayTimeInfo_fieldAccessorTable
        .ensureFieldAccessorsInitialized(
            cz.proto.IntervalDayTimeInfo.class, cz.proto.IntervalDayTimeInfo.Builder.class);
  }

  public static final int FROM_FIELD_NUMBER = 1;
  private int from_;
  /**
   * .cz.proto.IntervalUnit from = 1;
   * @return The enum numeric value on the wire for from.
   */
  @java.lang.Override public int getFromValue() {
    return from_;
  }
  /**
   * .cz.proto.IntervalUnit from = 1;
   * @return The from.
   */
  @java.lang.Override public cz.proto.IntervalUnit getFrom() {
    @SuppressWarnings("deprecation")
    cz.proto.IntervalUnit result = cz.proto.IntervalUnit.valueOf(from_);
    return result == null ? cz.proto.IntervalUnit.UNRECOGNIZED : result;
  }

  public static final int TO_FIELD_NUMBER = 2;
  private int to_;
  /**
   * .cz.proto.IntervalUnit to = 2;
   * @return The enum numeric value on the wire for to.
   */
  @java.lang.Override public int getToValue() {
    return to_;
  }
  /**
   * .cz.proto.IntervalUnit to = 2;
   * @return The to.
   */
  @java.lang.Override public cz.proto.IntervalUnit getTo() {
    @SuppressWarnings("deprecation")
    cz.proto.IntervalUnit result = cz.proto.IntervalUnit.valueOf(to_);
    return result == null ? cz.proto.IntervalUnit.UNRECOGNIZED : result;
  }

  public static final int PRECISION_FIELD_NUMBER = 3;
  private int precision_;
  /**
   * .cz.proto.TimestampUnit precision = 3;
   * @return The enum numeric value on the wire for precision.
   */
  @java.lang.Override public int getPrecisionValue() {
    return precision_;
  }
  /**
   * .cz.proto.TimestampUnit precision = 3;
   * @return The precision.
   */
  @java.lang.Override public cz.proto.TimestampUnit getPrecision() {
    @SuppressWarnings("deprecation")
    cz.proto.TimestampUnit result = cz.proto.TimestampUnit.valueOf(precision_);
    return result == null ? cz.proto.TimestampUnit.UNRECOGNIZED : result;
  }

  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 (from_ != cz.proto.IntervalUnit.NONE_INTERVAL_UNIT.getNumber()) {
      output.writeEnum(1, from_);
    }
    if (to_ != cz.proto.IntervalUnit.NONE_INTERVAL_UNIT.getNumber()) {
      output.writeEnum(2, to_);
    }
    if (precision_ != cz.proto.TimestampUnit.SECONDS.getNumber()) {
      output.writeEnum(3, precision_);
    }
    unknownFields.writeTo(output);
  }

  @java.lang.Override
  public int getSerializedSize() {
    int size = memoizedSize;
    if (size != -1) return size;

    size = 0;
    if (from_ != cz.proto.IntervalUnit.NONE_INTERVAL_UNIT.getNumber()) {
      size += com.google.protobuf.CodedOutputStream
        .computeEnumSize(1, from_);
    }
    if (to_ != cz.proto.IntervalUnit.NONE_INTERVAL_UNIT.getNumber()) {
      size += com.google.protobuf.CodedOutputStream
        .computeEnumSize(2, to_);
    }
    if (precision_ != cz.proto.TimestampUnit.SECONDS.getNumber()) {
      size += com.google.protobuf.CodedOutputStream
        .computeEnumSize(3, precision_);
    }
    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 cz.proto.IntervalDayTimeInfo)) {
      return super.equals(obj);
    }
    cz.proto.IntervalDayTimeInfo other = (cz.proto.IntervalDayTimeInfo) obj;

    if (from_ != other.from_) return false;
    if (to_ != other.to_) return false;
    if (precision_ != other.precision_) 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();
    hash = (37 * hash) + FROM_FIELD_NUMBER;
    hash = (53 * hash) + from_;
    hash = (37 * hash) + TO_FIELD_NUMBER;
    hash = (53 * hash) + to_;
    hash = (37 * hash) + PRECISION_FIELD_NUMBER;
    hash = (53 * hash) + precision_;
    hash = (29 * hash) + unknownFields.hashCode();
    memoizedHashCode = hash;
    return hash;
  }

  public static cz.proto.IntervalDayTimeInfo parseFrom(
      java.nio.ByteBuffer data)
      throws com.google.protobuf.InvalidProtocolBufferException {
    return PARSER.parseFrom(data);
  }
  public static cz.proto.IntervalDayTimeInfo parseFrom(
      java.nio.ByteBuffer data,
      com.google.protobuf.ExtensionRegistryLite extensionRegistry)
      throws com.google.protobuf.InvalidProtocolBufferException {
    return PARSER.parseFrom(data, extensionRegistry);
  }
  public static cz.proto.IntervalDayTimeInfo parseFrom(
      com.google.protobuf.ByteString data)
      throws com.google.protobuf.InvalidProtocolBufferException {
    return PARSER.parseFrom(data);
  }
  public static cz.proto.IntervalDayTimeInfo parseFrom(
      com.google.protobuf.ByteString data,
      com.google.protobuf.ExtensionRegistryLite extensionRegistry)
      throws com.google.protobuf.InvalidProtocolBufferException {
    return PARSER.parseFrom(data, extensionRegistry);
  }
  public static cz.proto.IntervalDayTimeInfo parseFrom(byte[] data)
      throws com.google.protobuf.InvalidProtocolBufferException {
    return PARSER.parseFrom(data);
  }
  public static cz.proto.IntervalDayTimeInfo parseFrom(
      byte[] data,
      com.google.protobuf.ExtensionRegistryLite extensionRegistry)
      throws com.google.protobuf.InvalidProtocolBufferException {
    return PARSER.parseFrom(data, extensionRegistry);
  }
  public static cz.proto.IntervalDayTimeInfo parseFrom(java.io.InputStream input)
      throws java.io.IOException {
    return com.google.protobuf.GeneratedMessageV3
        .parseWithIOException(PARSER, input);
  }
  public static cz.proto.IntervalDayTimeInfo 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 cz.proto.IntervalDayTimeInfo parseDelimitedFrom(java.io.InputStream input)
      throws java.io.IOException {
    return com.google.protobuf.GeneratedMessageV3
        .parseDelimitedWithIOException(PARSER, input);
  }
  public static cz.proto.IntervalDayTimeInfo 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 cz.proto.IntervalDayTimeInfo parseFrom(
      com.google.protobuf.CodedInputStream input)
      throws java.io.IOException {
    return com.google.protobuf.GeneratedMessageV3
        .parseWithIOException(PARSER, input);
  }
  public static cz.proto.IntervalDayTimeInfo 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(cz.proto.IntervalDayTimeInfo 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;
  }
  /**
   * Protobuf type {@code cz.proto.IntervalDayTimeInfo}
   */
  public static final class Builder extends
      com.google.protobuf.GeneratedMessageV3.Builder implements
      // @@protoc_insertion_point(builder_implements:cz.proto.IntervalDayTimeInfo)
      cz.proto.IntervalDayTimeInfoOrBuilder {
    public static final com.google.protobuf.Descriptors.Descriptor
        getDescriptor() {
      return cz.proto.DataTypeOuterClass.internal_static_cz_proto_IntervalDayTimeInfo_descriptor;
    }

    @java.lang.Override
    protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
        internalGetFieldAccessorTable() {
      return cz.proto.DataTypeOuterClass.internal_static_cz_proto_IntervalDayTimeInfo_fieldAccessorTable
          .ensureFieldAccessorsInitialized(
              cz.proto.IntervalDayTimeInfo.class, cz.proto.IntervalDayTimeInfo.Builder.class);
    }

    // Construct using cz.proto.IntervalDayTimeInfo.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();
      from_ = 0;

      to_ = 0;

      precision_ = 0;

      return this;
    }

    @java.lang.Override
    public com.google.protobuf.Descriptors.Descriptor
        getDescriptorForType() {
      return cz.proto.DataTypeOuterClass.internal_static_cz_proto_IntervalDayTimeInfo_descriptor;
    }

    @java.lang.Override
    public cz.proto.IntervalDayTimeInfo getDefaultInstanceForType() {
      return cz.proto.IntervalDayTimeInfo.getDefaultInstance();
    }

    @java.lang.Override
    public cz.proto.IntervalDayTimeInfo build() {
      cz.proto.IntervalDayTimeInfo result = buildPartial();
      if (!result.isInitialized()) {
        throw newUninitializedMessageException(result);
      }
      return result;
    }

    @java.lang.Override
    public cz.proto.IntervalDayTimeInfo buildPartial() {
      cz.proto.IntervalDayTimeInfo result = new cz.proto.IntervalDayTimeInfo(this);
      result.from_ = from_;
      result.to_ = to_;
      result.precision_ = precision_;
      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 cz.proto.IntervalDayTimeInfo) {
        return mergeFrom((cz.proto.IntervalDayTimeInfo)other);
      } else {
        super.mergeFrom(other);
        return this;
      }
    }

    public Builder mergeFrom(cz.proto.IntervalDayTimeInfo other) {
      if (other == cz.proto.IntervalDayTimeInfo.getDefaultInstance()) return this;
      if (other.from_ != 0) {
        setFromValue(other.getFromValue());
      }
      if (other.to_ != 0) {
        setToValue(other.getToValue());
      }
      if (other.precision_ != 0) {
        setPrecisionValue(other.getPrecisionValue());
      }
      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 {
      cz.proto.IntervalDayTimeInfo parsedMessage = null;
      try {
        parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry);
      } catch (com.google.protobuf.InvalidProtocolBufferException e) {
        parsedMessage = (cz.proto.IntervalDayTimeInfo) e.getUnfinishedMessage();
        throw e.unwrapIOException();
      } finally {
        if (parsedMessage != null) {
          mergeFrom(parsedMessage);
        }
      }
      return this;
    }

    private int from_ = 0;
    /**
     * .cz.proto.IntervalUnit from = 1;
     * @return The enum numeric value on the wire for from.
     */
    @java.lang.Override public int getFromValue() {
      return from_;
    }
    /**
     * .cz.proto.IntervalUnit from = 1;
     * @param value The enum numeric value on the wire for from to set.
     * @return This builder for chaining.
     */
    public Builder setFromValue(int value) {
      
      from_ = value;
      onChanged();
      return this;
    }
    /**
     * .cz.proto.IntervalUnit from = 1;
     * @return The from.
     */
    @java.lang.Override
    public cz.proto.IntervalUnit getFrom() {
      @SuppressWarnings("deprecation")
      cz.proto.IntervalUnit result = cz.proto.IntervalUnit.valueOf(from_);
      return result == null ? cz.proto.IntervalUnit.UNRECOGNIZED : result;
    }
    /**
     * .cz.proto.IntervalUnit from = 1;
     * @param value The from to set.
     * @return This builder for chaining.
     */
    public Builder setFrom(cz.proto.IntervalUnit value) {
      if (value == null) {
        throw new NullPointerException();
      }
      
      from_ = value.getNumber();
      onChanged();
      return this;
    }
    /**
     * .cz.proto.IntervalUnit from = 1;
     * @return This builder for chaining.
     */
    public Builder clearFrom() {
      
      from_ = 0;
      onChanged();
      return this;
    }

    private int to_ = 0;
    /**
     * .cz.proto.IntervalUnit to = 2;
     * @return The enum numeric value on the wire for to.
     */
    @java.lang.Override public int getToValue() {
      return to_;
    }
    /**
     * .cz.proto.IntervalUnit to = 2;
     * @param value The enum numeric value on the wire for to to set.
     * @return This builder for chaining.
     */
    public Builder setToValue(int value) {
      
      to_ = value;
      onChanged();
      return this;
    }
    /**
     * .cz.proto.IntervalUnit to = 2;
     * @return The to.
     */
    @java.lang.Override
    public cz.proto.IntervalUnit getTo() {
      @SuppressWarnings("deprecation")
      cz.proto.IntervalUnit result = cz.proto.IntervalUnit.valueOf(to_);
      return result == null ? cz.proto.IntervalUnit.UNRECOGNIZED : result;
    }
    /**
     * .cz.proto.IntervalUnit to = 2;
     * @param value The to to set.
     * @return This builder for chaining.
     */
    public Builder setTo(cz.proto.IntervalUnit value) {
      if (value == null) {
        throw new NullPointerException();
      }
      
      to_ = value.getNumber();
      onChanged();
      return this;
    }
    /**
     * .cz.proto.IntervalUnit to = 2;
     * @return This builder for chaining.
     */
    public Builder clearTo() {
      
      to_ = 0;
      onChanged();
      return this;
    }

    private int precision_ = 0;
    /**
     * .cz.proto.TimestampUnit precision = 3;
     * @return The enum numeric value on the wire for precision.
     */
    @java.lang.Override public int getPrecisionValue() {
      return precision_;
    }
    /**
     * .cz.proto.TimestampUnit precision = 3;
     * @param value The enum numeric value on the wire for precision to set.
     * @return This builder for chaining.
     */
    public Builder setPrecisionValue(int value) {
      
      precision_ = value;
      onChanged();
      return this;
    }
    /**
     * .cz.proto.TimestampUnit precision = 3;
     * @return The precision.
     */
    @java.lang.Override
    public cz.proto.TimestampUnit getPrecision() {
      @SuppressWarnings("deprecation")
      cz.proto.TimestampUnit result = cz.proto.TimestampUnit.valueOf(precision_);
      return result == null ? cz.proto.TimestampUnit.UNRECOGNIZED : result;
    }
    /**
     * .cz.proto.TimestampUnit precision = 3;
     * @param value The precision to set.
     * @return This builder for chaining.
     */
    public Builder setPrecision(cz.proto.TimestampUnit value) {
      if (value == null) {
        throw new NullPointerException();
      }
      
      precision_ = value.getNumber();
      onChanged();
      return this;
    }
    /**
     * .cz.proto.TimestampUnit precision = 3;
     * @return This builder for chaining.
     */
    public Builder clearPrecision() {
      
      precision_ = 0;
      onChanged();
      return this;
    }
    @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:cz.proto.IntervalDayTimeInfo)
  }

  // @@protoc_insertion_point(class_scope:cz.proto.IntervalDayTimeInfo)
  private static final cz.proto.IntervalDayTimeInfo DEFAULT_INSTANCE;
  static {
    DEFAULT_INSTANCE = new cz.proto.IntervalDayTimeInfo();
  }

  public static cz.proto.IntervalDayTimeInfo getDefaultInstance() {
    return DEFAULT_INSTANCE;
  }

  private static final com.google.protobuf.Parser
      PARSER = new com.google.protobuf.AbstractParser() {
    @java.lang.Override
    public IntervalDayTimeInfo parsePartialFrom(
        com.google.protobuf.CodedInputStream input,
        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
        throws com.google.protobuf.InvalidProtocolBufferException {
      return new IntervalDayTimeInfo(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 cz.proto.IntervalDayTimeInfo getDefaultInstanceForType() {
    return DEFAULT_INSTANCE;
  }

}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy