org.ojalgo.type
Enum SQL

java.lang.Object
  extended by java.lang.Enum<SQL>
      extended by org.ojalgo.type.SQL
All Implemented Interfaces:
Serializable, Comparable<SQL>

public enum SQL
extends Enum<SQL>


Enum Constant Summary
BIGINT
           BIGINT
BINARY
           VARBINARY LONGVARBINARY BINARY LONG BINARY IMAGE UNIQUEIDENTIFIER
BIT
           BIT
CHARACTER
           VARCHAR LONGVARCHAR CHARACTER CHAR TEXT UNIQUEIDENTIFIERSTR
DATE
           DATE
DECIMAL
           DECIMAL NUMERIC MONEY SMALLMONEY
DOUBLE
           DOUBLE FLOAT DOUBLE PRECISION
INTEGER
           INTEGER INT
REAL
           REAL
SMALLINT
           SMALLINT
TIME
           TIME
TIMESTAMP
           TIMESTAMP DATETIME SMALLDATETIME
TINYINT
           TINYINT
 
Method Summary
 Class<?> getJavaClass()
           
static SQL valueOf(String name)
          Returns the enum constant of this type with the specified name.
static SQL[] 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

BIGINT

public static final SQL BIGINT


BINARY

public static final SQL BINARY


BIT

public static final SQL BIT


CHARACTER

public static final SQL CHARACTER


DATE

public static final SQL DATE


DECIMAL

public static final SQL DECIMAL


DOUBLE

public static final SQL DOUBLE


INTEGER

public static final SQL INTEGER


REAL

public static final SQL REAL


SMALLINT

public static final SQL SMALLINT


TIME

public static final SQL TIME


TIMESTAMP

public static final SQL TIMESTAMP


TINYINT

public static final SQL TINYINT

Method Detail

values

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

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

valueOf

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

getJavaClass

public final Class<?> getJavaClass()