|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||
java.lang.Objectjava.lang.Enum<CheckReport>
org.ujorm.orm.ao.CheckReport
public enum CheckReport
How to use the report of any check message?
MetaParams| Enum Constant Summary | |
|---|---|
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. |
|
| Method Summary | |
|---|---|
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. |
| Methods inherited from class java.lang.Enum |
|---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
| Methods inherited from class java.lang.Object |
|---|
getClass, notify, notifyAll, wait, wait, wait |
| Enum Constant Detail |
|---|
public static final CheckReport SKIP
public static final CheckReport QUOTE_SQL_NAMES
public static final CheckReport WARNING
public static final CheckReport EXCEPTION
| Method Detail |
|---|
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 name
NullPointerException - if the argument is null
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||