Package oracle.jdbc
Enum Class SwitchableBugFix.BugNumber
- All Implemented Interfaces:
Serializable,Comparable<SwitchableBugFix.BugNumber>,Constable
- Enclosing class:
- SwitchableBugFix
Enumeration of bug numbers that can be used in
OracleConnection.CONNECTION_PROPERTY_DISABLED_BUG_FIXES system property.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionBug 11891661 - MAKE SETAUTOCOMMIT COMPLIANT TO THE SPEC.Bug 36125634 - JDBC TYPES.TIME NEEDS TO MAP TO A SQL TIMESTAMP INSTEAD OF SQL DATE. -
Method Summary
Modifier and TypeMethodDescriptionstatic SwitchableBugFix.BugNumberStatic method to parse aStringvalue toSwitchableBugFix.BugNumber.static SwitchableBugFix.BugNumberReturns the enum constant of this class with the specified name.static SwitchableBugFix.BugNumber[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
BUG_11891661
Bug 11891661 - MAKE SETAUTOCOMMIT COMPLIANT TO THE SPEC.Related connection property :
OracleConnection.CONNECTION_PROPERTY_AUTO_COMMIT_SPEC_COMPLIANT. -
BUG_36125634
Bug 36125634 - JDBC TYPES.TIME NEEDS TO MAP TO A SQL TIMESTAMP INSTEAD OF SQL DATE.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum class has no constant with the specified nameNullPointerException- if the argument is null
-
fromValue
Static method to parse a
Stringvalue toSwitchableBugFix.BugNumber.- Parameters:
value-Stringthe bug number where thebug_prefix is optional and case-insensitive- Returns:
SwitchableBugFix.BugNumber- Throws:
IllegalArgumentException- if the passed value is not in theSwitchableBugFix.BugNumberenum.
-