public enum DBFAlignment extends Enum<DBFAlignment>
Enum Constant and Description |
---|
LEFT
Data is aligned to the left (so padding data is appended to the string)
|
RIGHT
Data is aligned to the right(so padding data is preppended to the string)
|
Modifier and Type | Method and Description |
---|---|
static DBFAlignment |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DBFAlignment[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DBFAlignment LEFT
public static final DBFAlignment RIGHT
public static DBFAlignment[] values()
for (DBFAlignment c : DBFAlignment.values()) System.out.println(c);
public static DBFAlignment 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 nullCopyright © 2017. All rights reserved.