jcfunc.parameters
Enum paramRM

java.lang.Object
  extended by java.lang.Enum<paramRM>
      extended by jcfunc.parameters.paramRM
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<paramRM>

public enum paramRM
extends java.lang.Enum<paramRM>

Enum paramRM contains returned values for control function CF.RM.


Enum Constant Summary
BDSM
          BI-DIRECTIONAL SUPPORT MODE
CRM
          CONTROL REPRESENTATION MODE
DCSM
          DEVICE COMPONENT SELECT MODE
EBM
          [eliminated] EDITING BOUNDARY MODE
ERM
          ERASURE MODE
FEAM
          FORMAT EFFECTOR ACTION MODE
FETM
          FORMAT EFFECTOR TRANSFER MODE
GATM
          GUARDED AREA TRANSFER MODE
GRCM
          GRAPHIC RENDITION COMBINATION MODE
HEM
          CHARACTER EDITING MODE
IRM
          INSERTION REPLACEMENT MODE
KAM
          KEYBOARD ACTION MODE
LFNL
          [eliminated] LINE FEED/ NEW LINE MODE
MATM
          MULTIPLE AREA TRANSFER MODE
Nonstandard
          Don't define in Standart
PUM
          Deprecated. POSITIONING UNIT MODE
SATM
          SELECTED AREA TRANSFER MODE
SRM
          SEND/RECEIVE MODE
SRTM
          STATUS REPORT TRANSFER MODE
TSM
          TABULATION STOP MODE
TTM
          TRANSFER TERMINATION MODE
VEM
          LINE EDITING MODE
ZDM
          Deprecated. ZERO DEFAULT MODE
 
Method Summary
static paramRM getEnumValue(int val)
          Returns enum-value by int-value.
static int getIntValue(paramRM val)
          Returns int-value, which is corresponded to enum-value.
static paramRM valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static paramRM[] 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

GATM

public static final paramRM GATM
GUARDED AREA TRANSFER MODE


KAM

public static final paramRM KAM
KEYBOARD ACTION MODE


CRM

public static final paramRM CRM
CONTROL REPRESENTATION MODE


IRM

public static final paramRM IRM
INSERTION REPLACEMENT MODE


SRTM

public static final paramRM SRTM
STATUS REPORT TRANSFER MODE


ERM

public static final paramRM ERM
ERASURE MODE


VEM

public static final paramRM VEM
LINE EDITING MODE


BDSM

public static final paramRM BDSM
BI-DIRECTIONAL SUPPORT MODE


DCSM

public static final paramRM DCSM
DEVICE COMPONENT SELECT MODE


HEM

public static final paramRM HEM
CHARACTER EDITING MODE


PUM

public static final paramRM PUM
Deprecated. POSITIONING UNIT MODE

SRM

public static final paramRM SRM
SEND/RECEIVE MODE


FEAM

public static final paramRM FEAM
FORMAT EFFECTOR ACTION MODE


FETM

public static final paramRM FETM
FORMAT EFFECTOR TRANSFER MODE


MATM

public static final paramRM MATM
MULTIPLE AREA TRANSFER MODE


TTM

public static final paramRM TTM
TRANSFER TERMINATION MODE


SATM

public static final paramRM SATM
SELECTED AREA TRANSFER MODE


TSM

public static final paramRM TSM
TABULATION STOP MODE


EBM

public static final paramRM EBM
[eliminated] EDITING BOUNDARY MODE


LFNL

public static final paramRM LFNL
[eliminated] LINE FEED/ NEW LINE MODE


GRCM

public static final paramRM GRCM
GRAPHIC RENDITION COMBINATION MODE


ZDM

public static final paramRM ZDM
Deprecated. ZERO DEFAULT MODE

Nonstandard

public static final paramRM Nonstandard
Don't define in Standart

Method Detail

values

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

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

valueOf

public static paramRM 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

getIntValue

public static int getIntValue(paramRM val)
Returns int-value, which is corresponded to enum-value.

Parameters:
val - enum-value
Returns:
int-value

getEnumValue

public static paramRM getEnumValue(int val)
Returns enum-value by int-value.

Parameters:
val - int-value
Returns:
enum-value