public enum CheckReport extends Enum<CheckReport>
MetaParams| Enum Constant and Description |
|---|
EXCEPTION
Throw an EXCEPTION with the conflict message.
|
QUOTE_SQL_NAMES
Skip the check test and Quote all SQL columns, tables and alias names.
|
SKIP
Skip the check test.
|
WARNING
Log a WARNING with the conflict message.
|
| Modifier and Type | Method and Description |
|---|---|
static CheckReport |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CheckReport[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CheckReport SKIP
public static final CheckReport QUOTE_SQL_NAMES
public static final CheckReport WARNING
public static final CheckReport EXCEPTION
public static CheckReport[] values()
for (CheckReport c : CheckReport.values()) System.out.println(c);
public static CheckReport 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 nullCopyright 2013, Pavel Ponec