|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||
java.lang.Objectjava.lang.Enum<Database.FileFormat>
com.healthmarketscience.jackcess.Database.FileFormat
public static enum Database.FileFormat
Enum which indicates which version of Access created the database.
| Enum Constant Summary | |
|---|---|
GENERIC_JET4
A database which was most likely created programmatically (e.g. |
|
MSISAM
A database which was created by MS Money |
|
V1997
A database which was created by MS Access 97 |
|
V2000
A database which was created by MS Access 2000 |
|
V2003
A database which was created by MS Access 2002/2003 |
|
V2007
A database which was created by MS Access 2007 |
|
V2010
A database which was created by MS Access 2010+ |
|
| Method Summary | |
|---|---|
String |
getFileExtension()
|
String |
toString()
|
static Database.FileFormat |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static Database.FileFormat[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
| Methods inherited from class java.lang.Enum |
|---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, valueOf |
| Methods inherited from class java.lang.Object |
|---|
getClass, notify, notifyAll, wait, wait, wait |
| Enum Constant Detail |
|---|
public static final Database.FileFormat V1997
public static final Database.FileFormat GENERIC_JET4
public static final Database.FileFormat V2000
public static final Database.FileFormat V2003
public static final Database.FileFormat V2007
public static final Database.FileFormat V2010
public static final Database.FileFormat MSISAM
| Method Detail |
|---|
public static Database.FileFormat[] values()
for (Database.FileFormat c : Database.FileFormat.values()) System.out.println(c);
public static Database.FileFormat valueOf(String name)
name - the name of the enum constant to be returned.
IllegalArgumentException - if this enum type has no constant
with the specified name
NullPointerException - if the argument is nullpublic String getFileExtension()
public String toString()
toString in class Enum<Database.FileFormat>
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||