public enum DialogServerTypeValues extends java.lang.Enum<DialogServerTypeValues>
List of Dialog Server types.
Enum Constant and Description |
---|
_E |
_IT |
_MS |
_MV |
_S |
_SI |
_ST |
INHERITED |
Modifier and Type | Method and Description |
---|---|
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.
|
public static final DialogServerTypeValues _E
Error message server For TUI and graphic applications
public static final DialogServerTypeValues _IT
Initialization/termination Business Component For graphic applications with the development of a Folder
public static final DialogServerTypeValues _MS
Server monitor For TUI applications
public static final DialogServerTypeValues _MV
Communication monitor, simple mode
public static final DialogServerTypeValues _S
Business Component For TUI and graphic applications
public static final DialogServerTypeValues _SI
Initialization server
public static final DialogServerTypeValues _ST
Termination server
public static final DialogServerTypeValues INHERITED
Inherited from Dialog Server.
public static DialogServerTypeValues 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 DialogServerTypeValues[] values()
for (DialogServerTypeValues c : DialogServerTypeValues.values()) System.out.println(c);