Enum SQLStateType

  • All Implemented Interfaces:
    java.io.Serializable, java.lang.Comparable<SQLStateType>

    public enum SQLStateType
    extends java.lang.Enum<SQLStateType>
    Enum interpretation of the valid values from DatabaseMetaData.getSQLStateType()
    • Enum Constant Summary

      Enum Constants 
      Enum Constant Description
      SQL99
      The reported codes follow the SQL spec
      UNKNOWN
      It is unknown.
      XOpen
      The reported codes follow the X/Open spec
    • Method Summary

      All Methods Static Methods Concrete Methods 
      Modifier and Type Method Description
      static SQLStateType interpretReportedSQLStateType​(int sqlStateType)  
      static SQLStateType valueOf​(java.lang.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 are declared.
      • Methods inherited from class java.lang.Enum

        clone, compareTo, equals, finalize, 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
        The reported codes follow the X/Open spec
      • SQL99

        public static final SQLStateType SQL99
        The reported codes follow the SQL spec
      • UNKNOWN

        public static final SQLStateType UNKNOWN
        It is unknown. Might follow another spec completely, or be a mixture.
    • Method Detail

      • values

        public static SQLStateType[] values()
        Returns an array containing the constants of this enum type, in the order they are 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 are declared
      • valueOf

        public static SQLStateType valueOf​(java.lang.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:
        java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
        java.lang.NullPointerException - if the argument is null
      • interpretReportedSQLStateType

        public static SQLStateType interpretReportedSQLStateType​(int sqlStateType)