Package org.yamcs.protobuf
Interface Pvalue.TimeSeries.SampleOrBuilder
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
Pvalue.TimeSeries.Sample
,Pvalue.TimeSeries.Sample.Builder
- Enclosing class:
- Pvalue.TimeSeries
public static interface Pvalue.TimeSeries.SampleOrBuilder
extends com.google.protobuf.MessageOrBuilder
-
Method Summary
Modifier and TypeMethodDescriptiondouble
getAvg()
Average numeric value during the sample interval.double
getMax()
Maximum numeric value during the sample interval.com.google.protobuf.Timestamp
Generation time of the ``max`` value.com.google.protobuf.TimestampOrBuilder
Generation time of the ``max`` value.double
getMin()
Minimum numeric value during the sample interval.com.google.protobuf.Timestamp
Generation time of the ``min`` value.com.google.protobuf.TimestampOrBuilder
Generation time of the ``min`` value.int
getN()
Number of samples during the sample interval.com.google.protobuf.Timestamp
getTime()
Start time of the sample interval.com.google.protobuf.TimestampOrBuilder
Start time of the sample interval.boolean
hasAvg()
Average numeric value during the sample interval.boolean
hasMax()
Maximum numeric value during the sample interval.boolean
Generation time of the ``max`` value.boolean
hasMin()
Minimum numeric value during the sample interval.boolean
Generation time of the ``min`` value.boolean
hasN()
Number of samples during the sample interval.boolean
hasTime()
Start time of the sample interval.Methods 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()Start time of the sample interval.
optional .google.protobuf.Timestamp time = 6;
- Returns:
- Whether the time field is set.
-
getTime
com.google.protobuf.Timestamp getTime()Start time of the sample interval.
optional .google.protobuf.Timestamp time = 6;
- Returns:
- The time.
-
getTimeOrBuilder
com.google.protobuf.TimestampOrBuilder getTimeOrBuilder()Start time of the sample interval.
optional .google.protobuf.Timestamp time = 6;
-
hasAvg
boolean hasAvg()Average numeric value during the sample interval.
optional double avg = 2;
- Returns:
- Whether the avg field is set.
-
getAvg
double getAvg()Average numeric value during the sample interval.
optional double avg = 2;
- Returns:
- The avg.
-
hasMin
boolean hasMin()Minimum numeric value during the sample interval.
optional double min = 3;
- Returns:
- Whether the min field is set.
-
getMin
double getMin()Minimum numeric value during the sample interval.
optional double min = 3;
- Returns:
- The min.
-
hasMax
boolean hasMax()Maximum numeric value during the sample interval.
optional double max = 4;
- Returns:
- Whether the max field is set.
-
getMax
double getMax()Maximum numeric value during the sample interval.
optional double max = 4;
- Returns:
- The max.
-
hasN
boolean hasN()Number of samples during the sample interval. If this value is zero, it indicates a gap.
optional int32 n = 5;
- Returns:
- Whether the n field is set.
-
getN
int getN()Number of samples during the sample interval. If this value is zero, it indicates a gap.
optional int32 n = 5;
- Returns:
- The n.
-
hasMinTime
boolean hasMinTime()Generation time of the ``min`` value.
optional .google.protobuf.Timestamp minTime = 7;
- Returns:
- Whether the minTime field is set.
-
getMinTime
com.google.protobuf.Timestamp getMinTime()Generation time of the ``min`` value.
optional .google.protobuf.Timestamp minTime = 7;
- Returns:
- The minTime.
-
getMinTimeOrBuilder
com.google.protobuf.TimestampOrBuilder getMinTimeOrBuilder()Generation time of the ``min`` value.
optional .google.protobuf.Timestamp minTime = 7;
-
hasMaxTime
boolean hasMaxTime()Generation time of the ``max`` value.
optional .google.protobuf.Timestamp maxTime = 8;
- Returns:
- Whether the maxTime field is set.
-
getMaxTime
com.google.protobuf.Timestamp getMaxTime()Generation time of the ``max`` value.
optional .google.protobuf.Timestamp maxTime = 8;
- Returns:
- The maxTime.
-
getMaxTimeOrBuilder
com.google.protobuf.TimestampOrBuilder getMaxTimeOrBuilder()Generation time of the ``max`` value.
optional .google.protobuf.Timestamp maxTime = 8;
-