Package org.apache.xmlgraphics.util.io
Interface ASCII85Constants
-
- All Known Implementing Classes:
ASCII85InputStream,ASCII85OutputStream
public interface ASCII85ConstantsThis interface defines constants used by the ASCII85 filters.- Version:
- $Id: ASCII85Constants.java 1732018 2016-02-24 04:51:06Z gadams $
-
-
Field Summary
Fields Modifier and Type Field Description static intENDThe end index for ASCII85 characters (u)static byte[]EODThe EOD (end of data) indicatorstatic intEOLThe EOL indicator (LF)static long[]POW85Array of powers of 85 (4, 3, 2, 1, 0)static intSTARTThe start index for ASCII85 characters (!)static intZEROSpecial character "z" stands for four NULL bytes (short-cut for !!!!!)static byte[]ZERO_ARRAYZERO as a byte array
-
-
-
Field Detail
-
ZERO
static final int ZERO
Special character "z" stands for four NULL bytes (short-cut for !!!!!)- See Also:
- Constant Field Values
-
ZERO_ARRAY
static final byte[] ZERO_ARRAY
ZERO as a byte array
-
START
static final int START
The start index for ASCII85 characters (!)- See Also:
- Constant Field Values
-
END
static final int END
The end index for ASCII85 characters (u)- See Also:
- Constant Field Values
-
EOL
static final int EOL
The EOL indicator (LF)- See Also:
- Constant Field Values
-
EOD
static final byte[] EOD
The EOD (end of data) indicator
-
POW85
static final long[] POW85
Array of powers of 85 (4, 3, 2, 1, 0)
-
-