Package com.google.bigtable.v2
Interface Mutation.DeleteFromColumnOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
Mutation.DeleteFromColumn,Mutation.DeleteFromColumn.Builder
- Enclosing class:
- Mutation
public static interface Mutation.DeleteFromColumnOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description com.google.protobuf.ByteStringgetColumnQualifier()The qualifier of the column from which cells should be deleted.StringgetFamilyName()The name of the family from which cells should be deleted.com.google.protobuf.ByteStringgetFamilyNameBytes()The name of the family from which cells should be deleted.TimestampRangegetTimeRange()The range of timestamps within which cells should be deleted.TimestampRangeOrBuildergetTimeRangeOrBuilder()The range of timestamps within which cells should be deleted.booleanhasTimeRange()The range of timestamps within which cells should be deleted.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getFamilyName
String getFamilyName()
The name of the family from which cells should be deleted. Must match `[-_.a-zA-Z0-9]+`
string family_name = 1;- Returns:
- The familyName.
-
getFamilyNameBytes
com.google.protobuf.ByteString getFamilyNameBytes()
The name of the family from which cells should be deleted. Must match `[-_.a-zA-Z0-9]+`
string family_name = 1;- Returns:
- The bytes for familyName.
-
getColumnQualifier
com.google.protobuf.ByteString getColumnQualifier()
The qualifier of the column from which cells should be deleted. Can be any byte string, including the empty string.
bytes column_qualifier = 2;- Returns:
- The columnQualifier.
-
hasTimeRange
boolean hasTimeRange()
The range of timestamps within which cells should be deleted.
.google.bigtable.v2.TimestampRange time_range = 3;- Returns:
- Whether the timeRange field is set.
-
getTimeRange
TimestampRange getTimeRange()
The range of timestamps within which cells should be deleted.
.google.bigtable.v2.TimestampRange time_range = 3;- Returns:
- The timeRange.
-
getTimeRangeOrBuilder
TimestampRangeOrBuilder getTimeRangeOrBuilder()
The range of timestamps within which cells should be deleted.
.google.bigtable.v2.TimestampRange time_range = 3;
-
-