public enum DialogTypeValues extends java.lang.Enum<DialogTypeValues>
List of Dialog types.
Modifier and Type | Method and Description |
---|---|
static DialogTypeValues |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static DialogTypeValues[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DialogTypeValues _C
C/S Screen - TUI Client
public static final DialogTypeValues _MC
TUI Client monitor
public static final DialogTypeValues _MW
Monitor for Web communications
public static final DialogTypeValues _SC
TUI Client sub-monitor
public static final DialogTypeValues INHERITED
Inherited from Dialog
public static final DialogTypeValues NONE
Standard Dialog or Screen
public static DialogTypeValues 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 DialogTypeValues[] values()
for (DialogTypeValues c : DialogTypeValues.values()) System.out.println(c);