public enum ClientType extends java.lang.Enum<ClientType>
Enum Constant and Description |
---|
CLR
A .NET Client
|
ECI_V2
An ECI version 2 client
|
Java
A remote mode Java client
|
JSON
A JSON client
|
Modifier and Type | Method and Description |
---|---|
static ClientType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ClientType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ClientType Java
public static final ClientType CLR
public static final ClientType ECI_V2
public static final ClientType JSON
public static ClientType[] values()
for (ClientType c : ClientType.values()) System.out.println(c);
public static ClientType 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 null