Enum IntegrationPointKind
- java.lang.Object
-
- java.lang.Enum<IntegrationPointKind>
-
- com.sodius.mdw.metamodel.integrity.io.IntegrationPointKind
-
- All Implemented Interfaces:
Serializable
,Comparable<IntegrationPointKind>
public enum IntegrationPointKind extends Enum<IntegrationPointKind>
Determines whether access to the Integrity database is performed on the Integrity server or using an Integrity local client.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.
- See Also:
Options.OPTION_INTEGRATION_POINT_KIND
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method 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.
-
-
-
Enum Constant Detail
-
SERVER
public static final IntegrationPointKind SERVER
The connection is performed on the Integrity server directly. The server connection is to be configured usingOptions.OPTION_SERVER
.- See Also:
Options.OPTION_SERVER
-
LOCAL
public static final IntegrationPointKind LOCAL
The connection is performed on the local Integrity client.
-
-
Method Detail
-
values
public static IntegrationPointKind[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (IntegrationPointKind c : IntegrationPointKind.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static IntegrationPointKind valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
-