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

org.yamcs.protobuf.CompactDatabaseRequest Maven / Gradle / Ivy

There is a newer version: 5.10.9
Show newest version
// Generated by the protocol buffer compiler.  DO NOT EDIT!
// source: yamcs/protobuf/archive/rocksdb_service.proto

package org.yamcs.protobuf;

/**
 * Protobuf type {@code yamcs.protobuf.archive.CompactDatabaseRequest}
 */
public final class CompactDatabaseRequest extends
    com.google.protobuf.GeneratedMessageV3 implements
    // @@protoc_insertion_point(message_implements:yamcs.protobuf.archive.CompactDatabaseRequest)
    CompactDatabaseRequestOrBuilder {
private static final long serialVersionUID = 0L;
  // Use CompactDatabaseRequest.newBuilder() to construct.
  private CompactDatabaseRequest(com.google.protobuf.GeneratedMessageV3.Builder builder) {
    super(builder);
  }
  private CompactDatabaseRequest() {
    tablespace_ = "";
    dbpath_ = "";
    cfname_ = "";
  }

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

  @java.lang.Override
  public final com.google.protobuf.UnknownFieldSet
  getUnknownFields() {
    return this.unknownFields;
  }
  private CompactDatabaseRequest(
      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.google.protobuf.ByteString bs = input.readBytes();
            bitField0_ |= 0x00000001;
            tablespace_ = bs;
            break;
          }
          case 18: {
            com.google.protobuf.ByteString bs = input.readBytes();
            bitField0_ |= 0x00000002;
            dbpath_ = bs;
            break;
          }
          case 26: {
            com.google.protobuf.ByteString bs = input.readBytes();
            bitField0_ |= 0x00000004;
            cfname_ = bs;
            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 org.yamcs.protobuf.RocksDbServiceProto.internal_static_yamcs_protobuf_archive_CompactDatabaseRequest_descriptor;
  }

  @java.lang.Override
  protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
      internalGetFieldAccessorTable() {
    return org.yamcs.protobuf.RocksDbServiceProto.internal_static_yamcs_protobuf_archive_CompactDatabaseRequest_fieldAccessorTable
        .ensureFieldAccessorsInitialized(
            org.yamcs.protobuf.CompactDatabaseRequest.class, org.yamcs.protobuf.CompactDatabaseRequest.Builder.class);
  }

  private int bitField0_;
  public static final int TABLESPACE_FIELD_NUMBER = 1;
  private volatile java.lang.Object tablespace_;
  /**
   * optional string tablespace = 1;
   * @return Whether the tablespace field is set.
   */
  @java.lang.Override
  public boolean hasTablespace() {
    return ((bitField0_ & 0x00000001) != 0);
  }
  /**
   * optional string tablespace = 1;
   * @return The tablespace.
   */
  @java.lang.Override
  public java.lang.String getTablespace() {
    java.lang.Object ref = tablespace_;
    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();
      if (bs.isValidUtf8()) {
        tablespace_ = s;
      }
      return s;
    }
  }
  /**
   * optional string tablespace = 1;
   * @return The bytes for tablespace.
   */
  @java.lang.Override
  public com.google.protobuf.ByteString
      getTablespaceBytes() {
    java.lang.Object ref = tablespace_;
    if (ref instanceof java.lang.String) {
      com.google.protobuf.ByteString b = 
          com.google.protobuf.ByteString.copyFromUtf8(
              (java.lang.String) ref);
      tablespace_ = b;
      return b;
    } else {
      return (com.google.protobuf.ByteString) ref;
    }
  }

  public static final int DBPATH_FIELD_NUMBER = 2;
  private volatile java.lang.Object dbpath_;
  /**
   * optional string dbpath = 2;
   * @return Whether the dbpath field is set.
   */
  @java.lang.Override
  public boolean hasDbpath() {
    return ((bitField0_ & 0x00000002) != 0);
  }
  /**
   * optional string dbpath = 2;
   * @return The dbpath.
   */
  @java.lang.Override
  public java.lang.String getDbpath() {
    java.lang.Object ref = dbpath_;
    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();
      if (bs.isValidUtf8()) {
        dbpath_ = s;
      }
      return s;
    }
  }
  /**
   * optional string dbpath = 2;
   * @return The bytes for dbpath.
   */
  @java.lang.Override
  public com.google.protobuf.ByteString
      getDbpathBytes() {
    java.lang.Object ref = dbpath_;
    if (ref instanceof java.lang.String) {
      com.google.protobuf.ByteString b = 
          com.google.protobuf.ByteString.copyFromUtf8(
              (java.lang.String) ref);
      dbpath_ = b;
      return b;
    } else {
      return (com.google.protobuf.ByteString) ref;
    }
  }

  public static final int CFNAME_FIELD_NUMBER = 3;
  private volatile java.lang.Object cfname_;
  /**
   * 
   * Column family
   * Starting with Yamcs 5.9.0 the following column families are used:
   * _metadata_
   *     Stores information about tables, partitions
   * rt_data
   *     Stores the tm, pp and events tables
   * parameter_archive
   *     Stores the parameter archive
   * default
   *     Stores everything else: cmdhistory, alarms, completeness indices,
   *     timeline, activities, users, buckets, ...
   * 
* * optional string cfname = 3; * @return Whether the cfname field is set. */ @java.lang.Override public boolean hasCfname() { return ((bitField0_ & 0x00000004) != 0); } /** *
   * Column family
   * Starting with Yamcs 5.9.0 the following column families are used:
   * _metadata_
   *     Stores information about tables, partitions
   * rt_data
   *     Stores the tm, pp and events tables
   * parameter_archive
   *     Stores the parameter archive
   * default
   *     Stores everything else: cmdhistory, alarms, completeness indices,
   *     timeline, activities, users, buckets, ...
   * 
* * optional string cfname = 3; * @return The cfname. */ @java.lang.Override public java.lang.String getCfname() { java.lang.Object ref = cfname_; 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(); if (bs.isValidUtf8()) { cfname_ = s; } return s; } } /** *
   * Column family
   * Starting with Yamcs 5.9.0 the following column families are used:
   * _metadata_
   *     Stores information about tables, partitions
   * rt_data
   *     Stores the tm, pp and events tables
   * parameter_archive
   *     Stores the parameter archive
   * default
   *     Stores everything else: cmdhistory, alarms, completeness indices,
   *     timeline, activities, users, buckets, ...
   * 
* * optional string cfname = 3; * @return The bytes for cfname. */ @java.lang.Override public com.google.protobuf.ByteString getCfnameBytes() { java.lang.Object ref = cfname_; if (ref instanceof java.lang.String) { com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8( (java.lang.String) ref); cfname_ = 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 (((bitField0_ & 0x00000001) != 0)) { com.google.protobuf.GeneratedMessageV3.writeString(output, 1, tablespace_); } if (((bitField0_ & 0x00000002) != 0)) { com.google.protobuf.GeneratedMessageV3.writeString(output, 2, dbpath_); } if (((bitField0_ & 0x00000004) != 0)) { com.google.protobuf.GeneratedMessageV3.writeString(output, 3, cfname_); } unknownFields.writeTo(output); } @java.lang.Override public int getSerializedSize() { int size = memoizedSize; if (size != -1) return size; size = 0; if (((bitField0_ & 0x00000001) != 0)) { size += com.google.protobuf.GeneratedMessageV3.computeStringSize(1, tablespace_); } if (((bitField0_ & 0x00000002) != 0)) { size += com.google.protobuf.GeneratedMessageV3.computeStringSize(2, dbpath_); } if (((bitField0_ & 0x00000004) != 0)) { size += com.google.protobuf.GeneratedMessageV3.computeStringSize(3, cfname_); } 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 org.yamcs.protobuf.CompactDatabaseRequest)) { return super.equals(obj); } org.yamcs.protobuf.CompactDatabaseRequest other = (org.yamcs.protobuf.CompactDatabaseRequest) obj; if (hasTablespace() != other.hasTablespace()) return false; if (hasTablespace()) { if (!getTablespace() .equals(other.getTablespace())) return false; } if (hasDbpath() != other.hasDbpath()) return false; if (hasDbpath()) { if (!getDbpath() .equals(other.getDbpath())) return false; } if (hasCfname() != other.hasCfname()) return false; if (hasCfname()) { if (!getCfname() .equals(other.getCfname())) 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 (hasTablespace()) { hash = (37 * hash) + TABLESPACE_FIELD_NUMBER; hash = (53 * hash) + getTablespace().hashCode(); } if (hasDbpath()) { hash = (37 * hash) + DBPATH_FIELD_NUMBER; hash = (53 * hash) + getDbpath().hashCode(); } if (hasCfname()) { hash = (37 * hash) + CFNAME_FIELD_NUMBER; hash = (53 * hash) + getCfname().hashCode(); } hash = (29 * hash) + unknownFields.hashCode(); memoizedHashCode = hash; return hash; } public static org.yamcs.protobuf.CompactDatabaseRequest parseFrom( java.nio.ByteBuffer data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static org.yamcs.protobuf.CompactDatabaseRequest parseFrom( java.nio.ByteBuffer data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } public static org.yamcs.protobuf.CompactDatabaseRequest parseFrom( com.google.protobuf.ByteString data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static org.yamcs.protobuf.CompactDatabaseRequest parseFrom( com.google.protobuf.ByteString data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } public static org.yamcs.protobuf.CompactDatabaseRequest parseFrom(byte[] data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static org.yamcs.protobuf.CompactDatabaseRequest parseFrom( byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } public static org.yamcs.protobuf.CompactDatabaseRequest parseFrom(java.io.InputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseWithIOException(PARSER, input); } public static org.yamcs.protobuf.CompactDatabaseRequest 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 org.yamcs.protobuf.CompactDatabaseRequest parseDelimitedFrom(java.io.InputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseDelimitedWithIOException(PARSER, input); } public static org.yamcs.protobuf.CompactDatabaseRequest 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 org.yamcs.protobuf.CompactDatabaseRequest parseFrom( com.google.protobuf.CodedInputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseWithIOException(PARSER, input); } public static org.yamcs.protobuf.CompactDatabaseRequest 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(org.yamcs.protobuf.CompactDatabaseRequest 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 yamcs.protobuf.archive.CompactDatabaseRequest} */ public static final class Builder extends com.google.protobuf.GeneratedMessageV3.Builder implements // @@protoc_insertion_point(builder_implements:yamcs.protobuf.archive.CompactDatabaseRequest) org.yamcs.protobuf.CompactDatabaseRequestOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { return org.yamcs.protobuf.RocksDbServiceProto.internal_static_yamcs_protobuf_archive_CompactDatabaseRequest_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable() { return org.yamcs.protobuf.RocksDbServiceProto.internal_static_yamcs_protobuf_archive_CompactDatabaseRequest_fieldAccessorTable .ensureFieldAccessorsInitialized( org.yamcs.protobuf.CompactDatabaseRequest.class, org.yamcs.protobuf.CompactDatabaseRequest.Builder.class); } // Construct using org.yamcs.protobuf.CompactDatabaseRequest.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(); tablespace_ = ""; bitField0_ = (bitField0_ & ~0x00000001); dbpath_ = ""; bitField0_ = (bitField0_ & ~0x00000002); cfname_ = ""; bitField0_ = (bitField0_ & ~0x00000004); return this; } @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { return org.yamcs.protobuf.RocksDbServiceProto.internal_static_yamcs_protobuf_archive_CompactDatabaseRequest_descriptor; } @java.lang.Override public org.yamcs.protobuf.CompactDatabaseRequest getDefaultInstanceForType() { return org.yamcs.protobuf.CompactDatabaseRequest.getDefaultInstance(); } @java.lang.Override public org.yamcs.protobuf.CompactDatabaseRequest build() { org.yamcs.protobuf.CompactDatabaseRequest result = buildPartial(); if (!result.isInitialized()) { throw newUninitializedMessageException(result); } return result; } @java.lang.Override public org.yamcs.protobuf.CompactDatabaseRequest buildPartial() { org.yamcs.protobuf.CompactDatabaseRequest result = new org.yamcs.protobuf.CompactDatabaseRequest(this); int from_bitField0_ = bitField0_; int to_bitField0_ = 0; if (((from_bitField0_ & 0x00000001) != 0)) { to_bitField0_ |= 0x00000001; } result.tablespace_ = tablespace_; if (((from_bitField0_ & 0x00000002) != 0)) { to_bitField0_ |= 0x00000002; } result.dbpath_ = dbpath_; if (((from_bitField0_ & 0x00000004) != 0)) { to_bitField0_ |= 0x00000004; } result.cfname_ = cfname_; result.bitField0_ = to_bitField0_; 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 org.yamcs.protobuf.CompactDatabaseRequest) { return mergeFrom((org.yamcs.protobuf.CompactDatabaseRequest)other); } else { super.mergeFrom(other); return this; } } public Builder mergeFrom(org.yamcs.protobuf.CompactDatabaseRequest other) { if (other == org.yamcs.protobuf.CompactDatabaseRequest.getDefaultInstance()) return this; if (other.hasTablespace()) { bitField0_ |= 0x00000001; tablespace_ = other.tablespace_; onChanged(); } if (other.hasDbpath()) { bitField0_ |= 0x00000002; dbpath_ = other.dbpath_; onChanged(); } if (other.hasCfname()) { bitField0_ |= 0x00000004; cfname_ = other.cfname_; onChanged(); } 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 { org.yamcs.protobuf.CompactDatabaseRequest parsedMessage = null; try { parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry); } catch (com.google.protobuf.InvalidProtocolBufferException e) { parsedMessage = (org.yamcs.protobuf.CompactDatabaseRequest) e.getUnfinishedMessage(); throw e.unwrapIOException(); } finally { if (parsedMessage != null) { mergeFrom(parsedMessage); } } return this; } private int bitField0_; private java.lang.Object tablespace_ = ""; /** * optional string tablespace = 1; * @return Whether the tablespace field is set. */ public boolean hasTablespace() { return ((bitField0_ & 0x00000001) != 0); } /** * optional string tablespace = 1; * @return The tablespace. */ public java.lang.String getTablespace() { java.lang.Object ref = tablespace_; if (!(ref instanceof java.lang.String)) { com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; java.lang.String s = bs.toStringUtf8(); if (bs.isValidUtf8()) { tablespace_ = s; } return s; } else { return (java.lang.String) ref; } } /** * optional string tablespace = 1; * @return The bytes for tablespace. */ public com.google.protobuf.ByteString getTablespaceBytes() { java.lang.Object ref = tablespace_; if (ref instanceof String) { com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8( (java.lang.String) ref); tablespace_ = b; return b; } else { return (com.google.protobuf.ByteString) ref; } } /** * optional string tablespace = 1; * @param value The tablespace to set. * @return This builder for chaining. */ public Builder setTablespace( java.lang.String value) { if (value == null) { throw new NullPointerException(); } bitField0_ |= 0x00000001; tablespace_ = value; onChanged(); return this; } /** * optional string tablespace = 1; * @return This builder for chaining. */ public Builder clearTablespace() { bitField0_ = (bitField0_ & ~0x00000001); tablespace_ = getDefaultInstance().getTablespace(); onChanged(); return this; } /** * optional string tablespace = 1; * @param value The bytes for tablespace to set. * @return This builder for chaining. */ public Builder setTablespaceBytes( com.google.protobuf.ByteString value) { if (value == null) { throw new NullPointerException(); } bitField0_ |= 0x00000001; tablespace_ = value; onChanged(); return this; } private java.lang.Object dbpath_ = ""; /** * optional string dbpath = 2; * @return Whether the dbpath field is set. */ public boolean hasDbpath() { return ((bitField0_ & 0x00000002) != 0); } /** * optional string dbpath = 2; * @return The dbpath. */ public java.lang.String getDbpath() { java.lang.Object ref = dbpath_; if (!(ref instanceof java.lang.String)) { com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; java.lang.String s = bs.toStringUtf8(); if (bs.isValidUtf8()) { dbpath_ = s; } return s; } else { return (java.lang.String) ref; } } /** * optional string dbpath = 2; * @return The bytes for dbpath. */ public com.google.protobuf.ByteString getDbpathBytes() { java.lang.Object ref = dbpath_; if (ref instanceof String) { com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8( (java.lang.String) ref); dbpath_ = b; return b; } else { return (com.google.protobuf.ByteString) ref; } } /** * optional string dbpath = 2; * @param value The dbpath to set. * @return This builder for chaining. */ public Builder setDbpath( java.lang.String value) { if (value == null) { throw new NullPointerException(); } bitField0_ |= 0x00000002; dbpath_ = value; onChanged(); return this; } /** * optional string dbpath = 2; * @return This builder for chaining. */ public Builder clearDbpath() { bitField0_ = (bitField0_ & ~0x00000002); dbpath_ = getDefaultInstance().getDbpath(); onChanged(); return this; } /** * optional string dbpath = 2; * @param value The bytes for dbpath to set. * @return This builder for chaining. */ public Builder setDbpathBytes( com.google.protobuf.ByteString value) { if (value == null) { throw new NullPointerException(); } bitField0_ |= 0x00000002; dbpath_ = value; onChanged(); return this; } private java.lang.Object cfname_ = ""; /** *
     * Column family
     * Starting with Yamcs 5.9.0 the following column families are used:
     * _metadata_
     *     Stores information about tables, partitions
     * rt_data
     *     Stores the tm, pp and events tables
     * parameter_archive
     *     Stores the parameter archive
     * default
     *     Stores everything else: cmdhistory, alarms, completeness indices,
     *     timeline, activities, users, buckets, ...
     * 
* * optional string cfname = 3; * @return Whether the cfname field is set. */ public boolean hasCfname() { return ((bitField0_ & 0x00000004) != 0); } /** *
     * Column family
     * Starting with Yamcs 5.9.0 the following column families are used:
     * _metadata_
     *     Stores information about tables, partitions
     * rt_data
     *     Stores the tm, pp and events tables
     * parameter_archive
     *     Stores the parameter archive
     * default
     *     Stores everything else: cmdhistory, alarms, completeness indices,
     *     timeline, activities, users, buckets, ...
     * 
* * optional string cfname = 3; * @return The cfname. */ public java.lang.String getCfname() { java.lang.Object ref = cfname_; if (!(ref instanceof java.lang.String)) { com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; java.lang.String s = bs.toStringUtf8(); if (bs.isValidUtf8()) { cfname_ = s; } return s; } else { return (java.lang.String) ref; } } /** *
     * Column family
     * Starting with Yamcs 5.9.0 the following column families are used:
     * _metadata_
     *     Stores information about tables, partitions
     * rt_data
     *     Stores the tm, pp and events tables
     * parameter_archive
     *     Stores the parameter archive
     * default
     *     Stores everything else: cmdhistory, alarms, completeness indices,
     *     timeline, activities, users, buckets, ...
     * 
* * optional string cfname = 3; * @return The bytes for cfname. */ public com.google.protobuf.ByteString getCfnameBytes() { java.lang.Object ref = cfname_; if (ref instanceof String) { com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8( (java.lang.String) ref); cfname_ = b; return b; } else { return (com.google.protobuf.ByteString) ref; } } /** *
     * Column family
     * Starting with Yamcs 5.9.0 the following column families are used:
     * _metadata_
     *     Stores information about tables, partitions
     * rt_data
     *     Stores the tm, pp and events tables
     * parameter_archive
     *     Stores the parameter archive
     * default
     *     Stores everything else: cmdhistory, alarms, completeness indices,
     *     timeline, activities, users, buckets, ...
     * 
* * optional string cfname = 3; * @param value The cfname to set. * @return This builder for chaining. */ public Builder setCfname( java.lang.String value) { if (value == null) { throw new NullPointerException(); } bitField0_ |= 0x00000004; cfname_ = value; onChanged(); return this; } /** *
     * Column family
     * Starting with Yamcs 5.9.0 the following column families are used:
     * _metadata_
     *     Stores information about tables, partitions
     * rt_data
     *     Stores the tm, pp and events tables
     * parameter_archive
     *     Stores the parameter archive
     * default
     *     Stores everything else: cmdhistory, alarms, completeness indices,
     *     timeline, activities, users, buckets, ...
     * 
* * optional string cfname = 3; * @return This builder for chaining. */ public Builder clearCfname() { bitField0_ = (bitField0_ & ~0x00000004); cfname_ = getDefaultInstance().getCfname(); onChanged(); return this; } /** *
     * Column family
     * Starting with Yamcs 5.9.0 the following column families are used:
     * _metadata_
     *     Stores information about tables, partitions
     * rt_data
     *     Stores the tm, pp and events tables
     * parameter_archive
     *     Stores the parameter archive
     * default
     *     Stores everything else: cmdhistory, alarms, completeness indices,
     *     timeline, activities, users, buckets, ...
     * 
* * optional string cfname = 3; * @param value The bytes for cfname to set. * @return This builder for chaining. */ public Builder setCfnameBytes( com.google.protobuf.ByteString value) { if (value == null) { throw new NullPointerException(); } bitField0_ |= 0x00000004; cfname_ = value; 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:yamcs.protobuf.archive.CompactDatabaseRequest) } // @@protoc_insertion_point(class_scope:yamcs.protobuf.archive.CompactDatabaseRequest) private static final org.yamcs.protobuf.CompactDatabaseRequest DEFAULT_INSTANCE; static { DEFAULT_INSTANCE = new org.yamcs.protobuf.CompactDatabaseRequest(); } public static org.yamcs.protobuf.CompactDatabaseRequest getDefaultInstance() { return DEFAULT_INSTANCE; } @java.lang.Deprecated public static final com.google.protobuf.Parser PARSER = new com.google.protobuf.AbstractParser() { @java.lang.Override public CompactDatabaseRequest parsePartialFrom( com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return new CompactDatabaseRequest(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 org.yamcs.protobuf.CompactDatabaseRequest getDefaultInstanceForType() { return DEFAULT_INSTANCE; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy