java.lang.Object
org.apache.commons.compress.java.util.jar.Pack200

public abstract class Pack200 extends Object
Class factory for Pack200.Packer and Pack200.Unpacker.
  • Method Details

    • newPacker

      public static Pack200.Packer newPacker()
      Returns a new instance of a packer engine.

      The implementation of the packer engine is defined by the system property 'java.util.jar.Pack200.Packer'. If this system property is defined an instance of the specified class is returned, otherwise the system's default implementation is returned.

      Returns:
      an instance of Packer
    • newUnpacker

      public static Pack200.Unpacker newUnpacker()
      Returns a new instance of an unpacker engine.

      The implementation of the unpacker engine is defined by the system property Pack200.Unpacker. If this system property is defined an instance of the specified class is returned, otherwise the system's default implementation is returned.

      Returns:
      an instance of Pack200.Unpacker.