Class BaseFormat

java.lang.Object
org.eclipse.jgit.archive.BaseFormat
Direct Known Subclasses:
TarFormat, Tbz2Format, TgzFormat, TxzFormat, ZipFormat

public class BaseFormat extends Object
Base format class
Since:
4.0
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    protected static final String
    Compression-level for the archive file.
  • Constructor Summary

    Constructors
    Constructor
    Description
     
  • Method Summary

    Modifier and Type
    Method
    Description
    protected org.apache.commons.compress.archivers.ArchiveOutputStream<? extends org.apache.commons.compress.archivers.ArchiveEntry>
    applyFormatOptions(org.apache.commons.compress.archivers.ArchiveOutputStream<? extends org.apache.commons.compress.archivers.ArchiveEntry> s, Map<String,Object> o)
    Apply options to archive output stream
    protected int
    Removes and returns the COMPRESSION_LEVEL key from the input map parameter if it exists, or -1 if this key does not exist.

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Field Details

    • COMPRESSION_LEVEL

      protected static final String COMPRESSION_LEVEL
      Compression-level for the archive file. Only values in [0-9] are allowed.
      Since:
      5.11
      See Also:
  • Constructor Details

    • BaseFormat

      public BaseFormat()
  • Method Details

    • applyFormatOptions

      protected org.apache.commons.compress.archivers.ArchiveOutputStream<? extends org.apache.commons.compress.archivers.ArchiveEntry> applyFormatOptions(org.apache.commons.compress.archivers.ArchiveOutputStream<? extends org.apache.commons.compress.archivers.ArchiveEntry> s, Map<String,Object> o) throws IOException
      Apply options to archive output stream
      Parameters:
      s - stream to apply options to
      o - options map
      Returns:
      stream with option applied
      Throws:
      IOException - if an IO error occurred
    • getCompressionLevel

      protected int getCompressionLevel(Map<String,Object> o)
      Removes and returns the COMPRESSION_LEVEL key from the input map parameter if it exists, or -1 if this key does not exist.
      Parameters:
      o - options map
      Returns:
      The compression level if it exists in the map, or -1 instead.
      Throws:
      IllegalArgumentException - if the COMPRESSION_LEVEL option does not parse to an Integer.
      Since:
      5.11