public enum SqlJetValueType extends java.lang.Enum<SqlJetValueType>
Enum Constant and Description |
---|
BLOB
Blob value
|
FLOAT
64-bit IEEE floating point number
|
INTEGER
64-bit signed integer
|
NULL
Null value
|
TEXT
String value
|
Modifier and Type | Method and Description |
---|---|
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.
|
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
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 namejava.lang.NullPointerException
- if the argument is nullCopyright © 2009-2010 TMate Software Ltd. All Rights Reserved.