public enum SqlJetVdbeMemFlags extends java.lang.Enum<SqlJetVdbeMemFlags>
Enum Constant and Description |
---|
Agg
Mem.z points to an agg function context
|
Blob
Value is a BLOB
|
Dyn
Need to call sqliteFree() on Mem.z
|
Ephem
Mem.z points to an ephemeral string
|
Int
Value is an integer
|
Null
Value is NULL
|
Real
Value is a real number
|
RowSet
Value is a RowSet object
|
Static
Mem.z points to a static string
|
Str
Value is a string
|
Term
String rep is nul terminated
|
TypeMask
Mask of type bits
|
Zero
Mem.i contains count of 0s appended to blob
|
Modifier and Type | Method and Description |
---|---|
static SqlJetVdbeMemFlags |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static SqlJetVdbeMemFlags[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SqlJetVdbeMemFlags Null
public static final SqlJetVdbeMemFlags Str
public static final SqlJetVdbeMemFlags Int
public static final SqlJetVdbeMemFlags Real
public static final SqlJetVdbeMemFlags Blob
public static final SqlJetVdbeMemFlags RowSet
public static final SqlJetVdbeMemFlags TypeMask
public static final SqlJetVdbeMemFlags Term
public static final SqlJetVdbeMemFlags Dyn
public static final SqlJetVdbeMemFlags Static
public static final SqlJetVdbeMemFlags Ephem
public static final SqlJetVdbeMemFlags Agg
public static final SqlJetVdbeMemFlags Zero
public static SqlJetVdbeMemFlags[] values()
for (SqlJetVdbeMemFlags c : SqlJetVdbeMemFlags.values()) System.out.println(c);
public static SqlJetVdbeMemFlags 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.