com.ibm.pdp.maf.rpp.pac.dialogserver
Enum DialogServerTypeValues

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

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

List of Dialog Server types.


Enum Constant Summary
_E
           
_IT
           
_MS
           
_MV
           
_S
           
_SI
           
_ST
           
INHERITED
           
 
Method Summary
static DialogServerTypeValues valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static DialogServerTypeValues[] 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

_E

public static final DialogServerTypeValues _E

Error message server For TUI and graphic applications


_IT

public static final DialogServerTypeValues _IT

Initialization/termination Business Component For graphic applications with the development of a Folder


_MS

public static final DialogServerTypeValues _MS

Server monitor For TUI applications


_MV

public static final DialogServerTypeValues _MV

Communication monitor, simple mode


_S

public static final DialogServerTypeValues _S

Business Component For TUI and graphic applications


_SI

public static final DialogServerTypeValues _SI

Initialization server


_ST

public static final DialogServerTypeValues _ST

Termination server


INHERITED

public static final DialogServerTypeValues INHERITED

Inherited from Dialog Server.

Method Detail

valueOf

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

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