public enum SQLiteOpenMode extends Enum<SQLiteOpenMode>
Enum Constant and Description |
---|
CREATE |
DELETEONCLOSE |
EXCLUSIVE |
FULLMUTEX |
MAIN_DB |
MAIN_JOURNAL |
MASTER_JOURNAL |
NOMUTEX |
OPEN_MEMORY |
OPEN_URI |
PRIVATECACHE |
READONLY |
READWRITE |
SHAREDCACHE |
SUBJOURNAL |
TEMP_DB |
TEMP_JOURNAL |
TRANSIENT_DB |
Modifier and Type | Field and Description |
---|---|
int |
flag |
Modifier and Type | Method and Description |
---|---|
static SQLiteOpenMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SQLiteOpenMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SQLiteOpenMode READONLY
public static final SQLiteOpenMode READWRITE
public static final SQLiteOpenMode CREATE
public static final SQLiteOpenMode DELETEONCLOSE
public static final SQLiteOpenMode EXCLUSIVE
public static final SQLiteOpenMode OPEN_URI
public static final SQLiteOpenMode OPEN_MEMORY
public static final SQLiteOpenMode MAIN_DB
public static final SQLiteOpenMode TEMP_DB
public static final SQLiteOpenMode TRANSIENT_DB
public static final SQLiteOpenMode MAIN_JOURNAL
public static final SQLiteOpenMode TEMP_JOURNAL
public static final SQLiteOpenMode SUBJOURNAL
public static final SQLiteOpenMode MASTER_JOURNAL
public static final SQLiteOpenMode NOMUTEX
public static final SQLiteOpenMode FULLMUTEX
public static final SQLiteOpenMode SHAREDCACHE
public static final SQLiteOpenMode PRIVATECACHE
public static SQLiteOpenMode[] values()
for (SQLiteOpenMode c : SQLiteOpenMode.values()) System.out.println(c);
public static SQLiteOpenMode valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullCopyright © 2017. All rights reserved.