@Deprecated public enum QuirksMode extends Enum<QuirksMode>
Quirks
.Enum Constant and Description |
---|
DB2
Deprecated.
|
MSSqlServer
Deprecated.
|
None
Deprecated.
|
PostgreSQL
Deprecated.
|
Modifier and Type | Method and Description |
---|---|
static QuirksMode |
valueOf(String name)
Deprecated.
Returns the enum constant of this type with the specified name.
|
static QuirksMode[] |
values()
Deprecated.
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final QuirksMode None
public static final QuirksMode DB2
public static final QuirksMode PostgreSQL
public static final QuirksMode MSSqlServer
public final Quirks quirks
public static QuirksMode[] values()
for (QuirksMode c : QuirksMode.values()) System.out.println(c);
public static QuirksMode 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 © 2014. All rights reserved.