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

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

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

List of values of update option for the fields in the layout of the Screen.


Enum Constant Summary
_F
           
_G
           
_M
           
_P
           
_S
           
_V
           
MINUS
           
NONE
           
PLUS
           
 
Method Summary
static ScreenUpdateOptionValues valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static ScreenUpdateOptionValues[] 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

_F

public static final ScreenUpdateOptionValues _F

Reserved to Reversed Screen


_G

public static final ScreenUpdateOptionValues _G

Generate Screen branching


_M

public static final ScreenUpdateOptionValues _M

Updatr by substitution


_P

public static final ScreenUpdateOptionValues _P

Perform the standard validations


_S

public static final ScreenUpdateOptionValues _S

Simulate Screen branching


_V

public static final ScreenUpdateOptionValues _V

Value to validate


MINUS

public static final ScreenUpdateOptionValues MINUS

Update by substraction


NONE

public static final ScreenUpdateOptionValues NONE

Update bu substitution


PLUS

public static final ScreenUpdateOptionValues PLUS

Update by addition

Method Detail

valueOf

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

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