public enum DbfVersion extends java.lang.Enum<DbfVersion>
Copyright 2006 Partner Software, Inc.
| Enum Constant and Description |
|---|
DBT |
FOXBASE |
NO_DBT |
VISUAL_FOXPRO |
| Modifier and Type | Method and Description |
|---|---|
byte |
getCode() |
java.lang.String |
getName() |
java.lang.String |
toString() |
static DbfVersion |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static DbfVersion[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
static DbfVersion |
versionForCode(byte code) |
static DbfVersion |
versionForName(java.lang.String name) |
public static final DbfVersion FOXBASE
public static final DbfVersion NO_DBT
public static final DbfVersion VISUAL_FOXPRO
public static final DbfVersion DBT
public static DbfVersion[] values()
for (DbfVersion c : DbfVersion.values()) System.out.println(c);
public static DbfVersion 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 nullpublic java.lang.String getName()
public byte getCode()
public java.lang.String toString()
toString in class java.lang.Enum<DbfVersion>public static DbfVersion versionForName(java.lang.String name)
public static DbfVersion versionForCode(byte code)