public static enum SwitchableBugFix.BugNumber extends java.lang.Enum<SwitchableBugFix.BugNumber>
Enumeration of bug numbers that can be used in
OracleConnection.CONNECTION_PROPERTY_DISABLED_BUG_FIXES
system property.
Enum Constant and Description |
---|
BUG_11891661
Bug 11891661 - MAKE SETAUTOCOMMIT COMPLIANT TO THE SPEC. |
BUG_36125634
Bug 36125634 - JDBC TYPES.TIME NEEDS TO MAP TO A SQL TIMESTAMP INSTEAD OF SQL DATE. |
Modifier and Type | Method and Description |
---|---|
static SwitchableBugFix.BugNumber |
fromValue(java.lang.String value)
Static method to parse a
String value to SwitchableBugFix.BugNumber . |
static SwitchableBugFix.BugNumber |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static SwitchableBugFix.BugNumber[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SwitchableBugFix.BugNumber BUG_11891661
Bug 11891661 - MAKE SETAUTOCOMMIT COMPLIANT TO THE SPEC.
Related connection property : OracleConnection.CONNECTION_PROPERTY_AUTO_COMMIT_SPEC_COMPLIANT
.
public static final SwitchableBugFix.BugNumber BUG_36125634
Bug 36125634 - JDBC TYPES.TIME NEEDS TO MAP TO A SQL TIMESTAMP INSTEAD OF SQL DATE.
public static SwitchableBugFix.BugNumber[] values()
for (SwitchableBugFix.BugNumber c : SwitchableBugFix.BugNumber.values()) System.out.println(c);
public static SwitchableBugFix.BugNumber 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 SwitchableBugFix.BugNumber fromValue(java.lang.String value) throws java.lang.IllegalArgumentException
Static method to parse a String
value to SwitchableBugFix.BugNumber
.
value
- String
the bug number where the bug_
prefix is optional and case-insensitiveSwitchableBugFix.BugNumber
java.lang.IllegalArgumentException
- if the passed value is not in the SwitchableBugFix.BugNumber
enum.