Interface Fileformat.BlobOrBuilder

  • All Superinterfaces:
    com.google.protobuf.MessageLiteOrBuilder, com.google.protobuf.MessageOrBuilder
    All Known Implementing Classes:
    Fileformat.Blob, Fileformat.Blob.Builder
    Enclosing class:
    Fileformat

    public static interface Fileformat.BlobOrBuilder
    extends com.google.protobuf.MessageOrBuilder
    • Method Summary

      All Methods Instance Methods Abstract Methods Deprecated Methods 
      Modifier and Type Method Description
      com.google.protobuf.ByteString getLzmaData()
      PROPOSED feature for LZMA compressed data.
      com.google.protobuf.ByteString getOBSOLETEBzip2Data()
      Deprecated.
      com.google.protobuf.ByteString getRaw()
      No compression
      int getRawSize()
      When compressed, the uncompressed size
      com.google.protobuf.ByteString getZlibData()
      Possible compressed versions of the data.
      boolean hasLzmaData()
      PROPOSED feature for LZMA compressed data.
      boolean hasOBSOLETEBzip2Data()
      Deprecated.
      boolean hasRaw()
      No compression
      boolean hasRawSize()
      When compressed, the uncompressed size
      boolean hasZlibData()
      Possible compressed versions of the data.
      • 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

      • hasRaw

        boolean hasRaw()
         No compression
         
        optional bytes raw = 1;
      • getRaw

        com.google.protobuf.ByteString getRaw()
         No compression
         
        optional bytes raw = 1;
      • hasRawSize

        boolean hasRawSize()
         When compressed, the uncompressed size
         
        optional int32 raw_size = 2;
      • getRawSize

        int getRawSize()
         When compressed, the uncompressed size
         
        optional int32 raw_size = 2;
      • hasZlibData

        boolean hasZlibData()
         Possible compressed versions of the data.
         
        optional bytes zlib_data = 3;
      • getZlibData

        com.google.protobuf.ByteString getZlibData()
         Possible compressed versions of the data.
         
        optional bytes zlib_data = 3;
      • hasLzmaData

        boolean hasLzmaData()
         PROPOSED feature for LZMA compressed data. SUPPORT IS NOT REQUIRED.
         
        optional bytes lzma_data = 4;
      • getLzmaData

        com.google.protobuf.ByteString getLzmaData()
         PROPOSED feature for LZMA compressed data. SUPPORT IS NOT REQUIRED.
         
        optional bytes lzma_data = 4;
      • hasOBSOLETEBzip2Data

        @Deprecated
        boolean hasOBSOLETEBzip2Data()
        Deprecated.
         Formerly used for bzip2 compressed data. Depreciated in 2010.
         
        optional bytes OBSOLETE_bzip2_data = 5 [deprecated = true];
      • getOBSOLETEBzip2Data

        @Deprecated
        com.google.protobuf.ByteString getOBSOLETEBzip2Data()
        Deprecated.
         Formerly used for bzip2 compressed data. Depreciated in 2010.
         
        optional bytes OBSOLETE_bzip2_data = 5 [deprecated = true];