public enum ColumnSeparator extends Enum<ColumnSeparator>
| Modifier and Type | Field and Description |
|---|---|
static ColumnSeparator |
DEFAULT
default Line
|
| Modifier and Type | Method and Description |
|---|---|
static ColumnSeparator |
getFromName(String name)
searches the enumeration for the given name, case insensitive
|
static ColumnSeparator |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ColumnSeparator[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ColumnSeparator Hide
public static final ColumnSeparator Dot
public static final ColumnSeparator Line
public static final ColumnSeparator ShortLine
public static ColumnSeparator DEFAULT
public static ColumnSeparator[] values()
for (ColumnSeparator c : ColumnSeparator.values()) System.out.println(c);
public static ColumnSeparator 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 static ColumnSeparator getFromName(String name)
name - nameCopyright © 2018. All rights reserved.