public enum SqlJetPagerJournalMode extends java.lang.Enum<SqlJetPagerJournalMode>
ISqlJetPager#setJournalMode()
.Enum Constant and Description |
---|
DELETE
Commit by deleting journal file
|
MEMORY
In-memory journal file
|
OFF
Journal omitted.
|
PERSIST
Commit by zeroing journal header
|
TRUNCATE
Commit by truncating journal
|
Modifier and Type | Method and Description |
---|---|
static SqlJetPagerJournalMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static SqlJetPagerJournalMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SqlJetPagerJournalMode DELETE
public static final SqlJetPagerJournalMode PERSIST
public static final SqlJetPagerJournalMode OFF
public static final SqlJetPagerJournalMode TRUNCATE
public static final SqlJetPagerJournalMode MEMORY
public static SqlJetPagerJournalMode[] values()
for (SqlJetPagerJournalMode c : SqlJetPagerJournalMode.values()) System.out.println(c);
public static SqlJetPagerJournalMode 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.