Uses of Interface
com.twelvemonkeys.io.enc.Decoder
Packages that use Decoder
Package
Description
Contains customized stream classes, that can read or write compressed data on the fly,
along with encoders and decoders for popular stream formats, such as Base64, ZIP (deflate), LZW, PackBits etc..
-
Uses of Decoder in com.twelvemonkeys.io.enc
Classes in com.twelvemonkeys.io.enc that implement DecoderModifier and TypeClassDescriptionfinal class
Decoder
implementation for standard base64 encoding.final class
Decoder implementation for Apple PackBits run-length encoding.Constructors in com.twelvemonkeys.io.enc with parameters of type DecoderModifierConstructorDescriptionDecoderStream
(InputStream stream, Decoder decoder) Creates a new decoder stream and chains it to the input stream specified by thestream
argument.DecoderStream
(InputStream stream, Decoder decoder, int bufferSize) Creates a new decoder stream and chains it to the input stream specified by thestream
argument.