Package org.yamcs.protobuf
Interface Archive.ExportParameterValuesRequestOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
Archive.ExportParameterValuesRequest,Archive.ExportParameterValuesRequest.Builder
- Enclosing class:
- Archive
public static interface Archive.ExportParameterValuesRequestOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetExtra(int index)Extra columns added to the CSV output: * ``raw``: Raw parameter values * ``monitoring``: Monitoring statuscom.google.protobuf.ByteStringgetExtraBytes(int index)Extra columns added to the CSV output: * ``raw``: Raw parameter values * ``monitoring``: Monitoring statusintgetExtraCount()Extra columns added to the CSV output: * ``raw``: Raw parameter values * ``monitoring``: Monitoring statusList<String>getExtraList()Extra columns added to the CSV output: * ``raw``: Raw parameter values * ``monitoring``: Monitoring statusStringgetInstance()Yamcs instance name.com.google.protobuf.ByteStringgetInstanceBytes()Yamcs instance name.StringgetNamespace()Namespace used to display parameter names in csv header.com.google.protobuf.ByteStringgetNamespaceBytes()Namespace used to display parameter names in csv header.StringgetParameters(int index)The parameters to add to the export.com.google.protobuf.ByteStringgetParametersBytes(int index)The parameters to add to the export.intgetParametersCount()The parameters to add to the export.List<String>getParametersList()The parameters to add to the export.com.google.protobuf.TimestampgetStart()Filter the lower bound of the parameter's generation time.com.google.protobuf.TimestampOrBuildergetStartOrBuilder()Filter the lower bound of the parameter's generation time.com.google.protobuf.TimestampgetStop()Filter the upper bound of the parameter's generation time.com.google.protobuf.TimestampOrBuildergetStopOrBuilder()Filter the upper bound of the parameter's generation time.booleanhasInstance()Yamcs instance name.booleanhasNamespace()Namespace used to display parameter names in csv header.booleanhasStart()Filter the lower bound of the parameter's generation time.booleanhasStop()Filter the upper bound of the parameter's generation time.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
hasInstance
boolean hasInstance()
Yamcs instance name.
optional string instance = 1;
-
getInstance
String getInstance()
Yamcs instance name.
optional string instance = 1;
-
getInstanceBytes
com.google.protobuf.ByteString getInstanceBytes()
Yamcs instance name.
optional string instance = 1;
-
hasStart
boolean hasStart()
Filter the lower bound of the parameter's generation time. Specify a date string in ISO 8601 format.
optional .google.protobuf.Timestamp start = 2;
-
getStart
com.google.protobuf.Timestamp getStart()
Filter the lower bound of the parameter's generation time. Specify a date string in ISO 8601 format.
optional .google.protobuf.Timestamp start = 2;
-
getStartOrBuilder
com.google.protobuf.TimestampOrBuilder getStartOrBuilder()
Filter the lower bound of the parameter's generation time. Specify a date string in ISO 8601 format.
optional .google.protobuf.Timestamp start = 2;
-
hasStop
boolean hasStop()
Filter the upper bound of the parameter's generation time. Specify a date string in ISO 8601 format.
optional .google.protobuf.Timestamp stop = 3;
-
getStop
com.google.protobuf.Timestamp getStop()
Filter the upper bound of the parameter's generation time. Specify a date string in ISO 8601 format.
optional .google.protobuf.Timestamp stop = 3;
-
getStopOrBuilder
com.google.protobuf.TimestampOrBuilder getStopOrBuilder()
Filter the upper bound of the parameter's generation time. Specify a date string in ISO 8601 format.
optional .google.protobuf.Timestamp stop = 3;
-
getParametersList
List<String> getParametersList()
The parameters to add to the export.
repeated string parameters = 4;
-
getParametersCount
int getParametersCount()
The parameters to add to the export.
repeated string parameters = 4;
-
getParameters
String getParameters(int index)
The parameters to add to the export.
repeated string parameters = 4;
-
getParametersBytes
com.google.protobuf.ByteString getParametersBytes(int index)
The parameters to add to the export.
repeated string parameters = 4;
-
hasNamespace
boolean hasNamespace()
Namespace used to display parameter names in csv header. Only used when no parameter ids were specified.
optional string namespace = 5;
-
getNamespace
String getNamespace()
Namespace used to display parameter names in csv header. Only used when no parameter ids were specified.
optional string namespace = 5;
-
getNamespaceBytes
com.google.protobuf.ByteString getNamespaceBytes()
Namespace used to display parameter names in csv header. Only used when no parameter ids were specified.
optional string namespace = 5;
-
getExtraList
List<String> getExtraList()
Extra columns added to the CSV output: * ``raw``: Raw parameter values * ``monitoring``: Monitoring status
repeated string extra = 6;
-
getExtraCount
int getExtraCount()
Extra columns added to the CSV output: * ``raw``: Raw parameter values * ``monitoring``: Monitoring status
repeated string extra = 6;
-
getExtra
String getExtra(int index)
Extra columns added to the CSV output: * ``raw``: Raw parameter values * ``monitoring``: Monitoring status
repeated string extra = 6;
-
getExtraBytes
com.google.protobuf.ByteString getExtraBytes(int index)
Extra columns added to the CSV output: * ``raw``: Raw parameter values * ``monitoring``: Monitoring status
repeated string extra = 6;
-
-