Package com.google.cloud.dataplex.v1
Interface ScannedData.IncrementalFieldOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ScannedData.IncrementalField,ScannedData.IncrementalField.Builder
- Enclosing class:
- ScannedData
public static interface ScannedData.IncrementalFieldOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetEnd()Value that marks the end of the range.com.google.protobuf.ByteStringgetEndBytes()Value that marks the end of the range.StringgetField()The field that contains values which monotonically increases over time (e.g.com.google.protobuf.ByteStringgetFieldBytes()The field that contains values which monotonically increases over time (e.g.StringgetStart()Value that marks the start of the range.com.google.protobuf.ByteStringgetStartBytes()Value that marks the start of the range.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getField
String getField()
The field that contains values which monotonically increases over time (e.g. a timestamp column).
string field = 1;- Returns:
- The field.
-
getFieldBytes
com.google.protobuf.ByteString getFieldBytes()
The field that contains values which monotonically increases over time (e.g. a timestamp column).
string field = 1;- Returns:
- The bytes for field.
-
getStart
String getStart()
Value that marks the start of the range.
string start = 2;- Returns:
- The start.
-
getStartBytes
com.google.protobuf.ByteString getStartBytes()
Value that marks the start of the range.
string start = 2;- Returns:
- The bytes for start.
-
getEnd
String getEnd()
Value that marks the end of the range.
string end = 3;- Returns:
- The end.
-
getEndBytes
com.google.protobuf.ByteString getEndBytes()
Value that marks the end of the range.
string end = 3;- Returns:
- The bytes for end.
-
-