ASCIITable.java
package eu.javaexperience.nativ.utils;
public class ASCIITable
{
/**
* null
* */
public static final byte NUL = 0;
/**
* start of heading
* */
public static final byte SOH = 1;
/**
* start of text
* */
public static final byte STX = 2;
/**
* end of text
* */
public static final byte ETX = 3;
/**
* end of transmission
* */
public static final byte EOT = 4;
/**
* enquiry
* */
public static final byte ENQ = 5;
/**
* acknowledge
* */
public static final byte ACK = 6;
/**
* bell
* */
public static final byte BEL = 7;
/**
* backspace
* */
public static final byte BS = 8;
/**
* horizontal tab
* */
public static final byte TAB = 9;
/**
* line feed
* */
public static final byte LF = 10;
/**
* vertical tab
* */
public static final byte VT = 11 ;
/**
* NP from feed, new page
* */
public static final byte FF = 12;
/**
* carriage return
* */
public static final byte CR = 13;
/**
* shift out
* */
public static final byte SO = 14;
/**
* shift in
* */
public static final byte SI = 15;
/**
* data link escape
* */
public static final byte DLE = 16;
/**
* device control 1
* */
public static final byte DC1 = 17;
/**
* device control 2
* */
public static final byte DC2 = 18;
/**
* device control 3
* */
public static final byte DC3 = 19;
/**
* device control 4
* */
public static final byte DC4 = 20;
/**
* negative acknowledge
* */
public static final byte NAK = 21;
/**
* synchronous idle
* */
public static final byte SYN = 22;
/**
* end of trans. block
* */
public static final byte ETB = 23;
/**
* cancel
* */
public static final byte CAN = 24;
/**
* end of medium
* */
public static final byte EM = 25;
/**
* substitue
* */
public static final byte SUB = 26;
/**
* escape
* */
public static final byte ESC = 27;
/**
* file separator
* */
public static final byte FS = 28;
/**
* group separator
* */
public static final byte GS = 29;
/**
* record separator
* */
public static final byte RS = 30;
/**
* unit separator
* */
public static final byte US = 31;
/**
* delete
* */
public static final byte DEL = 127;
}