public enum CommunicationTypeValues extends java.lang.Enum<CommunicationTypeValues>
SOCKET : TCP-IP
Modifier and Type | Method and Description |
---|---|
static CommunicationTypeValues |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CommunicationTypeValues[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CommunicationTypeValues _LOCAL
LOCAL : Local Communication (default value)
public static final CommunicationTypeValues _SOCKET
public static final CommunicationTypeValues NONE
The value entered on the Definition tab of the Communication Monitor Dialog
public static CommunicationTypeValues 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 CommunicationTypeValues[] values()
for (CommunicationTypeValues c : CommunicationTypeValues.values()) System.out.println(c);