public enum DbfDataType extends java.lang.Enum<DbfDataType>
| Enum Constant and Description |
|---|
CHAR |
DATE |
FLOAT |
LOGICAL |
MEMO |
NUMERIC |
| Modifier and Type | Field and Description |
|---|---|
byte |
byteValue |
| Modifier and Type | Method and Description |
|---|---|
static DbfDataType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static DbfDataType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DbfDataType CHAR
public static final DbfDataType DATE
public static final DbfDataType FLOAT
public static final DbfDataType LOGICAL
public static final DbfDataType MEMO
public static final DbfDataType NUMERIC
public static DbfDataType[] values()
for (DbfDataType c : DbfDataType.values()) System.out.println(c);
public static DbfDataType 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 null