public enum CSVDelimiters extends Enum<CSVDelimiters>
Enum Constant and Description |
---|
COMMA |
SEMI_COLON |
TAB |
Modifier and Type | Method and Description |
---|---|
boolean |
equalsDelimiter(char delimiter) |
String |
toString() |
static CSVDelimiters |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CSVDelimiters[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CSVDelimiters COMMA
public static final CSVDelimiters SEMI_COLON
public static final CSVDelimiters TAB
public static CSVDelimiters[] values()
for (CSVDelimiters c : CSVDelimiters.values()) System.out.println(c);
public static CSVDelimiters 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 boolean equalsDelimiter(char delimiter)
public String toString()
toString
in class Enum<CSVDelimiters>
Copyright © 2024 Atlassian. All rights reserved.