public enum ProgramPresenceValidationValues extends java.lang.Enum<ProgramPresenceValidationValues>
Lost of presence types for validation Programs.
Enum Constant and Description |
---|
_0
Present if not zero |
_L
Present if not low value |
NONE
Present if not blank |
Modifier and Type | Method and Description |
---|---|
static ProgramPresenceValidationValues |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ProgramPresenceValidationValues[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ProgramPresenceValidationValues _0
Present if not zero
The Data Element is present if its value is not zero.
public static final ProgramPresenceValidationValues _L
Present if not low value
The Data Element is present if it does not contain low values. This option is available for alphabetic and numeric Data Elements.
public static final ProgramPresenceValidationValues NONE
Present if not blank
It is the default value. The Data Element is present if its value is not blank.
public static ProgramPresenceValidationValues 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 ProgramPresenceValidationValues[] values()
for (ProgramPresenceValidationValues c : ProgramPresenceValidationValues.values()) System.out.println(c);