com.ibm.pdp.maf.rpp.pac.inputaid
Enum InputAidCallTypeLineValues

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

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

List of the call type for generation


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

_G

public static final InputAidCallTypeLineValues _G

This line is taken into account when a blockbase or a screen is generated.


_O

public static final InputAidCallTypeLineValues _O

Line for options


NONE

public static final InputAidCallTypeLineValues NONE

Documentary line only, not taken into account when the instance calling the input-aid is generated.

Method Detail

valueOf

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

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