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

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

public enum SQLStateType
extends Enum<SQLStateType>

Provides all supported database SQL types as enumeration set.

Since:
1.4 (JDBC 3.0)
Author:
Sergiy Litsenko

Enum Constant Summary
SQL99
           
XOPEN
           
 
Method Summary
 String getName()
           
 int getState()
           
static SQLStateType valueOf(String name)
          Returns the enum constant of this type with the specified name.
static SQLStateType[] 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

XOPEN

public static final SQLStateType XOPEN

SQL99

public static final SQLStateType SQL99
Method Detail

values

public static final SQLStateType[] 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(SQLStateType c : SQLStateType.values())
    System.out.println(c);

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

valueOf

public static SQLStateType 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

getState

public int getState()

getName

public String getName()


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