public static enum Database.FileFormat extends Enum<Database.FileFormat>
Enum Constant and Description |
---|
MSISAM |
V1997 |
V2000 |
V2003 |
V2007 |
V2010 |
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 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
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–2015. All rights reserved.