|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<SqlJetBtreeTableCreateFlags>
org.tmatesoft.sqljet.core.internal.SqlJetBtreeTableCreateFlags
public enum SqlJetBtreeTableCreateFlags
The flags parameter to sqlite3BtreeCreateTable can be the bitwise OR of the following flags:
Enum Constant Summary | |
---|---|
INTKEY
Table has only 64-bit signed integer keys |
|
LEAFDATA
Data stored in leaves only. |
|
ZERODATA
Table has keys only - no data |
Method Summary | |
---|---|
byte |
getValue()
|
boolean |
hasFlag(int flags)
|
static byte |
toByte(java.util.Set<SqlJetBtreeTableCreateFlags> flags)
|
static SqlJetBtreeTableCreateFlags |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static SqlJetBtreeTableCreateFlags[] |
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 SqlJetBtreeTableCreateFlags INTKEY
public static final SqlJetBtreeTableCreateFlags ZERODATA
public static final SqlJetBtreeTableCreateFlags LEAFDATA
Method Detail |
---|
public static SqlJetBtreeTableCreateFlags[] values()
for (SqlJetBtreeTableCreateFlags c : SqlJetBtreeTableCreateFlags.values()) System.out.println(c);
public static SqlJetBtreeTableCreateFlags 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 nullpublic static byte toByte(java.util.Set<SqlJetBtreeTableCreateFlags> flags)
public byte getValue()
public boolean hasFlag(int flags)
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |