jcfunc.parameters
Enum paramSPD

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

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

Enum paramSPD contains returned values for control function CF.SPD.


Enum Constant Summary
Horizontal_BT_LR
          line orientation: horizontal line progression: bottom-to-top character path: left-to-right
Horizontal_BT_RL
          line orientation: horizontal line progression: bottom-to-top character path: right-to-left
Horizontal_TB_LR
          line orientation: horizontal line progression: top-to-bottom character path: left-to-right
Horizontal_TB_RL
          line orientation: horizontal line progression: top-to-bottom character path: right-to-left
Nonstandard
          Don't define in Standart
Undefined
          undefined (implementation-dependent)
Update_Data
          the content of the data component is updated to correspond to the content of the presentation component according to the newly established characteristics of the presentation component; the active presentation position is moved to the first character position in the first line in the presentation component, the active data position in the data component is updated accordingly.
Update_Presentation
          the content of the presentation component is updated to correspond to the content of the data component according to the newly established characteristics of the presentation component; the active data position is moved to the first character position in the first line in the data component, the active presentation position in the presentation component is updated accordingly
Vertical_LR_BT
          line orientation: vertical line progression: left-to-right character path: bottom-to-top
Vertical_LR_TB
          line orientation: vertical line progression: left-to-right character path: top-to-bottom
Vertical_RL_BT
          line orientation: vertical line progression: right-to-left character path: bottom-to-top
Vertical_RL_TB
          line orientation: vertical line progression: right-to-left character path: top-to-bottom
 
Method Summary
static paramSPD getEnumValue(int val)
          Returns enum-value by int-value.
static paramSPD getEnumValue(int val, boolean first)
          Returns enum-value by int-value.
static int getIntValue(paramSPD val)
          Returns int-value, which is corresponded to enum-value.
static paramSPD valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static paramSPD[] 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

Horizontal_TB_LR

public static final paramSPD Horizontal_TB_LR
line orientation: horizontal line progression: top-to-bottom character path: left-to-right


Vertical_RL_TB

public static final paramSPD Vertical_RL_TB
line orientation: vertical line progression: right-to-left character path: top-to-bottom


Vertical_LR_TB

public static final paramSPD Vertical_LR_TB
line orientation: vertical line progression: left-to-right character path: top-to-bottom


Horizontal_TB_RL

public static final paramSPD Horizontal_TB_RL
line orientation: horizontal line progression: top-to-bottom character path: right-to-left


Vertical_LR_BT

public static final paramSPD Vertical_LR_BT
line orientation: vertical line progression: left-to-right character path: bottom-to-top


Horizontal_BT_RL

public static final paramSPD Horizontal_BT_RL
line orientation: horizontal line progression: bottom-to-top character path: right-to-left


Horizontal_BT_LR

public static final paramSPD Horizontal_BT_LR
line orientation: horizontal line progression: bottom-to-top character path: left-to-right


Vertical_RL_BT

public static final paramSPD Vertical_RL_BT
line orientation: vertical line progression: right-to-left character path: bottom-to-top


Undefined

public static final paramSPD Undefined
undefined (implementation-dependent)


Update_Presentation

public static final paramSPD Update_Presentation
the content of the presentation component is updated to correspond to the content of the data component according to the newly established characteristics of the presentation component; the active data position is moved to the first character position in the first line in the data component, the active presentation position in the presentation component is updated accordingly


Update_Data

public static final paramSPD Update_Data
the content of the data component is updated to correspond to the content of the presentation component according to the newly established characteristics of the presentation component; the active presentation position is moved to the first character position in the first line in the presentation component, the active data position in the data component is updated accordingly.


Nonstandard

public static final paramSPD Nonstandard
Don't define in Standart

Method Detail

values

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

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

valueOf

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

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

getEnumValue

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

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

getEnumValue

public static paramSPD getEnumValue(int val,
                                    boolean first)
Returns enum-value by int-value.

Parameters:
val - int-value
first - flag: return value of the first parameter
Returns:
enum-value