public enum LogicalViewPresenceCheckValues extends java.lang.Enum<LogicalViewPresenceCheckValues>
List of values for presence checks for Logical Views.
Modifier and Type | Method and Description |
---|---|
static LogicalViewPresenceCheckValues |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static LogicalViewPresenceCheckValues[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LogicalViewPresenceCheckValues _F
Optional
The checks specified in the Data Element description are only generated in the Business Components if CHECKSER=YES.
public static final LogicalViewPresenceCheckValues _O
Required.
Required Data Element. The check for its presence is generated in the client, and in the Business Component if CHECKSER=YES.
public static final LogicalViewPresenceCheckValues _P
Required
Required Data Element. The check for its presence is generated only in the Business Component, if CHECKSER=YES.
public static final LogicalViewPresenceCheckValues NONE
Blank
The checks specified in the Data Element description are generated in the client, and in the Business Component, if CHECKSER=YES.
public static LogicalViewPresenceCheckValues 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 LogicalViewPresenceCheckValues[] values()
for (LogicalViewPresenceCheckValues c : LogicalViewPresenceCheckValues.values()) System.out.println(c);