public static enum Database.FileFormat extends Enum<Database.FileFormat>
Enum Constant and Description |
---|
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+
|
V2016
A database which was created by MS Access 2016+
|
V2019
A database which was created by MS Access 2019+ (Office 365)
|
Modifier and Type | Method and Description |
---|---|
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.
|
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 V2016
public static final Database.FileFormat V2019
public static final Database.FileFormat MSISAM
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 nameNullPointerException
- if the argument is nullpublic String getFileExtension()
public String toString()
toString
in class Enum<Database.FileFormat>
Copyright © 2005–2024 OpenHMS. All rights reserved.