|
SQLJet Home | ||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<SqlJetValueType>
org.tmatesoft.sqljet.core.SqlJetValueType
public enum SqlJetValueType
Fundamental Datatypes. Every value in SQLJet has one of five fundamental datatypes:
Enum Constant Summary | |
---|---|
BLOB
Blob value |
|
FLOAT
64-bit IEEE floating point number |
|
INTEGER
64-bit signed integer |
|
NULL
Null value |
|
TEXT
String value |
Method Summary | |
---|---|
static SqlJetValueType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static SqlJetValueType[] |
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 |
---|
public static final SqlJetValueType INTEGER
public static final SqlJetValueType FLOAT
public static final SqlJetValueType TEXT
public static final SqlJetValueType BLOB
public static final SqlJetValueType NULL
Method Detail |
---|
public static SqlJetValueType[] values()
for (SqlJetValueType c : SqlJetValueType.values()) System.out.println(c);
public static SqlJetValueType valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.
java.lang.IllegalArgumentException
- if this enum type has no constant
with the specified name
java.lang.NullPointerException
- if the argument is null
|
SQLJet Home | ||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |