All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.zving.preloader.zip.ZipEncoding Maven / Gradle / Ivy

package com.zving.preloader.zip;

import java.io.IOException;
import java.nio.ByteBuffer;

abstract interface ZipEncoding
{
  public abstract boolean canEncode(String paramString);
  
  public abstract ByteBuffer encode(String paramString)
    throws IOException;
  
  public abstract String decode(byte[] paramArrayOfByte)
    throws IOException;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy