com.ibm.pdp.maf.rpp.pac.segment
Enum LogicalViewPresenceCheckValues

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

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

List of values for presence checks for Logical Views.


Enum Constant Summary
_F
           
_O
           
_P
           
NONE
           
 
Method Summary
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.
 
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 LogicalViewPresenceCheckValues _F

Optional

The checks specified in the Data Element description are only generated in the Business Components if CHECKSER=YES.


_O

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.


_P

public static final LogicalViewPresenceCheckValues _P

Required

Required Data Element. The check for its presence is generated only in the Business Component, if CHECKSER=YES.


NONE

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.

Method Detail

valueOf

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

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