org.apache.geronimo.util.encoders
Interface Encoder

All Known Implementing Classes:
Base64Encoder, HexEncoder

public interface Encoder

Encode and decode byte arrays (typically from binary to 7-bit ASCII encodings).


Method Summary
 int decode(byte[] data, int off, int length, OutputStream out)
           
 int decode(String data, OutputStream out)
           
 int encode(byte[] data, int off, int length, OutputStream out)
           
 

Method Detail

encode

public int encode(byte[] data,
                  int off,
                  int length,
                  OutputStream out)
           throws IOException
Throws:
IOException

decode

public int decode(byte[] data,
                  int off,
                  int length,
                  OutputStream out)
           throws IOException
Throws:
IOException

decode

public int decode(String data,
                  OutputStream out)
           throws IOException
Throws:
IOException


Copyright © 2003-2007 Apache Software Foundation. All Rights Reserved.