Interface ExternalCalculationMessages.ValueDataOrBuilder
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ExternalCalculationMessages.ValueData
,ExternalCalculationMessages.ValueData.Builder
- Enclosing class:
- ExternalCalculationMessages
public static interface ExternalCalculationMessages.ValueDataOrBuilder
extends com.google.protobuf.MessageOrBuilder
-
Method Summary
Modifier and TypeMethodDescriptionGOOD or BAD.double
Sample value for numeric signals (when valueUOM of signal is NOT 'string')stringValue will be populated when valueUOM of signal is 'string'com.google.protobuf.ByteString
stringValue will be populated when valueUOM of signal is 'string'boolean
GOOD or BAD.boolean
Sample value for numeric signals (when valueUOM of signal is NOT 'string')boolean
stringValue will be populated when valueUOM of signal is 'string'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
-
hasDataStatus
boolean hasDataStatus()GOOD or BAD.
optional .com.seeq.link.messages.connector.extcalc.DataStatus dataStatus = 1;
- Returns:
- Whether the dataStatus field is set.
-
getDataStatus
ExternalCalculationMessages.DataStatus getDataStatus()GOOD or BAD.
optional .com.seeq.link.messages.connector.extcalc.DataStatus dataStatus = 1;
- Returns:
- The dataStatus.
-
hasDoubleValue
boolean hasDoubleValue()Sample value for numeric signals (when valueUOM of signal is NOT 'string')
optional double doubleValue = 2;
- Returns:
- Whether the doubleValue field is set.
-
getDoubleValue
double getDoubleValue()Sample value for numeric signals (when valueUOM of signal is NOT 'string')
optional double doubleValue = 2;
- Returns:
- The doubleValue.
-
hasStringValue
boolean hasStringValue()stringValue will be populated when valueUOM of signal is 'string'
optional string stringValue = 3;
- Returns:
- Whether the stringValue field is set.
-
getStringValue
String getStringValue()stringValue will be populated when valueUOM of signal is 'string'
optional string stringValue = 3;
- Returns:
- The stringValue.
-
getStringValueBytes
com.google.protobuf.ByteString getStringValueBytes()stringValue will be populated when valueUOM of signal is 'string'
optional string stringValue = 3;
- Returns:
- The bytes for stringValue.
-