public enum FileDataSplitter extends Enum<FileDataSplitter> implements Serializable
| Enum Constant and Description |
|---|
CSV
The csv.
|
GEOJSON
The geojson.
|
TSV
The tsv.
|
WKT
The wkt.
|
| Modifier and Type | Method and Description |
|---|---|
String |
getDelimiter()
Gets the delimiter.
|
static FileDataSplitter |
getFileDataSplitter(String str)
Gets the file data splitter.
|
static FileDataSplitter |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FileDataSplitter[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FileDataSplitter CSV
public static final FileDataSplitter TSV
public static final FileDataSplitter GEOJSON
public static final FileDataSplitter WKT
public static FileDataSplitter[] values()
for (FileDataSplitter c : FileDataSplitter.values()) System.out.println(c);
public static FileDataSplitter 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 FileDataSplitter getFileDataSplitter(String str)
str - the strpublic String getDelimiter()
Copyright © 2017. All rights reserved.