Package com.google.dataflow.v1beta3
Interface StateFamilyConfigOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
StateFamilyConfig
,StateFamilyConfig.Builder
public interface StateFamilyConfigOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description boolean
getIsRead()
If true, this family corresponds to a read operation.String
getStateFamily()
The state family value.com.google.protobuf.ByteString
getStateFamilyBytes()
The state family value.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getStateFamily
String getStateFamily()
The state family value.
string state_family = 1;
- Returns:
- The stateFamily.
-
getStateFamilyBytes
com.google.protobuf.ByteString getStateFamilyBytes()
The state family value.
string state_family = 1;
- Returns:
- The bytes for stateFamily.
-
getIsRead
boolean getIsRead()
If true, this family corresponds to a read operation.
bool is_read = 2;
- Returns:
- The isRead.
-
-