Package org.apache.xmlgraphics.util.io
Interface ASCII85Constants
- All Known Implementing Classes:
ASCII85InputStream
,ASCII85OutputStream
public interface ASCII85Constants
This interface defines constants used by the ASCII85 filters.
- Version:
- $Id$
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final int
The end index for ASCII85 characters (u)static final byte[]
The EOD (end of data) indicatorstatic final int
The EOL indicator (LF)static final long[]
Array of powers of 85 (4, 3, 2, 1, 0)static final int
The start index for ASCII85 characters (!)static final int
Special character "z" stands for four NULL bytes (short-cut for !!!!!)static final byte[]
ZERO as a byte array
-
Field Details
-
ZERO
static final int ZEROSpecial character "z" stands for four NULL bytes (short-cut for !!!!!)- See Also:
-
ZERO_ARRAY
static final byte[] ZERO_ARRAYZERO as a byte array -
START
static final int STARTThe start index for ASCII85 characters (!)- See Also:
-
END
static final int ENDThe end index for ASCII85 characters (u)- See Also:
-
EOL
static final int EOLThe EOL indicator (LF)- See Also:
-
EOD
static final byte[] EODThe EOD (end of data) indicator -
POW85
static final long[] POW85Array of powers of 85 (4, 3, 2, 1, 0)
-