Package org.apache.fop.afp.fonts
Class CharactersetEncoder.EncodedChars
- java.lang.Object
-
- org.apache.fop.afp.fonts.CharactersetEncoder.EncodedChars
-
- Enclosing class:
- CharactersetEncoder
public static class CharactersetEncoder.EncodedChars extends java.lang.ObjectA container for encoded character bytes
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description byte[]getBytes()The bytesintgetLength()The number of containing bytes.booleanisDBCS()Indicates whether or not the EncodedChars object wraps double byte characters.voidwriteTo(java.io.OutputStream out, int offset, int length)writelengthbytes fromoffsetto the output stream
-
-
-
Method Detail
-
writeTo
public void writeTo(java.io.OutputStream out, int offset, int length) throws java.io.IOExceptionwritelengthbytes fromoffsetto the output stream- Parameters:
out- output to write the bytes tooffset- the offset where to writelength- the length to write- Throws:
java.io.IOException- if an I/O error occurs
-
getLength
public int getLength()
The number of containing bytes.- Returns:
- the length
-
isDBCS
public boolean isDBCS()
Indicates whether or not the EncodedChars object wraps double byte characters.- Returns:
- true if the wrapped characters are double byte (DBCSs)
-
getBytes
public byte[] getBytes()
The bytes- Returns:
- the bytes
-
-