public enum SqlJetPagerFlags extends java.lang.Enum<SqlJetPagerFlags>
ISqlJetPager#open()
.
NOTE: This values must match the corresponding BTREE_ values in btree.h.Enum Constant and Description |
---|
NO_READLOCK
Omit readlocks on readonly files
|
OMIT_JOURNAL
Do not use a rollback journal
|
Modifier and Type | Method and Description |
---|---|
static SqlJetPagerFlags |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static SqlJetPagerFlags[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SqlJetPagerFlags OMIT_JOURNAL
public static final SqlJetPagerFlags NO_READLOCK
public static SqlJetPagerFlags[] values()
for (SqlJetPagerFlags c : SqlJetPagerFlags.values()) System.out.println(c);
public static SqlJetPagerFlags 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.