Interface GzipOrBuilder

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

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

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      com.google.protobuf.UInt32Value getChunkSize()
      Value for zlib's decompressor output buffer.
      com.google.protobuf.UInt32ValueOrBuilder getChunkSizeOrBuilder()
      Value for zlib's decompressor output buffer.
      com.google.protobuf.UInt32Value getWindowBits()
      Value from 9 to 15 that represents the base two logarithmic of the decompressor's window size.
      com.google.protobuf.UInt32ValueOrBuilder getWindowBitsOrBuilder()
      Value from 9 to 15 that represents the base two logarithmic of the decompressor's window size.
      boolean hasChunkSize()
      Value for zlib's decompressor output buffer.
      boolean hasWindowBits()
      Value from 9 to 15 that represents the base two logarithmic of the decompressor's window size.
      • 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

      • hasWindowBits

        boolean hasWindowBits()
         Value from 9 to 15 that represents the base two logarithmic of the decompressor's window size.
         The decompression window size needs to be equal or larger than the compression window size.
         The default window size is 15.
         This is so that the decompressor can decompress a response compressed by a compressor with any compression window size.
         For more details about this parameter, please refer to `zlib manual <https://www.zlib.net/manual.html>`_ > inflateInit2.
         
        .google.protobuf.UInt32Value window_bits = 1 [(.validate.rules) = { ... }
        Returns:
        Whether the windowBits field is set.
      • getWindowBits

        com.google.protobuf.UInt32Value getWindowBits()
         Value from 9 to 15 that represents the base two logarithmic of the decompressor's window size.
         The decompression window size needs to be equal or larger than the compression window size.
         The default window size is 15.
         This is so that the decompressor can decompress a response compressed by a compressor with any compression window size.
         For more details about this parameter, please refer to `zlib manual <https://www.zlib.net/manual.html>`_ > inflateInit2.
         
        .google.protobuf.UInt32Value window_bits = 1 [(.validate.rules) = { ... }
        Returns:
        The windowBits.
      • getWindowBitsOrBuilder

        com.google.protobuf.UInt32ValueOrBuilder getWindowBitsOrBuilder()
         Value from 9 to 15 that represents the base two logarithmic of the decompressor's window size.
         The decompression window size needs to be equal or larger than the compression window size.
         The default window size is 15.
         This is so that the decompressor can decompress a response compressed by a compressor with any compression window size.
         For more details about this parameter, please refer to `zlib manual <https://www.zlib.net/manual.html>`_ > inflateInit2.
         
        .google.protobuf.UInt32Value window_bits = 1 [(.validate.rules) = { ... }
      • hasChunkSize

        boolean hasChunkSize()
         Value for zlib's decompressor output buffer. If not set, defaults to 4096.
         See https://www.zlib.net/manual.html for more details.
         
        .google.protobuf.UInt32Value chunk_size = 2 [(.validate.rules) = { ... }
        Returns:
        Whether the chunkSize field is set.
      • getChunkSize

        com.google.protobuf.UInt32Value getChunkSize()
         Value for zlib's decompressor output buffer. If not set, defaults to 4096.
         See https://www.zlib.net/manual.html for more details.
         
        .google.protobuf.UInt32Value chunk_size = 2 [(.validate.rules) = { ... }
        Returns:
        The chunkSize.
      • getChunkSizeOrBuilder

        com.google.protobuf.UInt32ValueOrBuilder getChunkSizeOrBuilder()
         Value for zlib's decompressor output buffer. If not set, defaults to 4096.
         See https://www.zlib.net/manual.html for more details.
         
        .google.protobuf.UInt32Value chunk_size = 2 [(.validate.rules) = { ... }