com.ibm.pdp.maf.rpp.pac.errorlabel
Enum ErrorLabelGenerationTypeValues

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

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

Indicates which entities are concerned by the generation : Batch Program, Standard dialog or screen, Client dialog or screen, Server dialog or Server/


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

_B

public static final ErrorLabelGenerationTypeValues _B

Error Label generation for Batch


_C

public static final ErrorLabelGenerationTypeValues _C

Error Label generation for Client Dialog


_O

public static final ErrorLabelGenerationTypeValues _O

Error Label generation for Standard Dialog


_S

public static final ErrorLabelGenerationTypeValues _S

Error Label generation for Server Dialog

Method Detail

valueOf

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

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