public enum IntegrationPointKind extends Enum<IntegrationPointKind>
It use usually preferable to connect to the Integrity server directly. However note that extracting or injecting attachments requires to connect to an Integrity local client.
Options.OPTION_INTEGRATION_POINT_KIND
Enum Constant and Description |
---|
LOCAL
The connection is performed on the local Integrity client.
|
SERVER
The connection is performed on the Integrity server directly.
|
Modifier and Type | Method and Description |
---|---|
static IntegrationPointKind |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static IntegrationPointKind[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final IntegrationPointKind SERVER
Options.OPTION_SERVER
.Options.OPTION_SERVER
public static final IntegrationPointKind LOCAL
public static IntegrationPointKind[] values()
for (IntegrationPointKind c : IntegrationPointKind.values()) System.out.println(c);
public static IntegrationPointKind valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null