jcfunc
Enum Sequences.C1

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

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

Control function of C1-set


Enum Constant Summary
APC
          \x5F or \x9F
BPH
          \x42 or \x82
CCH
          \x54 or \x94
CSI
          \x5B or \x9B
DCS
          \x50 or \x90
EPA
          \x57 or \x97
ESA
          \x47 or \x87
HTJ
          \x49 or \x89
HTS
          \x48 or \x88
MW
          \x55 or \x95
NBH
          \x43 or \x83
NEL
          \x45 or \x85
OSC
          \x5D or \x9D
PLD
          \x4B or \x8B
PLU
          \x4C or \x8C
PM
          \x5E or \x9E
PU1
          \x51 or \x91
PU2
          \x52 or \x92
RI
          \x4D or \x8D
SCI
          \x5A or \x9A
SOS
          \x58 or \x98
SPA
          \x56 or \x96
SS2
          \x4E or \x8E
SS3
          \x4F or \x8F
SSA
          \x46 or \x86
ST
          \x5C or \x9C
STS
          \x53 or \x93
VTS
          \x4A or \x8A
 
Method Summary
static Sequences.C1 valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static Sequences.C1[] 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

BPH

public static final Sequences.C1 BPH
\x42 or \x82


NBH

public static final Sequences.C1 NBH
\x43 or \x83


NEL

public static final Sequences.C1 NEL
\x45 or \x85


SSA

public static final Sequences.C1 SSA
\x46 or \x86


ESA

public static final Sequences.C1 ESA
\x47 or \x87


HTS

public static final Sequences.C1 HTS
\x48 or \x88


HTJ

public static final Sequences.C1 HTJ
\x49 or \x89


VTS

public static final Sequences.C1 VTS
\x4A or \x8A


PLD

public static final Sequences.C1 PLD
\x4B or \x8B


PLU

public static final Sequences.C1 PLU
\x4C or \x8C


RI

public static final Sequences.C1 RI
\x4D or \x8D


SS2

public static final Sequences.C1 SS2
\x4E or \x8E


SS3

public static final Sequences.C1 SS3
\x4F or \x8F


DCS

public static final Sequences.C1 DCS
\x50 or \x90


PU1

public static final Sequences.C1 PU1
\x51 or \x91


PU2

public static final Sequences.C1 PU2
\x52 or \x92


STS

public static final Sequences.C1 STS
\x53 or \x93


CCH

public static final Sequences.C1 CCH
\x54 or \x94


MW

public static final Sequences.C1 MW
\x55 or \x95


SPA

public static final Sequences.C1 SPA
\x56 or \x96


EPA

public static final Sequences.C1 EPA
\x57 or \x97


SOS

public static final Sequences.C1 SOS
\x58 or \x98


SCI

public static final Sequences.C1 SCI
\x5A or \x9A


CSI

public static final Sequences.C1 CSI
\x5B or \x9B


ST

public static final Sequences.C1 ST
\x5C or \x9C


OSC

public static final Sequences.C1 OSC
\x5D or \x9D


PM

public static final Sequences.C1 PM
\x5E or \x9E


APC

public static final Sequences.C1 APC
\x5F or \x9F

Method Detail

values

public static Sequences.C1[] 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.C1 c : Sequences.C1.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.C1 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