Class CompressionNone

java.lang.Object
net.sourceforge.plantuml.code.CompressionNone
All Implemented Interfaces:
Compression

public class CompressionNone extends Object implements Compression
  • Constructor Details

    • CompressionNone

      public CompressionNone()
  • Method Details

    • compress

      public byte[] compress(byte[] in)
      Description copied from interface: Compression
      Shrinks the given in array with length len
      Specified by:
      compress in interface Compression
      Returns:
      a newly created array with the compressed data.
    • decompress

      public ByteArray decompress(byte[] in)
      Description copied from interface: Compression
      Grows the given in array with length len compressed with the shrink method.
      Specified by:
      decompress in interface Compression
      Returns:
      a newly created array with the expanded data.