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

org.yamcs.protobuf.ProcessorRequest 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/yamcsManagement/yamcsManagement.proto

package org.yamcs.protobuf;

/**
 * Protobuf type {@code yamcs.protobuf.yamcsManagement.ProcessorRequest}
 */
public final class ProcessorRequest extends
    com.google.protobuf.GeneratedMessageV3 implements
    // @@protoc_insertion_point(message_implements:yamcs.protobuf.yamcsManagement.ProcessorRequest)
    ProcessorRequestOrBuilder {
private static final long serialVersionUID = 0L;
  // Use ProcessorRequest.newBuilder() to construct.
  private ProcessorRequest(com.google.protobuf.GeneratedMessageV3.Builder builder) {
    super(builder);
  }
  private ProcessorRequest() {
    operation_ = 2;
    instance_ = "";
    name_ = "";
  }

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

  @java.lang.Override
  public final com.google.protobuf.UnknownFieldSet
  getUnknownFields() {
    return this.unknownFields;
  }
  private ProcessorRequest(
      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 8: {
            int rawValue = input.readEnum();
              @SuppressWarnings("deprecation")
            org.yamcs.protobuf.ProcessorRequest.Operation value = org.yamcs.protobuf.ProcessorRequest.Operation.valueOf(rawValue);
            if (value == null) {
              unknownFields.mergeVarintField(1, rawValue);
            } else {
              bitField0_ |= 0x00000001;
              operation_ = rawValue;
            }
            break;
          }
          case 18: {
            com.google.protobuf.ByteString bs = input.readBytes();
            bitField0_ |= 0x00000002;
            instance_ = bs;
            break;
          }
          case 26: {
            com.google.protobuf.ByteString bs = input.readBytes();
            bitField0_ |= 0x00000004;
            name_ = bs;
            break;
          }
          case 32: {
            bitField0_ |= 0x00000008;
            seekTime_ = input.readInt64();
            break;
          }
          case 42: {
            org.yamcs.protobuf.Yamcs.ReplaySpeed.Builder subBuilder = null;
            if (((bitField0_ & 0x00000010) != 0)) {
              subBuilder = replaySpeed_.toBuilder();
            }
            replaySpeed_ = input.readMessage(org.yamcs.protobuf.Yamcs.ReplaySpeed.PARSER, extensionRegistry);
            if (subBuilder != null) {
              subBuilder.mergeFrom(replaySpeed_);
              replaySpeed_ = subBuilder.buildPartial();
            }
            bitField0_ |= 0x00000010;
            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.YamcsManagementProto.internal_static_yamcs_protobuf_yamcsManagement_ProcessorRequest_descriptor;
  }

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

  /**
   * Protobuf enum {@code yamcs.protobuf.yamcsManagement.ProcessorRequest.Operation}
   */
  public enum Operation
      implements com.google.protobuf.ProtocolMessageEnum {
    /**
     * 
     * Pause the processor
     * 
* * PAUSE = 2; */ PAUSE(2), /** *
     * Resume the processor
     * 
* * RESUME = 3; */ RESUME(3), /** *
     * Seek to a specific time
     * 
* * SEEK = 4; */ SEEK(4), /** *
     * Change speed of a processor
     * 
* * CHANGE_SPEED = 5; */ CHANGE_SPEED(5), ; /** *
     * Pause the processor
     * 
* * PAUSE = 2; */ public static final int PAUSE_VALUE = 2; /** *
     * Resume the processor
     * 
* * RESUME = 3; */ public static final int RESUME_VALUE = 3; /** *
     * Seek to a specific time
     * 
* * SEEK = 4; */ public static final int SEEK_VALUE = 4; /** *
     * Change speed of a processor
     * 
* * CHANGE_SPEED = 5; */ public static final int CHANGE_SPEED_VALUE = 5; public final int getNumber() { return value; } /** * @param value The numeric wire value of the corresponding enum entry. * @return The enum associated with the given numeric wire value. * @deprecated Use {@link #forNumber(int)} instead. */ @java.lang.Deprecated public static Operation valueOf(int value) { return forNumber(value); } /** * @param value The numeric wire value of the corresponding enum entry. * @return The enum associated with the given numeric wire value. */ public static Operation forNumber(int value) { switch (value) { case 2: return PAUSE; case 3: return RESUME; case 4: return SEEK; case 5: return CHANGE_SPEED; default: return null; } } public static com.google.protobuf.Internal.EnumLiteMap internalGetValueMap() { return internalValueMap; } private static final com.google.protobuf.Internal.EnumLiteMap< Operation> internalValueMap = new com.google.protobuf.Internal.EnumLiteMap() { public Operation findValueByNumber(int number) { return Operation.forNumber(number); } }; public final com.google.protobuf.Descriptors.EnumValueDescriptor getValueDescriptor() { return getDescriptor().getValues().get(ordinal()); } public final com.google.protobuf.Descriptors.EnumDescriptor getDescriptorForType() { return getDescriptor(); } public static final com.google.protobuf.Descriptors.EnumDescriptor getDescriptor() { return org.yamcs.protobuf.ProcessorRequest.getDescriptor().getEnumTypes().get(0); } private static final Operation[] VALUES = values(); public static Operation valueOf( com.google.protobuf.Descriptors.EnumValueDescriptor desc) { if (desc.getType() != getDescriptor()) { throw new java.lang.IllegalArgumentException( "EnumValueDescriptor is not for this type."); } return VALUES[desc.getIndex()]; } private final int value; private Operation(int value) { this.value = value; } // @@protoc_insertion_point(enum_scope:yamcs.protobuf.yamcsManagement.ProcessorRequest.Operation) } private int bitField0_; public static final int OPERATION_FIELD_NUMBER = 1; private int operation_; /** *
   * Which operation to perform with this request
   * 
* * optional .yamcs.protobuf.yamcsManagement.ProcessorRequest.Operation operation = 1; * @return Whether the operation field is set. */ @java.lang.Override public boolean hasOperation() { return ((bitField0_ & 0x00000001) != 0); } /** *
   * Which operation to perform with this request
   * 
* * optional .yamcs.protobuf.yamcsManagement.ProcessorRequest.Operation operation = 1; * @return The operation. */ @java.lang.Override public org.yamcs.protobuf.ProcessorRequest.Operation getOperation() { @SuppressWarnings("deprecation") org.yamcs.protobuf.ProcessorRequest.Operation result = org.yamcs.protobuf.ProcessorRequest.Operation.valueOf(operation_); return result == null ? org.yamcs.protobuf.ProcessorRequest.Operation.PAUSE : result; } public static final int INSTANCE_FIELD_NUMBER = 2; private volatile java.lang.Object instance_; /** *
   * Yamcs instance name
   * 
* * optional string instance = 2; * @return Whether the instance field is set. */ @java.lang.Override public boolean hasInstance() { return ((bitField0_ & 0x00000002) != 0); } /** *
   * Yamcs instance name
   * 
* * optional string instance = 2; * @return The instance. */ @java.lang.Override public java.lang.String getInstance() { java.lang.Object ref = instance_; 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()) { instance_ = s; } return s; } } /** *
   * Yamcs instance name
   * 
* * optional string instance = 2; * @return The bytes for instance. */ @java.lang.Override public com.google.protobuf.ByteString getInstanceBytes() { java.lang.Object ref = instance_; if (ref instanceof java.lang.String) { com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8( (java.lang.String) ref); instance_ = b; return b; } else { return (com.google.protobuf.ByteString) ref; } } public static final int NAME_FIELD_NUMBER = 3; private volatile java.lang.Object name_; /** *
   * Processor name
   * 
* * optional string name = 3; * @return Whether the name field is set. */ @java.lang.Override public boolean hasName() { return ((bitField0_ & 0x00000004) != 0); } /** *
   * Processor name
   * 
* * optional string name = 3; * @return The name. */ @java.lang.Override public java.lang.String getName() { java.lang.Object ref = name_; 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()) { name_ = s; } return s; } } /** *
   * Processor name
   * 
* * optional string name = 3; * @return The bytes for name. */ @java.lang.Override public com.google.protobuf.ByteString getNameBytes() { java.lang.Object ref = name_; if (ref instanceof java.lang.String) { com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8( (java.lang.String) ref); name_ = b; return b; } else { return (com.google.protobuf.ByteString) ref; } } public static final int SEEKTIME_FIELD_NUMBER = 4; private long seekTime_; /** *
   * Time to seek to, when ``operation`` is set to ``SEEK``
   * 
* * optional int64 seekTime = 4; * @return Whether the seekTime field is set. */ @java.lang.Override public boolean hasSeekTime() { return ((bitField0_ & 0x00000008) != 0); } /** *
   * Time to seek to, when ``operation`` is set to ``SEEK``
   * 
* * optional int64 seekTime = 4; * @return The seekTime. */ @java.lang.Override public long getSeekTime() { return seekTime_; } public static final int REPLAYSPEED_FIELD_NUMBER = 5; private org.yamcs.protobuf.Yamcs.ReplaySpeed replaySpeed_; /** *
   * Speec, shen ``operation`` is set to ``CHANGE_SPEED``
   * 
* * optional .yamcs.protobuf.ReplaySpeed replaySpeed = 5; * @return Whether the replaySpeed field is set. */ @java.lang.Override public boolean hasReplaySpeed() { return ((bitField0_ & 0x00000010) != 0); } /** *
   * Speec, shen ``operation`` is set to ``CHANGE_SPEED``
   * 
* * optional .yamcs.protobuf.ReplaySpeed replaySpeed = 5; * @return The replaySpeed. */ @java.lang.Override public org.yamcs.protobuf.Yamcs.ReplaySpeed getReplaySpeed() { return replaySpeed_ == null ? org.yamcs.protobuf.Yamcs.ReplaySpeed.getDefaultInstance() : replaySpeed_; } /** *
   * Speec, shen ``operation`` is set to ``CHANGE_SPEED``
   * 
* * optional .yamcs.protobuf.ReplaySpeed replaySpeed = 5; */ @java.lang.Override public org.yamcs.protobuf.Yamcs.ReplaySpeedOrBuilder getReplaySpeedOrBuilder() { return replaySpeed_ == null ? org.yamcs.protobuf.Yamcs.ReplaySpeed.getDefaultInstance() : replaySpeed_; } private byte memoizedIsInitialized = -1; @java.lang.Override public final boolean isInitialized() { byte isInitialized = memoizedIsInitialized; if (isInitialized == 1) return true; if (isInitialized == 0) return false; if (hasReplaySpeed()) { if (!getReplaySpeed().isInitialized()) { memoizedIsInitialized = 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)) { output.writeEnum(1, operation_); } if (((bitField0_ & 0x00000002) != 0)) { com.google.protobuf.GeneratedMessageV3.writeString(output, 2, instance_); } if (((bitField0_ & 0x00000004) != 0)) { com.google.protobuf.GeneratedMessageV3.writeString(output, 3, name_); } if (((bitField0_ & 0x00000008) != 0)) { output.writeInt64(4, seekTime_); } if (((bitField0_ & 0x00000010) != 0)) { output.writeMessage(5, getReplaySpeed()); } 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.CodedOutputStream .computeEnumSize(1, operation_); } if (((bitField0_ & 0x00000002) != 0)) { size += com.google.protobuf.GeneratedMessageV3.computeStringSize(2, instance_); } if (((bitField0_ & 0x00000004) != 0)) { size += com.google.protobuf.GeneratedMessageV3.computeStringSize(3, name_); } if (((bitField0_ & 0x00000008) != 0)) { size += com.google.protobuf.CodedOutputStream .computeInt64Size(4, seekTime_); } if (((bitField0_ & 0x00000010) != 0)) { size += com.google.protobuf.CodedOutputStream .computeMessageSize(5, getReplaySpeed()); } 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.ProcessorRequest)) { return super.equals(obj); } org.yamcs.protobuf.ProcessorRequest other = (org.yamcs.protobuf.ProcessorRequest) obj; if (hasOperation() != other.hasOperation()) return false; if (hasOperation()) { if (operation_ != other.operation_) return false; } if (hasInstance() != other.hasInstance()) return false; if (hasInstance()) { if (!getInstance() .equals(other.getInstance())) return false; } if (hasName() != other.hasName()) return false; if (hasName()) { if (!getName() .equals(other.getName())) return false; } if (hasSeekTime() != other.hasSeekTime()) return false; if (hasSeekTime()) { if (getSeekTime() != other.getSeekTime()) return false; } if (hasReplaySpeed() != other.hasReplaySpeed()) return false; if (hasReplaySpeed()) { if (!getReplaySpeed() .equals(other.getReplaySpeed())) 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 (hasOperation()) { hash = (37 * hash) + OPERATION_FIELD_NUMBER; hash = (53 * hash) + operation_; } if (hasInstance()) { hash = (37 * hash) + INSTANCE_FIELD_NUMBER; hash = (53 * hash) + getInstance().hashCode(); } if (hasName()) { hash = (37 * hash) + NAME_FIELD_NUMBER; hash = (53 * hash) + getName().hashCode(); } if (hasSeekTime()) { hash = (37 * hash) + SEEKTIME_FIELD_NUMBER; hash = (53 * hash) + com.google.protobuf.Internal.hashLong( getSeekTime()); } if (hasReplaySpeed()) { hash = (37 * hash) + REPLAYSPEED_FIELD_NUMBER; hash = (53 * hash) + getReplaySpeed().hashCode(); } hash = (29 * hash) + unknownFields.hashCode(); memoizedHashCode = hash; return hash; } public static org.yamcs.protobuf.ProcessorRequest parseFrom( java.nio.ByteBuffer data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static org.yamcs.protobuf.ProcessorRequest 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.ProcessorRequest parseFrom( com.google.protobuf.ByteString data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static org.yamcs.protobuf.ProcessorRequest 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.ProcessorRequest parseFrom(byte[] data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static org.yamcs.protobuf.ProcessorRequest parseFrom( byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } public static org.yamcs.protobuf.ProcessorRequest parseFrom(java.io.InputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseWithIOException(PARSER, input); } public static org.yamcs.protobuf.ProcessorRequest 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.ProcessorRequest parseDelimitedFrom(java.io.InputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseDelimitedWithIOException(PARSER, input); } public static org.yamcs.protobuf.ProcessorRequest 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.ProcessorRequest parseFrom( com.google.protobuf.CodedInputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseWithIOException(PARSER, input); } public static org.yamcs.protobuf.ProcessorRequest 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.ProcessorRequest 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.yamcsManagement.ProcessorRequest} */ public static final class Builder extends com.google.protobuf.GeneratedMessageV3.Builder implements // @@protoc_insertion_point(builder_implements:yamcs.protobuf.yamcsManagement.ProcessorRequest) org.yamcs.protobuf.ProcessorRequestOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { return org.yamcs.protobuf.YamcsManagementProto.internal_static_yamcs_protobuf_yamcsManagement_ProcessorRequest_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable() { return org.yamcs.protobuf.YamcsManagementProto.internal_static_yamcs_protobuf_yamcsManagement_ProcessorRequest_fieldAccessorTable .ensureFieldAccessorsInitialized( org.yamcs.protobuf.ProcessorRequest.class, org.yamcs.protobuf.ProcessorRequest.Builder.class); } // Construct using org.yamcs.protobuf.ProcessorRequest.newBuilder() private Builder() { maybeForceBuilderInitialization(); } private Builder( com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { super(parent); maybeForceBuilderInitialization(); } private void maybeForceBuilderInitialization() { if (com.google.protobuf.GeneratedMessageV3 .alwaysUseFieldBuilders) { getReplaySpeedFieldBuilder(); } } @java.lang.Override public Builder clear() { super.clear(); operation_ = 2; bitField0_ = (bitField0_ & ~0x00000001); instance_ = ""; bitField0_ = (bitField0_ & ~0x00000002); name_ = ""; bitField0_ = (bitField0_ & ~0x00000004); seekTime_ = 0L; bitField0_ = (bitField0_ & ~0x00000008); if (replaySpeedBuilder_ == null) { replaySpeed_ = null; } else { replaySpeedBuilder_.clear(); } bitField0_ = (bitField0_ & ~0x00000010); return this; } @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { return org.yamcs.protobuf.YamcsManagementProto.internal_static_yamcs_protobuf_yamcsManagement_ProcessorRequest_descriptor; } @java.lang.Override public org.yamcs.protobuf.ProcessorRequest getDefaultInstanceForType() { return org.yamcs.protobuf.ProcessorRequest.getDefaultInstance(); } @java.lang.Override public org.yamcs.protobuf.ProcessorRequest build() { org.yamcs.protobuf.ProcessorRequest result = buildPartial(); if (!result.isInitialized()) { throw newUninitializedMessageException(result); } return result; } @java.lang.Override public org.yamcs.protobuf.ProcessorRequest buildPartial() { org.yamcs.protobuf.ProcessorRequest result = new org.yamcs.protobuf.ProcessorRequest(this); int from_bitField0_ = bitField0_; int to_bitField0_ = 0; if (((from_bitField0_ & 0x00000001) != 0)) { to_bitField0_ |= 0x00000001; } result.operation_ = operation_; if (((from_bitField0_ & 0x00000002) != 0)) { to_bitField0_ |= 0x00000002; } result.instance_ = instance_; if (((from_bitField0_ & 0x00000004) != 0)) { to_bitField0_ |= 0x00000004; } result.name_ = name_; if (((from_bitField0_ & 0x00000008) != 0)) { result.seekTime_ = seekTime_; to_bitField0_ |= 0x00000008; } if (((from_bitField0_ & 0x00000010) != 0)) { if (replaySpeedBuilder_ == null) { result.replaySpeed_ = replaySpeed_; } else { result.replaySpeed_ = replaySpeedBuilder_.build(); } to_bitField0_ |= 0x00000010; } 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.ProcessorRequest) { return mergeFrom((org.yamcs.protobuf.ProcessorRequest)other); } else { super.mergeFrom(other); return this; } } public Builder mergeFrom(org.yamcs.protobuf.ProcessorRequest other) { if (other == org.yamcs.protobuf.ProcessorRequest.getDefaultInstance()) return this; if (other.hasOperation()) { setOperation(other.getOperation()); } if (other.hasInstance()) { bitField0_ |= 0x00000002; instance_ = other.instance_; onChanged(); } if (other.hasName()) { bitField0_ |= 0x00000004; name_ = other.name_; onChanged(); } if (other.hasSeekTime()) { setSeekTime(other.getSeekTime()); } if (other.hasReplaySpeed()) { mergeReplaySpeed(other.getReplaySpeed()); } this.mergeUnknownFields(other.unknownFields); onChanged(); return this; } @java.lang.Override public final boolean isInitialized() { if (hasReplaySpeed()) { if (!getReplaySpeed().isInitialized()) { return false; } } 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.ProcessorRequest parsedMessage = null; try { parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry); } catch (com.google.protobuf.InvalidProtocolBufferException e) { parsedMessage = (org.yamcs.protobuf.ProcessorRequest) e.getUnfinishedMessage(); throw e.unwrapIOException(); } finally { if (parsedMessage != null) { mergeFrom(parsedMessage); } } return this; } private int bitField0_; private int operation_ = 2; /** *
     * Which operation to perform with this request
     * 
* * optional .yamcs.protobuf.yamcsManagement.ProcessorRequest.Operation operation = 1; * @return Whether the operation field is set. */ @java.lang.Override public boolean hasOperation() { return ((bitField0_ & 0x00000001) != 0); } /** *
     * Which operation to perform with this request
     * 
* * optional .yamcs.protobuf.yamcsManagement.ProcessorRequest.Operation operation = 1; * @return The operation. */ @java.lang.Override public org.yamcs.protobuf.ProcessorRequest.Operation getOperation() { @SuppressWarnings("deprecation") org.yamcs.protobuf.ProcessorRequest.Operation result = org.yamcs.protobuf.ProcessorRequest.Operation.valueOf(operation_); return result == null ? org.yamcs.protobuf.ProcessorRequest.Operation.PAUSE : result; } /** *
     * Which operation to perform with this request
     * 
* * optional .yamcs.protobuf.yamcsManagement.ProcessorRequest.Operation operation = 1; * @param value The operation to set. * @return This builder for chaining. */ public Builder setOperation(org.yamcs.protobuf.ProcessorRequest.Operation value) { if (value == null) { throw new NullPointerException(); } bitField0_ |= 0x00000001; operation_ = value.getNumber(); onChanged(); return this; } /** *
     * Which operation to perform with this request
     * 
* * optional .yamcs.protobuf.yamcsManagement.ProcessorRequest.Operation operation = 1; * @return This builder for chaining. */ public Builder clearOperation() { bitField0_ = (bitField0_ & ~0x00000001); operation_ = 2; onChanged(); return this; } private java.lang.Object instance_ = ""; /** *
     * Yamcs instance name
     * 
* * optional string instance = 2; * @return Whether the instance field is set. */ public boolean hasInstance() { return ((bitField0_ & 0x00000002) != 0); } /** *
     * Yamcs instance name
     * 
* * optional string instance = 2; * @return The instance. */ public java.lang.String getInstance() { java.lang.Object ref = instance_; 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()) { instance_ = s; } return s; } else { return (java.lang.String) ref; } } /** *
     * Yamcs instance name
     * 
* * optional string instance = 2; * @return The bytes for instance. */ public com.google.protobuf.ByteString getInstanceBytes() { java.lang.Object ref = instance_; if (ref instanceof String) { com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8( (java.lang.String) ref); instance_ = b; return b; } else { return (com.google.protobuf.ByteString) ref; } } /** *
     * Yamcs instance name
     * 
* * optional string instance = 2; * @param value The instance to set. * @return This builder for chaining. */ public Builder setInstance( java.lang.String value) { if (value == null) { throw new NullPointerException(); } bitField0_ |= 0x00000002; instance_ = value; onChanged(); return this; } /** *
     * Yamcs instance name
     * 
* * optional string instance = 2; * @return This builder for chaining. */ public Builder clearInstance() { bitField0_ = (bitField0_ & ~0x00000002); instance_ = getDefaultInstance().getInstance(); onChanged(); return this; } /** *
     * Yamcs instance name
     * 
* * optional string instance = 2; * @param value The bytes for instance to set. * @return This builder for chaining. */ public Builder setInstanceBytes( com.google.protobuf.ByteString value) { if (value == null) { throw new NullPointerException(); } bitField0_ |= 0x00000002; instance_ = value; onChanged(); return this; } private java.lang.Object name_ = ""; /** *
     * Processor name
     * 
* * optional string name = 3; * @return Whether the name field is set. */ public boolean hasName() { return ((bitField0_ & 0x00000004) != 0); } /** *
     * Processor name
     * 
* * optional string name = 3; * @return The name. */ public java.lang.String getName() { java.lang.Object ref = name_; 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()) { name_ = s; } return s; } else { return (java.lang.String) ref; } } /** *
     * Processor name
     * 
* * optional string name = 3; * @return The bytes for name. */ public com.google.protobuf.ByteString getNameBytes() { java.lang.Object ref = name_; if (ref instanceof String) { com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8( (java.lang.String) ref); name_ = b; return b; } else { return (com.google.protobuf.ByteString) ref; } } /** *
     * Processor name
     * 
* * optional string name = 3; * @param value The name to set. * @return This builder for chaining. */ public Builder setName( java.lang.String value) { if (value == null) { throw new NullPointerException(); } bitField0_ |= 0x00000004; name_ = value; onChanged(); return this; } /** *
     * Processor name
     * 
* * optional string name = 3; * @return This builder for chaining. */ public Builder clearName() { bitField0_ = (bitField0_ & ~0x00000004); name_ = getDefaultInstance().getName(); onChanged(); return this; } /** *
     * Processor name
     * 
* * optional string name = 3; * @param value The bytes for name to set. * @return This builder for chaining. */ public Builder setNameBytes( com.google.protobuf.ByteString value) { if (value == null) { throw new NullPointerException(); } bitField0_ |= 0x00000004; name_ = value; onChanged(); return this; } private long seekTime_ ; /** *
     * Time to seek to, when ``operation`` is set to ``SEEK``
     * 
* * optional int64 seekTime = 4; * @return Whether the seekTime field is set. */ @java.lang.Override public boolean hasSeekTime() { return ((bitField0_ & 0x00000008) != 0); } /** *
     * Time to seek to, when ``operation`` is set to ``SEEK``
     * 
* * optional int64 seekTime = 4; * @return The seekTime. */ @java.lang.Override public long getSeekTime() { return seekTime_; } /** *
     * Time to seek to, when ``operation`` is set to ``SEEK``
     * 
* * optional int64 seekTime = 4; * @param value The seekTime to set. * @return This builder for chaining. */ public Builder setSeekTime(long value) { bitField0_ |= 0x00000008; seekTime_ = value; onChanged(); return this; } /** *
     * Time to seek to, when ``operation`` is set to ``SEEK``
     * 
* * optional int64 seekTime = 4; * @return This builder for chaining. */ public Builder clearSeekTime() { bitField0_ = (bitField0_ & ~0x00000008); seekTime_ = 0L; onChanged(); return this; } private org.yamcs.protobuf.Yamcs.ReplaySpeed replaySpeed_; private com.google.protobuf.SingleFieldBuilderV3< org.yamcs.protobuf.Yamcs.ReplaySpeed, org.yamcs.protobuf.Yamcs.ReplaySpeed.Builder, org.yamcs.protobuf.Yamcs.ReplaySpeedOrBuilder> replaySpeedBuilder_; /** *
     * Speec, shen ``operation`` is set to ``CHANGE_SPEED``
     * 
* * optional .yamcs.protobuf.ReplaySpeed replaySpeed = 5; * @return Whether the replaySpeed field is set. */ public boolean hasReplaySpeed() { return ((bitField0_ & 0x00000010) != 0); } /** *
     * Speec, shen ``operation`` is set to ``CHANGE_SPEED``
     * 
* * optional .yamcs.protobuf.ReplaySpeed replaySpeed = 5; * @return The replaySpeed. */ public org.yamcs.protobuf.Yamcs.ReplaySpeed getReplaySpeed() { if (replaySpeedBuilder_ == null) { return replaySpeed_ == null ? org.yamcs.protobuf.Yamcs.ReplaySpeed.getDefaultInstance() : replaySpeed_; } else { return replaySpeedBuilder_.getMessage(); } } /** *
     * Speec, shen ``operation`` is set to ``CHANGE_SPEED``
     * 
* * optional .yamcs.protobuf.ReplaySpeed replaySpeed = 5; */ public Builder setReplaySpeed(org.yamcs.protobuf.Yamcs.ReplaySpeed value) { if (replaySpeedBuilder_ == null) { if (value == null) { throw new NullPointerException(); } replaySpeed_ = value; onChanged(); } else { replaySpeedBuilder_.setMessage(value); } bitField0_ |= 0x00000010; return this; } /** *
     * Speec, shen ``operation`` is set to ``CHANGE_SPEED``
     * 
* * optional .yamcs.protobuf.ReplaySpeed replaySpeed = 5; */ public Builder setReplaySpeed( org.yamcs.protobuf.Yamcs.ReplaySpeed.Builder builderForValue) { if (replaySpeedBuilder_ == null) { replaySpeed_ = builderForValue.build(); onChanged(); } else { replaySpeedBuilder_.setMessage(builderForValue.build()); } bitField0_ |= 0x00000010; return this; } /** *
     * Speec, shen ``operation`` is set to ``CHANGE_SPEED``
     * 
* * optional .yamcs.protobuf.ReplaySpeed replaySpeed = 5; */ public Builder mergeReplaySpeed(org.yamcs.protobuf.Yamcs.ReplaySpeed value) { if (replaySpeedBuilder_ == null) { if (((bitField0_ & 0x00000010) != 0) && replaySpeed_ != null && replaySpeed_ != org.yamcs.protobuf.Yamcs.ReplaySpeed.getDefaultInstance()) { replaySpeed_ = org.yamcs.protobuf.Yamcs.ReplaySpeed.newBuilder(replaySpeed_).mergeFrom(value).buildPartial(); } else { replaySpeed_ = value; } onChanged(); } else { replaySpeedBuilder_.mergeFrom(value); } bitField0_ |= 0x00000010; return this; } /** *
     * Speec, shen ``operation`` is set to ``CHANGE_SPEED``
     * 
* * optional .yamcs.protobuf.ReplaySpeed replaySpeed = 5; */ public Builder clearReplaySpeed() { if (replaySpeedBuilder_ == null) { replaySpeed_ = null; onChanged(); } else { replaySpeedBuilder_.clear(); } bitField0_ = (bitField0_ & ~0x00000010); return this; } /** *
     * Speec, shen ``operation`` is set to ``CHANGE_SPEED``
     * 
* * optional .yamcs.protobuf.ReplaySpeed replaySpeed = 5; */ public org.yamcs.protobuf.Yamcs.ReplaySpeed.Builder getReplaySpeedBuilder() { bitField0_ |= 0x00000010; onChanged(); return getReplaySpeedFieldBuilder().getBuilder(); } /** *
     * Speec, shen ``operation`` is set to ``CHANGE_SPEED``
     * 
* * optional .yamcs.protobuf.ReplaySpeed replaySpeed = 5; */ public org.yamcs.protobuf.Yamcs.ReplaySpeedOrBuilder getReplaySpeedOrBuilder() { if (replaySpeedBuilder_ != null) { return replaySpeedBuilder_.getMessageOrBuilder(); } else { return replaySpeed_ == null ? org.yamcs.protobuf.Yamcs.ReplaySpeed.getDefaultInstance() : replaySpeed_; } } /** *
     * Speec, shen ``operation`` is set to ``CHANGE_SPEED``
     * 
* * optional .yamcs.protobuf.ReplaySpeed replaySpeed = 5; */ private com.google.protobuf.SingleFieldBuilderV3< org.yamcs.protobuf.Yamcs.ReplaySpeed, org.yamcs.protobuf.Yamcs.ReplaySpeed.Builder, org.yamcs.protobuf.Yamcs.ReplaySpeedOrBuilder> getReplaySpeedFieldBuilder() { if (replaySpeedBuilder_ == null) { replaySpeedBuilder_ = new com.google.protobuf.SingleFieldBuilderV3< org.yamcs.protobuf.Yamcs.ReplaySpeed, org.yamcs.protobuf.Yamcs.ReplaySpeed.Builder, org.yamcs.protobuf.Yamcs.ReplaySpeedOrBuilder>( getReplaySpeed(), getParentForChildren(), isClean()); replaySpeed_ = null; } return replaySpeedBuilder_; } @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.yamcsManagement.ProcessorRequest) } // @@protoc_insertion_point(class_scope:yamcs.protobuf.yamcsManagement.ProcessorRequest) private static final org.yamcs.protobuf.ProcessorRequest DEFAULT_INSTANCE; static { DEFAULT_INSTANCE = new org.yamcs.protobuf.ProcessorRequest(); } public static org.yamcs.protobuf.ProcessorRequest getDefaultInstance() { return DEFAULT_INSTANCE; } @java.lang.Deprecated public static final com.google.protobuf.Parser PARSER = new com.google.protobuf.AbstractParser() { @java.lang.Override public ProcessorRequest parsePartialFrom( com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return new ProcessorRequest(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.ProcessorRequest getDefaultInstanceForType() { return DEFAULT_INSTANCE; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy