Interface ControlMessage.NotificationMessageOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ControlMessage.NotificationMessage
,ControlMessage.NotificationMessage.Builder
- Enclosing class:
- ControlMessage
public static interface ControlMessage.NotificationMessageOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.String
getData()
required string data = 2;
com.google.protobuf.ByteString
getDataBytes()
required string data = 2;
ControlMessage.OptimizationType
getOptimizationType()
required .protobuf.OptimizationType optimizationType = 1;
boolean
hasData()
required string data = 2;
boolean
hasOptimizationType()
required .protobuf.OptimizationType optimizationType = 1;
-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
hasOptimizationType
boolean hasOptimizationType()
required .protobuf.OptimizationType optimizationType = 1;
- Returns:
- Whether the optimizationType field is set.
-
getOptimizationType
ControlMessage.OptimizationType getOptimizationType()
required .protobuf.OptimizationType optimizationType = 1;
- Returns:
- The optimizationType.
-
hasData
boolean hasData()
required string data = 2;
- Returns:
- Whether the data field is set.
-
getData
java.lang.String getData()
required string data = 2;
- Returns:
- The data.
-
getDataBytes
com.google.protobuf.ByteString getDataBytes()
required string data = 2;
- Returns:
- The bytes for data.
-
-