Interface AlgorithmTrace.RunOrBuilder

All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder, com.google.protobuf.MessageOrBuilder
All Known Implementing Classes:
AlgorithmTrace.Run, AlgorithmTrace.Run.Builder
Enclosing class:
AlgorithmTrace

public static interface AlgorithmTrace.RunOrBuilder extends com.google.protobuf.MessageOrBuilder
  • Method Details

    • hasTime

      boolean hasTime()
       When this run was started
       
      optional .google.protobuf.Timestamp time = 1;
      Returns:
      Whether the time field is set.
    • getTime

      com.google.protobuf.Timestamp getTime()
       When this run was started
       
      optional .google.protobuf.Timestamp time = 1;
      Returns:
      The time.
    • getTimeOrBuilder

      com.google.protobuf.TimestampOrBuilder getTimeOrBuilder()
       When this run was started
       
      optional .google.protobuf.Timestamp time = 1;
    • getInputsList

      List<Pvalue.ParameterValue> getInputsList()
       Values of input parameters for this run
       
      repeated .yamcs.protobuf.pvalue.ParameterValue inputs = 2;
    • getInputs

      Pvalue.ParameterValue getInputs(int index)
       Values of input parameters for this run
       
      repeated .yamcs.protobuf.pvalue.ParameterValue inputs = 2;
    • getInputsCount

      int getInputsCount()
       Values of input parameters for this run
       
      repeated .yamcs.protobuf.pvalue.ParameterValue inputs = 2;
    • getInputsOrBuilderList

      List<? extends Pvalue.ParameterValueOrBuilder> getInputsOrBuilderList()
       Values of input parameters for this run
       
      repeated .yamcs.protobuf.pvalue.ParameterValue inputs = 2;
    • getInputsOrBuilder

      Pvalue.ParameterValueOrBuilder getInputsOrBuilder(int index)
       Values of input parameters for this run
       
      repeated .yamcs.protobuf.pvalue.ParameterValue inputs = 2;
    • getOutputsList

      List<Pvalue.ParameterValue> getOutputsList()
       Values of output parameters for this run
       
      repeated .yamcs.protobuf.pvalue.ParameterValue outputs = 3;
    • getOutputs

      Pvalue.ParameterValue getOutputs(int index)
       Values of output parameters for this run
       
      repeated .yamcs.protobuf.pvalue.ParameterValue outputs = 3;
    • getOutputsCount

      int getOutputsCount()
       Values of output parameters for this run
       
      repeated .yamcs.protobuf.pvalue.ParameterValue outputs = 3;
    • getOutputsOrBuilderList

      List<? extends Pvalue.ParameterValueOrBuilder> getOutputsOrBuilderList()
       Values of output parameters for this run
       
      repeated .yamcs.protobuf.pvalue.ParameterValue outputs = 3;
    • getOutputsOrBuilder

      Pvalue.ParameterValueOrBuilder getOutputsOrBuilder(int index)
       Values of output parameters for this run
       
      repeated .yamcs.protobuf.pvalue.ParameterValue outputs = 3;
    • hasReturnValue

      boolean hasReturnValue()
       The return value, if the algorithm returned something.
       This can be useful in the context of verifiers.
       
      optional string returnValue = 4;
      Returns:
      Whether the returnValue field is set.
    • getReturnValue

      String getReturnValue()
       The return value, if the algorithm returned something.
       This can be useful in the context of verifiers.
       
      optional string returnValue = 4;
      Returns:
      The returnValue.
    • getReturnValueBytes

      com.google.protobuf.ByteString getReturnValueBytes()
       The return value, if the algorithm returned something.
       This can be useful in the context of verifiers.
       
      optional string returnValue = 4;
      Returns:
      The bytes for returnValue.
    • hasError

      boolean hasError()
       Error message, if any
       
      optional string error = 5;
      Returns:
      Whether the error field is set.
    • getError

      String getError()
       Error message, if any
       
      optional string error = 5;
      Returns:
      The error.
    • getErrorBytes

      com.google.protobuf.ByteString getErrorBytes()
       Error message, if any
       
      optional string error = 5;
      Returns:
      The bytes for error.