de.dante.extex.interpreter.primitives.omega.mode
Class OmegaMode

java.lang.Object
  extended byde.dante.extex.interpreter.primitives.omega.mode.OmegaMode
All Implemented Interfaces:
java.io.Serializable

public class OmegaMode
extends java.lang.Object
implements java.io.Serializable

This class contains th definitions of input modes in Omega. The definitions are provides as constants defined in this class.

Version:
$Revision: 1.4 $
Author:
Gerd Neugebauer
See Also:
Serialized Form

Field Summary
static OmegaMode EBCDIC
          The constant EBCDIC contains the mode for a single byte stream.
static OmegaMode ONEBYTE
          The constant ONEBYTE contains the mode for a single byte stream.
protected static long serialVersionUID
          The field serialVersionUID contains the id for serialization.
static OmegaMode TWOBYTE
          The constant TWOBYTE contains the mode for a double byte stream.
static OmegaMode TWOBYTE_LE
          The constant TWOBYTE_LE contains the mode for a double byte stream.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

serialVersionUID

protected static final long serialVersionUID
The field serialVersionUID contains the id for serialization.

See Also:
Constant Field Values

ONEBYTE

public static final OmegaMode ONEBYTE
The constant ONEBYTE contains the mode for a single byte stream. The encoding is more or less a variant of ASCII.


EBCDIC

public static final OmegaMode EBCDIC
The constant EBCDIC contains the mode for a single byte stream. The encoding is more or less a variant of EBCDIC.


TWOBYTE

public static final OmegaMode TWOBYTE
The constant TWOBYTE contains the mode for a double byte stream. The encoding is more or less a variant of Unicode with the higher endian byte first.


TWOBYTE_LE

public static final OmegaMode TWOBYTE_LE
The constant TWOBYTE_LE contains the mode for a double byte stream. The encoding is more or less a variant of Unicode with the lower endian byte first.