Package com.google.privacy.dlp.v2
Interface TransformationSummary.SummaryResultOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
TransformationSummary.SummaryResult,TransformationSummary.SummaryResult.Builder
- Enclosing class:
- TransformationSummary
public static interface TransformationSummary.SummaryResultOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description TransformationSummary.TransformationResultCodegetCode()Outcome of the transformation.intgetCodeValue()Outcome of the transformation.longgetCount()Number of transformations counted by this result.StringgetDetails()A place for warnings or errors to show up if a transformation didn't work as expected.com.google.protobuf.ByteStringgetDetailsBytes()A place for warnings or errors to show up if a transformation didn't work as expected.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getCount
long getCount()
Number of transformations counted by this result.
int64 count = 1;- Returns:
- The count.
-
getCodeValue
int getCodeValue()
Outcome of the transformation.
.google.privacy.dlp.v2.TransformationSummary.TransformationResultCode code = 2;- Returns:
- The enum numeric value on the wire for code.
-
getCode
TransformationSummary.TransformationResultCode getCode()
Outcome of the transformation.
.google.privacy.dlp.v2.TransformationSummary.TransformationResultCode code = 2;- Returns:
- The code.
-
getDetails
String getDetails()
A place for warnings or errors to show up if a transformation didn't work as expected.
string details = 3;- Returns:
- The details.
-
getDetailsBytes
com.google.protobuf.ByteString getDetailsBytes()
A place for warnings or errors to show up if a transformation didn't work as expected.
string details = 3;- Returns:
- The bytes for details.
-
-