org.jboss.dna.common.jdbc.model.api
Enum ResultSetHoldabilityType

java.lang.Object
  extended by java.lang.Enum<ResultSetHoldabilityType>
      extended by org.jboss.dna.common.jdbc.model.api.ResultSetHoldabilityType
All Implemented Interfaces:
Serializable, Comparable<ResultSetHoldabilityType>

public enum ResultSetHoldabilityType
extends Enum<ResultSetHoldabilityType>

Provides all supported database result set holdability types as enumeration set.

Since:
1.4 (JDBC 3.0)
Author:
Sergiy Litsenko

Enum Constant Summary
CLOSE_CURSORS_AT_COMMIT
           
HOLD_CURSORS_OVER_COMMIT
           
 
Method Summary
 int getHoldability()
           
 String getName()
           
static ResultSetHoldabilityType valueOf(String name)
          Returns the enum constant of this type with the specified name.
static ResultSetHoldabilityType[] values()
          Returns an array containing the constants of this enum type, in the order they're declared.
 
Methods inherited from class java.lang.Enum
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

HOLD_CURSORS_OVER_COMMIT

public static final ResultSetHoldabilityType HOLD_CURSORS_OVER_COMMIT

CLOSE_CURSORS_AT_COMMIT

public static final ResultSetHoldabilityType CLOSE_CURSORS_AT_COMMIT
Method Detail

values

public static final ResultSetHoldabilityType[] values()
Returns an array containing the constants of this enum type, in the order they're declared. This method may be used to iterate over the constants as follows:
for(ResultSetHoldabilityType c : ResultSetHoldabilityType.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they're declared

valueOf

public static ResultSetHoldabilityType valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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 type has no constant with the specified name

getHoldability

public int getHoldability()

getName

public String getName()


Copyright © 2008-Present JBoss a division of Red Hat. All Rights Reserved.