jcfunc
Enum Sequences.C0

java.lang.Object
  extended by java.lang.Enum<Sequences.C0>
      extended by jcfunc.Sequences.C0
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<Sequences.C0>
Enclosing class:
Sequences

public static enum Sequences.C0
extends java.lang.Enum<Sequences.C0>

Control function of C0-set


Enum Constant Summary
ACK
          \x06
BEL
          \x07
BS
          \x08
CAN
          \x18
CR
          \x0D
DC1
          \x11
DC2
          \x12
DC3
          \x13
DC4
          \x14
DLE
          \x10
EM
          \x19
ENQ
          \x05
EOT
          \x04
ESC
          \x1B
ETB
          \x17
ETX
          \x03
FF
          \x0C
HT
          \x09
IS1
          \x1F
IS2
          \x1E
IS3
          \x1D
IS4
          \x1C
LF
          \x0A
LS0
          \x0F
LS1
          \x0E
NAK
          \x15
NUL
          \x00
SOH
          \x01
STX
          \x02
SUB
          \x1A
SYN
          \x16
VT
          \x0B
 
Method Summary
static Sequences.C0 valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static Sequences.C0[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

NUL

public static final Sequences.C0 NUL
\x00


SOH

public static final Sequences.C0 SOH
\x01


STX

public static final Sequences.C0 STX
\x02


ETX

public static final Sequences.C0 ETX
\x03


EOT

public static final Sequences.C0 EOT
\x04


ENQ

public static final Sequences.C0 ENQ
\x05


ACK

public static final Sequences.C0 ACK
\x06


BEL

public static final Sequences.C0 BEL
\x07


BS

public static final Sequences.C0 BS
\x08


HT

public static final Sequences.C0 HT
\x09


LF

public static final Sequences.C0 LF
\x0A


VT

public static final Sequences.C0 VT
\x0B


FF

public static final Sequences.C0 FF
\x0C


CR

public static final Sequences.C0 CR
\x0D


LS1

public static final Sequences.C0 LS1
\x0E


LS0

public static final Sequences.C0 LS0
\x0F


DLE

public static final Sequences.C0 DLE
\x10


DC1

public static final Sequences.C0 DC1
\x11


DC2

public static final Sequences.C0 DC2
\x12


DC3

public static final Sequences.C0 DC3
\x13


DC4

public static final Sequences.C0 DC4
\x14


NAK

public static final Sequences.C0 NAK
\x15


SYN

public static final Sequences.C0 SYN
\x16


ETB

public static final Sequences.C0 ETB
\x17


CAN

public static final Sequences.C0 CAN
\x18


EM

public static final Sequences.C0 EM
\x19


SUB

public static final Sequences.C0 SUB
\x1A


ESC

public static final Sequences.C0 ESC
\x1B


IS4

public static final Sequences.C0 IS4
\x1C


IS3

public static final Sequences.C0 IS3
\x1D


IS2

public static final Sequences.C0 IS2
\x1E


IS1

public static final Sequences.C0 IS1
\x1F

Method Detail

values

public static Sequences.C0[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
for (Sequences.C0 c : Sequences.C0.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static Sequences.C0 valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Parameters:
name - the name of the enum constant to be returned.
Returns:
the enum constant with the specified name
Throws:
java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
java.lang.NullPointerException - if the argument is null