com.epson.EpsonCom
Enum EpsonCom.ASCII_CONTROL_CODE

java.lang.Object
  extended by java.lang.Enum<EpsonCom.ASCII_CONTROL_CODE>
      extended by com.epson.EpsonCom.EpsonCom.ASCII_CONTROL_CODE
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<EpsonCom.ASCII_CONTROL_CODE>
Enclosing class:
EpsonCom

public static enum EpsonCom.ASCII_CONTROL_CODE
extends java.lang.Enum<EpsonCom.ASCII_CONTROL_CODE>


Enum Constant Summary
ACK
           
BEL
           
BS
           
CAN
           
CR
           
DC1
           
DC2
           
DC3
           
DC4
           
DLE
           
EM
           
ENQ
           
EOT
           
ESC
           
ETB
           
ETX
           
FF
           
FS
           
GS
           
HT
           
LF
           
NAK
           
NUL
           
RS
           
SI
           
SO
           
SOH
           
STX
           
SUB
           
SYN
           
US
           
VT
           
 
Method Summary
 byte getASCIIValue()
           
static EpsonCom.ASCII_CONTROL_CODE valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static EpsonCom.ASCII_CONTROL_CODE[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
compareTo, equals, 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 EpsonCom.ASCII_CONTROL_CODE NUL

SOH

public static final EpsonCom.ASCII_CONTROL_CODE SOH

STX

public static final EpsonCom.ASCII_CONTROL_CODE STX

ETX

public static final EpsonCom.ASCII_CONTROL_CODE ETX

EOT

public static final EpsonCom.ASCII_CONTROL_CODE EOT

ENQ

public static final EpsonCom.ASCII_CONTROL_CODE ENQ

ACK

public static final EpsonCom.ASCII_CONTROL_CODE ACK

BEL

public static final EpsonCom.ASCII_CONTROL_CODE BEL

BS

public static final EpsonCom.ASCII_CONTROL_CODE BS

HT

public static final EpsonCom.ASCII_CONTROL_CODE HT

LF

public static final EpsonCom.ASCII_CONTROL_CODE LF

VT

public static final EpsonCom.ASCII_CONTROL_CODE VT

FF

public static final EpsonCom.ASCII_CONTROL_CODE FF

CR

public static final EpsonCom.ASCII_CONTROL_CODE CR

SO

public static final EpsonCom.ASCII_CONTROL_CODE SO

SI

public static final EpsonCom.ASCII_CONTROL_CODE SI

DLE

public static final EpsonCom.ASCII_CONTROL_CODE DLE

DC1

public static final EpsonCom.ASCII_CONTROL_CODE DC1

DC2

public static final EpsonCom.ASCII_CONTROL_CODE DC2

DC3

public static final EpsonCom.ASCII_CONTROL_CODE DC3

DC4

public static final EpsonCom.ASCII_CONTROL_CODE DC4

NAK

public static final EpsonCom.ASCII_CONTROL_CODE NAK

SYN

public static final EpsonCom.ASCII_CONTROL_CODE SYN

ETB

public static final EpsonCom.ASCII_CONTROL_CODE ETB

CAN

public static final EpsonCom.ASCII_CONTROL_CODE CAN

EM

public static final EpsonCom.ASCII_CONTROL_CODE EM

SUB

public static final EpsonCom.ASCII_CONTROL_CODE SUB

ESC

public static final EpsonCom.ASCII_CONTROL_CODE ESC

FS

public static final EpsonCom.ASCII_CONTROL_CODE FS

GS

public static final EpsonCom.ASCII_CONTROL_CODE GS

RS

public static final EpsonCom.ASCII_CONTROL_CODE RS

US

public static final EpsonCom.ASCII_CONTROL_CODE US
Method Detail

values

public static EpsonCom.ASCII_CONTROL_CODE[] 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 (EpsonCom.ASCII_CONTROL_CODE c : EpsonCom.ASCII_CONTROL_CODE.values())
    System.out.println(c);

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

valueOf

public static EpsonCom.ASCII_CONTROL_CODE 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

getASCIIValue

public byte getASCIIValue()