Interface ByteContentItemOrBuilder

  • All Superinterfaces:
    com.google.protobuf.MessageLiteOrBuilder, com.google.protobuf.MessageOrBuilder
    All Known Implementing Classes:
    ByteContentItem, ByteContentItem.Builder

    public interface ByteContentItemOrBuilder
    extends com.google.protobuf.MessageOrBuilder
    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      com.google.protobuf.ByteString getData()
      Content data to inspect or redact.
      ByteContentItem.BytesType getType()
      The type of data stored in the bytes string.
      int getTypeValue()
      The type of data stored in the bytes string.
      • Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder

        isInitialized
      • Methods inherited from interface com.google.protobuf.MessageOrBuilder

        findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
    • Method Detail

      • getTypeValue

        int getTypeValue()
         The type of data stored in the bytes string. Default will be TEXT_UTF8.
         
        .google.privacy.dlp.v2.ByteContentItem.BytesType type = 1;
        Returns:
        The enum numeric value on the wire for type.
      • getType

        ByteContentItem.BytesType getType()
         The type of data stored in the bytes string. Default will be TEXT_UTF8.
         
        .google.privacy.dlp.v2.ByteContentItem.BytesType type = 1;
        Returns:
        The type.
      • getData

        com.google.protobuf.ByteString getData()
         Content data to inspect or redact.
         
        bytes data = 2;
        Returns:
        The data.