public enum ScreenActionCodeValues extends java.lang.Enum<ScreenActionCodeValues>
List of action code or validation controls.
Modifier and Type | Method and Description |
---|---|
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.
|
public static final ScreenActionCodeValues _A
Validate when not updating
public static final ScreenActionCodeValues _I
Action code
public static final ScreenActionCodeValues _O
Operation code
public static final ScreenActionCodeValues _T
Validate when creating, modifying or deleting
public static final ScreenActionCodeValues _X
Validate when creating or modifying
public static final ScreenActionCodeValues NONE
Always validate
public static ScreenActionCodeValues valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant
with the specified namejava.lang.NullPointerException
- if the argument is nullpublic static ScreenActionCodeValues[] values()
for (ScreenActionCodeValues c : ScreenActionCodeValues.values()) System.out.println(c);