Uses of Interface
org.apache.batik.util.io.CharDecoder
-
Packages that use CharDecoder Package Description org.apache.batik.util.io -
-
Uses of CharDecoder in org.apache.batik.util.io
Classes in org.apache.batik.util.io that implement CharDecoder Modifier and Type Class Description class
AbstractCharDecoder
This class is the superclass of all the char decoders.class
ASCIIDecoder
This class represents an object which decodes ASCII characters from a stream of bytes.class
GenericDecoder
This class delegates to a reader the decoding of an input stream.class
ISO_8859_1Decoder
This class represents an object which decodes ISO-8859-1 characters from a stream of bytes.class
StringDecoder
This class reads a string.class
UTF16Decoder
This class represents an object which decodes UTF-16 characters from a stream of bytes.class
UTF8Decoder
This class represents an object which decodes UTF-8 characters from a stream of bytes.Fields in org.apache.batik.util.io declared as CharDecoder Modifier and Type Field Description protected CharDecoder
StreamNormalizingReader. charDecoder
The char decoder.Methods in org.apache.batik.util.io that return CharDecoder Modifier and Type Method Description CharDecoder
StreamNormalizingReader.ASCIIDecoderFactory. createCharDecoder(java.io.InputStream is)
CharDecoder
StreamNormalizingReader.CharDecoderFactory. createCharDecoder(java.io.InputStream is)
protected CharDecoder
StreamNormalizingReader. createCharDecoder(java.io.InputStream is, java.lang.String enc)
Creates the CharDecoder mapped with the given encoding name.CharDecoder
StreamNormalizingReader.ISO_8859_1DecoderFactory. createCharDecoder(java.io.InputStream is)
CharDecoder
StreamNormalizingReader.UTF16DecoderFactory. createCharDecoder(java.io.InputStream is)
CharDecoder
StreamNormalizingReader.UTF8DecoderFactory. createCharDecoder(java.io.InputStream is)
-