Package org.yamcs.protobuf
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 Summary
Modifier and TypeMethodDescriptiongetError()
Error message, if anycom.google.protobuf.ByteString
Error message, if anygetInputs
(int index) Values of input parameters for this runint
Values of input parameters for this runValues of input parameters for this rungetInputsOrBuilder
(int index) Values of input parameters for this runList<? extends Pvalue.ParameterValueOrBuilder>
Values of input parameters for this rungetOutputs
(int index) Values of output parameters for this runint
Values of output parameters for this runValues of output parameters for this rungetOutputsOrBuilder
(int index) Values of output parameters for this runList<? extends Pvalue.ParameterValueOrBuilder>
Values of output parameters for this runThe return value, if the algorithm returned something.com.google.protobuf.ByteString
The return value, if the algorithm returned something.com.google.protobuf.Timestamp
getTime()
When this run was startedcom.google.protobuf.TimestampOrBuilder
When this run was startedboolean
hasError()
Error message, if anyboolean
The return value, if the algorithm returned something.boolean
hasTime()
When this run was startedMethods inherited from interface com.google.protobuf.MessageLiteOrBuilder
isInitialized
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
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
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
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
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
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.
-