public enum SqlJetFileType extends java.lang.Enum<SqlJetFileType>
Enum Constant and Description |
---|
MAIN_DB |
MAIN_JOURNAL |
MASTER_JOURNAL |
SUBJOURNAL |
TEMP_DB |
TEMP_JOURNAL |
TRANSIENT_DB |
Modifier and Type | Method and Description |
---|---|
static SqlJetFileType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static SqlJetFileType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SqlJetFileType MAIN_DB
public static final SqlJetFileType TEMP_DB
public static final SqlJetFileType TRANSIENT_DB
public static final SqlJetFileType MAIN_JOURNAL
public static final SqlJetFileType TEMP_JOURNAL
public static final SqlJetFileType SUBJOURNAL
public static final SqlJetFileType MASTER_JOURNAL
public static SqlJetFileType[] values()
for (SqlJetFileType c : SqlJetFileType.values()) System.out.println(c);
public static SqlJetFileType 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.