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

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

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

List of action code or validation controls.


Enum Constant Summary
_A
           
_I
           
_O
           
_T
           
_X
           
NONE
           
 
Method Summary
static ScreenActionCodeValues valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static ScreenActionCodeValues[] 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

_A

public static final ScreenActionCodeValues _A

Validate when not updating


_I

public static final ScreenActionCodeValues _I

Action code


_O

public static final ScreenActionCodeValues _O

Operation code


_T

public static final ScreenActionCodeValues _T

Validate when creating, modifying or deleting


_X

public static final ScreenActionCodeValues _X

Validate when creating or modifying


NONE

public static final ScreenActionCodeValues NONE

Always validate

Method Detail

valueOf

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

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