com.ibm.pdp.maf.rpp.pac.common.dialog
Enum ScreenControlBreakValues

java.lang.Object
  extended by java.lang.Enum<ScreenControlBreakValues>
      extended by com.ibm.pdp.maf.rpp.pac.common.dialog.ScreenControlBreakValues
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<ScreenControlBreakValues>

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

List of control breaks. Logical Characteristics.


Enum Constant Summary
_C
          Display break for organizations different from X.
_E
          For an SQL organization: Display control break.
NONE
          No control break for organizations different from X.
 
Method Summary
static ScreenControlBreakValues valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static ScreenControlBreakValues[] 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

_C

public static final ScreenControlBreakValues _C

Display break for organizations different from X.

Indicates that a Data Element, which belongs to a key in the repetitive category of a Screen, must remain constant during display.


_E

public static final ScreenControlBreakValues _E

For an SQL organization: Display control break. It causes the generation of an equal condition in the WHERE clause of the SQL DECLARE CURSOR statement (and not '>=', which is generated otherwise). The use of CURSOR is optimized in the repetitive category.


NONE

public static final ScreenControlBreakValues NONE

No control break for organizations different from X.

Indicates that a Data Element, which belongs to a key in the repetitive category of a Screen, must remain constant during display.

Method Detail

valueOf

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

values

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

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