FlexOr.io
Class Char

java.lang.Object
  extended by FlexOr.io.Char

public class Char
extends java.lang.Object

The Char class names the control characters because it is inconvenient to try to remember their ordinal position in the ASCII character set. The names are the standard ASCII abbreviation. We also give aliases to match common usage for some of the characters. All the other characters are easily represented within quotes and easy to remember and understand, so no special names are given to them -- except for Space which is ubiquitous and not always easy to see.

The characters are all of type char because they are used in contexts where type char is expected.

Version:
1.0 1999 Jan 10
Author:
Gunnar Gotshalks

Field Summary
static char ABORT
          Interrupt the program
static char ACK
          Acknowledge
static char BEL
          Ring the bell
static char BS
          Backspace
static char CAN
          Cancel
static char CR
          Carriage return
static char DC1
          Device control 1
static char DC2
          Device control 2
static char DC3
          Device control 3
static char DC4
          Device control 4
static char DEL
          Delete last character
static char DLE
          Data link escape
static char DQ
          Double quote
static char EM
          End of medium
static char ENQ
          Enquire
static char EOF
          End of file
static char EOL
          End of line
static char EOS
          End of string
static char EOT
          End of transmission
static char ESC
          Escape
static char ETB
          End of transmission block
static char ETX
          End of text
static char FF
          Form feed
static char FS
          Field separator
static char GS
          Group separator
static char HT
          Horizontal tab
static char LF
          Line feed
static char NAK
          Negative acknowledge
static char Newline
          For new line output
static char NUL
          Null
static char RS
          Record separator
static char SI
          Shift in -- change character sets
static char SO
          Shift out -- change character sets
static char SOH
          Start of heading
static char Space
          Space
static char SQ
          Single quote
static char STX
          Start of text
static char SUB
          Substitute
static char SYN
          Synchronize idle
static char TD
          Toggle transmission to display screen
static char US
          Unit separator
static char VT
          Vertical tab
static char XOFF
          Stop transmission to screen and stop work
static char XON
          Resume transmission to the screen and resume work
 
Constructor Summary
Char()
          Constructor is never used as no instances of the class are needed -- all the constants are at the class level.
 
Method Summary
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

NUL

public static final char NUL
Null

See Also:
Constant Field Values

EOS

public static final char EOS
End of string

See Also:
Constant Field Values

SOH

public static final char SOH
Start of heading

See Also:
Constant Field Values

STX

public static final char STX
Start of text

See Also:
Constant Field Values

ETX

public static final char ETX
End of text

See Also:
Constant Field Values

EOT

public static final char EOT
End of transmission

See Also:
Constant Field Values

ENQ

public static final char ENQ
Enquire

See Also:
Constant Field Values

ACK

public static final char ACK
Acknowledge

See Also:
Constant Field Values

BEL

public static final char BEL
Ring the bell

See Also:
Constant Field Values

BS

public static final char BS
Backspace

See Also:
Constant Field Values

HT

public static final char HT
Horizontal tab

See Also:
Constant Field Values

LF

public static final char LF
Line feed

See Also:
Constant Field Values

EOL

public static final char EOL
End of line

See Also:
Constant Field Values

VT

public static final char VT
Vertical tab

See Also:
Constant Field Values

FF

public static final char FF
Form feed

See Also:
Constant Field Values

CR

public static final char CR
Carriage return

See Also:
Constant Field Values

SO

public static final char SO
Shift out -- change character sets

See Also:
Constant Field Values

SI

public static final char SI
Shift in -- change character sets

See Also:
Constant Field Values

TD

public static final char TD
Toggle transmission to display screen

See Also:
Constant Field Values

DLE

public static final char DLE
Data link escape

See Also:
Constant Field Values

DC1

public static final char DC1
Device control 1

See Also:
Constant Field Values

XON

public static final char XON
Resume transmission to the screen and resume work

See Also:
Constant Field Values

DC2

public static final char DC2
Device control 2

See Also:
Constant Field Values

DC3

public static final char DC3
Device control 3

See Also:
Constant Field Values

XOFF

public static final char XOFF
Stop transmission to screen and stop work

See Also:
Constant Field Values

DC4

public static final char DC4
Device control 4

See Also:
Constant Field Values

NAK

public static final char NAK
Negative acknowledge

See Also:
Constant Field Values

SYN

public static final char SYN
Synchronize idle

See Also:
Constant Field Values

ETB

public static final char ETB
End of transmission block

See Also:
Constant Field Values

CAN

public static final char CAN
Cancel

See Also:
Constant Field Values

EM

public static final char EM
End of medium

See Also:
Constant Field Values

ABORT

public static final char ABORT
Interrupt the program

See Also:
Constant Field Values

SUB

public static final char SUB
Substitute

See Also:
Constant Field Values

EOF

public static final char EOF
End of file

See Also:
Constant Field Values

ESC

public static final char ESC
Escape

See Also:
Constant Field Values

FS

public static final char FS
Field separator

See Also:
Constant Field Values

GS

public static final char GS
Group separator

See Also:
Constant Field Values

RS

public static final char RS
Record separator

See Also:
Constant Field Values

US

public static final char US
Unit separator

See Also:
Constant Field Values

DEL

public static final char DEL
Delete last character

See Also:
Constant Field Values

Newline

public static final char Newline
For new line output

See Also:
Constant Field Values

Space

public static final char Space
Space

See Also:
Constant Field Values

SQ

public static final char SQ
Single quote

See Also:
Constant Field Values

DQ

public static final char DQ
Double quote

See Also:
Constant Field Values
Constructor Detail

Char

public Char()
Constructor is never used as no instances of the class are needed -- all the constants are at the class level.