Package com.google.dataflow.v1beta3
Interface StructuredMessageOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
StructuredMessage
,StructuredMessage.Builder
public interface StructuredMessageOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getMessageKey()
Identifier for this message type.com.google.protobuf.ByteString
getMessageKeyBytes()
Identifier for this message type.String
getMessageText()
Human-readable version of message.com.google.protobuf.ByteString
getMessageTextBytes()
Human-readable version of message.StructuredMessage.Parameter
getParameters(int index)
The structured data associated with this message.int
getParametersCount()
The structured data associated with this message.List<StructuredMessage.Parameter>
getParametersList()
The structured data associated with this message.StructuredMessage.ParameterOrBuilder
getParametersOrBuilder(int index)
The structured data associated with this message.List<? extends StructuredMessage.ParameterOrBuilder>
getParametersOrBuilderList()
The structured data associated with this message.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getMessageText
String getMessageText()
Human-readable version of message.
string message_text = 1;
- Returns:
- The messageText.
-
getMessageTextBytes
com.google.protobuf.ByteString getMessageTextBytes()
Human-readable version of message.
string message_text = 1;
- Returns:
- The bytes for messageText.
-
getMessageKey
String getMessageKey()
Identifier for this message type. Used by external systems to internationalize or personalize message.
string message_key = 2;
- Returns:
- The messageKey.
-
getMessageKeyBytes
com.google.protobuf.ByteString getMessageKeyBytes()
Identifier for this message type. Used by external systems to internationalize or personalize message.
string message_key = 2;
- Returns:
- The bytes for messageKey.
-
getParametersList
List<StructuredMessage.Parameter> getParametersList()
The structured data associated with this message.
repeated .google.dataflow.v1beta3.StructuredMessage.Parameter parameters = 3;
-
getParameters
StructuredMessage.Parameter getParameters(int index)
The structured data associated with this message.
repeated .google.dataflow.v1beta3.StructuredMessage.Parameter parameters = 3;
-
getParametersCount
int getParametersCount()
The structured data associated with this message.
repeated .google.dataflow.v1beta3.StructuredMessage.Parameter parameters = 3;
-
getParametersOrBuilderList
List<? extends StructuredMessage.ParameterOrBuilder> getParametersOrBuilderList()
The structured data associated with this message.
repeated .google.dataflow.v1beta3.StructuredMessage.Parameter parameters = 3;
-
getParametersOrBuilder
StructuredMessage.ParameterOrBuilder getParametersOrBuilder(int index)
The structured data associated with this message.
repeated .google.dataflow.v1beta3.StructuredMessage.Parameter parameters = 3;
-
-