@GwtCompatible public final class Ascii extends Object
0x00 through 0x7F), and to strings containing such
 characters.
 ASCII utilities also exist in other classes of this package:
Charsets.US_ASCII specifies the Charset of ASCII characters.
 CharMatcher.ASCII matches ASCII characters and provides text processing methods
     which operate only on the ASCII characters of a string.
 | Modifier and Type | Field and Description | 
|---|---|
| static byte | ACKAcknowledge: A communication control character transmitted
 by a receiver as an affirmative response to a sender. | 
| static byte | BELBell ('\a'): A character for use when there is a need to call for
 human attention. | 
| static byte | BSBackspace ('\b'): A format effector which controls the movement of
 the printing position one printing space backward on the same
 printing line. | 
| static byte | CANCancel: A control character used to indicate that the data
 with which it is sent is in error or is to be disregarded. | 
| static byte | CRCarriage Return ('\r'): A format effector which controls the
 movement of the printing position to the first printing position on
 the same printing line. | 
| static byte | DC1Device Control 1. | 
| static byte | DC2Device Control 2. | 
| static byte | DC3Device Control 3. | 
| static byte | DC4Device Control 4. | 
| static byte | DELDelete: This character is used primarily to "erase" or
 "obliterate" erroneous or unwanted characters in perforated tape. | 
| static byte | DLEData Link Escape: A communication control character which
 will change the meaning of a limited number of contiguously following
 characters. | 
| static byte | EMEnd of Medium: A control character associated with the sent
 data which may be used to identify the physical end of the medium, or
 the end of the used, or wanted, portion of information recorded on a
 medium. | 
| static byte | ENQEnquiry: A communication control character used in data
 communication systems as a request for a response from a remote
 station. | 
| static byte | EOTEnd of Transmission: A communication control character used
 to indicate the conclusion of a transmission, which may have
 contained one or more texts and any associated headings. | 
| static byte | ESCEscape: A control character intended to provide code
 extension (supplementary characters) in general information
 interchange. | 
| static byte | ETBEnd of Transmission Block: A communication control character
 used to indicate the end of a block of data for communication
 purposes. | 
| static byte | ETXEnd of Text: A communication control character used to
 terminate a sequence of characters started with STX and transmitted
 as an entity. | 
| static byte | FFForm Feed ('\f'): A format effector which controls the movement of
 the printing position to the first pre-determined printing line on
 the next form or page. | 
| static byte | FSFile Separator: These four information separators may be
 used within data in optional fashion, except that their hierarchical
 relationship shall be: FS is the most inclusive, then GS, then RS,
 and US is least inclusive. | 
| static byte | GSGroup Separator: These four information separators may be
 used within data in optional fashion, except that their hierarchical
 relationship shall be: FS is the most inclusive, then GS, then RS,
 and US is least inclusive. | 
| static byte | HTHorizontal Tabulation ('\t'): A format effector which controls the
 movement of the printing position to the next in a series of
 predetermined positions along the printing line. | 
| static byte | LFLine Feed ('\n'): A format effector which controls the movement of
 the printing position to the next printing line. | 
| static char | MAXThe maximum value of an ASCII character. | 
| static char | MINThe minimum value of an ASCII character. | 
| static byte | NAKNegative Acknowledge: A communication control character
 transmitted by a receiver as a negative response to the sender. | 
| static byte | NLAlternate name for  LF. | 
| static byte | NULNull ('\0'): The all-zeros character which may serve to accomplish
 time fill and media fill. | 
| static byte | RSRecord Separator: These four information separators may be
 used within data in optional fashion, except that their hierarchical
 relationship shall be: FS is the most inclusive, then GS, then RS,
 and US is least inclusive. | 
| static byte | SIShift In: A control character indicating that the code
 combinations which follow shall be interpreted according to the
 standard code table. | 
| static byte | SOShift Out: A control character indicating that the code
 combinations which follow shall be interpreted as outside of the
 character set of the standard code table until a Shift In character
 is reached. | 
| static byte | SOHStart of Heading: A communication control character used at
 the beginning of a sequence of characters which constitute a
 machine-sensible address or routing information. | 
| static byte | SPSpace: A normally non-printing graphic character used to
 separate words. | 
| static byte | SPACEAlternate name for  SP. | 
| static byte | STXStart of Text: A communication control character which
 precedes a sequence of characters that is to be treated as an entity
 and entirely transmitted through to the ultimate destination. | 
| static byte | SUBSubstitute: A character that may be substituted for a
 character which is determined to be invalid or in error. | 
| static byte | SYNSynchronous Idle: A communication control character used by
 a synchronous transmission system in the absence of any other
 character to provide a signal from which synchronism may be achieved
 or retained. | 
| static byte | USUnit Separator: These four information separators may be
 used within data in optional fashion, except that their hierarchical
 relationship shall be: FS is the most inclusive, then GS, then RS,
 and US is least inclusive. | 
| static byte | VTVertical Tabulation ('\v'): A format effector which controls the
 movement of the printing position to the next in a series of
 predetermined printing lines. | 
| static byte | XOFFTransmission off. | 
| static byte | XONTransmission On: Although originally defined as DC1, this ASCII
 control character is now better known as the XON code used for software
 flow control in serial communications. | 
| Modifier and Type | Method and Description | 
|---|---|
| static boolean | isLowerCase(char c)Indicates whether  cis one of the twenty-six lowercase ASCII alphabetic characters
 between'a'and'z'inclusive. | 
| static boolean | isUpperCase(char c)Indicates whether  cis one of the twenty-six uppercase ASCII alphabetic characters
 between'A'and'Z'inclusive. | 
| static char | toLowerCase(char c)If the argument is an uppercase ASCII character returns the
 lowercase equivalent. | 
| static String | toLowerCase(CharSequence chars)Returns a copy of the input character sequence in which all uppercase ASCII characters have been converted to lowercase. | 
| static String | toLowerCase(String string)Returns a copy of the input string in which all uppercase ASCII
 characters have been converted to lowercase. | 
| static char | toUpperCase(char c)If the argument is a lowercase ASCII character returns the
 uppercase equivalent. | 
| static String | toUpperCase(CharSequence chars)Returns a copy of the input character sequence in which all lowercase ASCII characters have been converted to uppercase. | 
| static String | toUpperCase(String string)Returns a copy of the input string in which all lowercase ASCII
 characters have been converted to uppercase. | 
public static final byte NUL
Although RFC 20 names this as "Null", note that it is distinct from the C/C++ "NULL" pointer.
public static final byte SOH
public static final byte STX
public static final byte ETX
public static final byte EOT
public static final byte ENQ
public static final byte ACK
public static final byte BEL
public static final byte BS
public static final byte HT
public static final byte LF
public static final byte NL
LF.  (LF is preferred.)public static final byte VT
public static final byte FF
public static final byte CR
public static final byte SO
public static final byte SI
public static final byte DLE
public static final byte DC1
public static final byte XON
public static final byte DC2
public static final byte DC3
public static final byte XOFF
XON for explanation.public static final byte DC4
public static final byte NAK
public static final byte SYN
public static final byte ETB
public static final byte CAN
public static final byte EM
public static final byte SUB
public static final byte ESC
public static final byte FS
public static final byte GS
public static final byte RS
public static final byte US
public static final byte SP
public static final byte SPACE
SP.public static final byte DEL
public static final char MIN
int before 12.0)public static final char MAX
int before 12.0)public static String toLowerCase(String string)
public static String toLowerCase(CharSequence chars)
public static char toLowerCase(char c)
public static String toUpperCase(String string)
public static String toUpperCase(CharSequence chars)
public static char toUpperCase(char c)
public static boolean isLowerCase(char c)
c is one of the twenty-six lowercase ASCII alphabetic characters
 between 'a' and 'z' inclusive. All others (including non-ASCII characters)
 return false.public static boolean isUpperCase(char c)
c is one of the twenty-six uppercase ASCII alphabetic characters
 between 'A' and 'Z' inclusive. All others (including non-ASCII characters)
 return false.Copyright © 2010-2013. All Rights Reserved.