jcfunc.parameters
Enum paramDAQ

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

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

Enum paramDAQ contains returned values for control function CF.DAQ.


Enum Constant Summary
AlignFirst
          input aligned on the first character position of the qualified area
AlignOnLast
          input aligned on the last character position of the qualified area
AlphaInput
          alphabetic input
FieldBeginning
          set a character tabulation stop at the active presentation position (the first character position of the qualified area) to indicate the beginning of a field
FillSpace
          fill with SPACEs
FillZero
          fill with ZEROs
GraphInput
          graphic character input
Nonstandard
          Don't define in Standart
NumInput
          numeric input
PRT_and_GRD
          protected and guarded
PRT_and_UnGRD
          protected and unguarded
ReversedInput
          the order of the character positions in the input field is reversed, i.e.
UnPRT_and_UnGRD
          unprotected and unguarded
 
Method Summary
static paramDAQ getEnumValue(int val)
          Returns enum-value by int-value.
static int getIntValue(paramDAQ val)
          Returns int-value, which is corresponded to enum-value.
static paramDAQ valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static paramDAQ[] 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

UnPRT_and_UnGRD

public static final paramDAQ UnPRT_and_UnGRD
unprotected and unguarded


PRT_and_GRD

public static final paramDAQ PRT_and_GRD
protected and guarded


GraphInput

public static final paramDAQ GraphInput
graphic character input


NumInput

public static final paramDAQ NumInput
numeric input


AlphaInput

public static final paramDAQ AlphaInput
alphabetic input


AlignOnLast

public static final paramDAQ AlignOnLast
input aligned on the last character position of the qualified area


FillZero

public static final paramDAQ FillZero
fill with ZEROs


FieldBeginning

public static final paramDAQ FieldBeginning
set a character tabulation stop at the active presentation position (the first character position of the qualified area) to indicate the beginning of a field


PRT_and_UnGRD

public static final paramDAQ PRT_and_UnGRD
protected and unguarded


FillSpace

public static final paramDAQ FillSpace
fill with SPACEs


AlignFirst

public static final paramDAQ AlignFirst
input aligned on the first character position of the qualified area


ReversedInput

public static final paramDAQ ReversedInput
the order of the character positions in the input field is reversed, i.e. the last position in each line becomes the first and vice versa; input begins at the new first position.


Nonstandard

public static final paramDAQ Nonstandard
Don't define in Standart

Method Detail

values

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

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

valueOf

public static paramDAQ 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(paramDAQ val)
Returns int-value, which is corresponded to enum-value.

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

getEnumValue

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

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