public enum DatabaseConnectorMode extends java.lang.Enum<DatabaseConnectorMode>
Enum Constant and Description |
---|
COLUMN_BASED_INCREMENTAL_SYNCHRONIZATION |
FULL_SYNCHRONIZATION |
JDBC_COMPATIBLE |
QUERY_BASED_INCREMENTAL_SYNCHRONIZATION |
TRIGGER_BASED_INCREMENTAL_SYNCHRONIZATION |
Modifier and Type | Method and Description |
---|---|
static void |
checkThat(boolean predicate,
java.lang.String errorMessage) |
static DatabaseConnectorMode |
fromString(java.lang.String s) |
abstract java.lang.String |
getPublicId() |
void |
validateConfiguration(DatabaseConnectorConfig config) |
static DatabaseConnectorMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static DatabaseConnectorMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DatabaseConnectorMode JDBC_COMPATIBLE
public static final DatabaseConnectorMode FULL_SYNCHRONIZATION
public static final DatabaseConnectorMode QUERY_BASED_INCREMENTAL_SYNCHRONIZATION
public static final DatabaseConnectorMode COLUMN_BASED_INCREMENTAL_SYNCHRONIZATION
public static final DatabaseConnectorMode TRIGGER_BASED_INCREMENTAL_SYNCHRONIZATION
public static DatabaseConnectorMode[] values()
for (DatabaseConnectorMode c : DatabaseConnectorMode.values()) System.out.println(c);
public static DatabaseConnectorMode 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 void checkThat(boolean predicate, java.lang.String errorMessage)
public void validateConfiguration(DatabaseConnectorConfig config)
public abstract java.lang.String getPublicId()
public static DatabaseConnectorMode fromString(java.lang.String s)
Copyright © 2013 Dassault Systèmes, All Rights Reserved.