public enum SqlJetBtreeTableCreateFlags extends java.lang.Enum<SqlJetBtreeTableCreateFlags>
Enum Constant and Description |
---|
INTKEY
Table has only 64-bit signed integer keys
|
LEAFDATA
Data stored in leaves only.
|
ZERODATA
Table has keys only - no data
|
Modifier and Type | Method and Description |
---|---|
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.
|
public static final SqlJetBtreeTableCreateFlags INTKEY
public static final SqlJetBtreeTableCreateFlags ZERODATA
public static final SqlJetBtreeTableCreateFlags LEAFDATA
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 namejava.lang.NullPointerException
- if the argument is nullpublic static byte toByte(java.util.Set<SqlJetBtreeTableCreateFlags> flags)
public byte getValue()
public boolean hasFlag(int flags)
Copyright © 2009-2010 TMate Software Ltd. All Rights Reserved.