Package com.google.dataflow.v1beta3
Interface StructuredMessage.ParameterOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
StructuredMessage.Parameter
,StructuredMessage.Parameter.Builder
- Enclosing class:
- StructuredMessage
public static interface StructuredMessage.ParameterOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getKey()
Key or name for this parameter.com.google.protobuf.ByteString
getKeyBytes()
Key or name for this parameter.com.google.protobuf.Value
getValue()
Value for this parameter.com.google.protobuf.ValueOrBuilder
getValueOrBuilder()
Value for this parameter.boolean
hasValue()
Value for this parameter.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getKey
String getKey()
Key or name for this parameter.
string key = 1;
- Returns:
- The key.
-
getKeyBytes
com.google.protobuf.ByteString getKeyBytes()
Key or name for this parameter.
string key = 1;
- Returns:
- The bytes for key.
-
hasValue
boolean hasValue()
Value for this parameter.
.google.protobuf.Value value = 2;
- Returns:
- Whether the value field is set.
-
getValue
com.google.protobuf.Value getValue()
Value for this parameter.
.google.protobuf.Value value = 2;
- Returns:
- The value.
-
getValueOrBuilder
com.google.protobuf.ValueOrBuilder getValueOrBuilder()
Value for this parameter.
.google.protobuf.Value value = 2;
-
-