Package com.google.privacy.dlp.v2
Interface StatisticalTable.QuasiIdentifierFieldOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
StatisticalTable.QuasiIdentifierField
,StatisticalTable.QuasiIdentifierField.Builder
- Enclosing class:
- StatisticalTable
public static interface StatisticalTable.QuasiIdentifierFieldOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getCustomTag()
A column can be tagged with a custom tag.com.google.protobuf.ByteString
getCustomTagBytes()
A column can be tagged with a custom tag.FieldId
getField()
Identifies the column.FieldIdOrBuilder
getFieldOrBuilder()
Identifies the column.boolean
hasField()
Identifies the column.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
hasField
boolean hasField()
Identifies the column.
.google.privacy.dlp.v2.FieldId field = 1;
- Returns:
- Whether the field field is set.
-
getField
FieldId getField()
Identifies the column.
.google.privacy.dlp.v2.FieldId field = 1;
- Returns:
- The field.
-
getFieldOrBuilder
FieldIdOrBuilder getFieldOrBuilder()
Identifies the column.
.google.privacy.dlp.v2.FieldId field = 1;
-
getCustomTag
String getCustomTag()
A column can be tagged with a custom tag. In this case, the user must indicate an auxiliary table that contains statistical information on the possible values of this column (below).
string custom_tag = 2;
- Returns:
- The customTag.
-
getCustomTagBytes
com.google.protobuf.ByteString getCustomTagBytes()
A column can be tagged with a custom tag. In this case, the user must indicate an auxiliary table that contains statistical information on the possible values of this column (below).
string custom_tag = 2;
- Returns:
- The bytes for customTag.
-
-