Module org.firebirdsql.jaybird
Package org.firebirdsql.jaybird.xca
Enum Class XcaConnectionEvent.EventType
java.lang.Object
java.lang.Enum<XcaConnectionEvent.EventType>
org.firebirdsql.jaybird.xca.XcaConnectionEvent.EventType
- All Implemented Interfaces:
Serializable
,Comparable<XcaConnectionEvent.EventType>
,Constable
- Enclosing class:
- XcaConnectionEvent
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionEvent notification that an application component has closed the connection.Event notification that an error occurred on the connection. -
Method Summary
Modifier and TypeMethodDescriptionstatic XcaConnectionEvent.EventType
Returns the enum constant of this class with the specified name.static XcaConnectionEvent.EventType[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
CONNECTION_CLOSED
Event notification that an application component has closed the connection. -
CONNECTION_ERROR_OCCURRED
Event notification that an error occurred on the connection. This event indicates that the managed connection instance is now invalid and unusable.
-
-
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
-