public enum Separators extends Enum<Separators>
Enum Constant and Description |
---|
COLON
Unix-style colon separated values, with backslash escape character.
|
COMMA
Comma separated values, with support for quoted literal strings.
|
TAB
Tab separated values, with support for quoted literal strings.
|
Modifier and Type | Method and Description |
---|---|
Separator |
getSeparator()
Returns the
Separator specification that the enum constant represents. |
static Separators |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Separators[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Separators COLON
public static final Separators COMMA
public static final Separators TAB
public static Separators[] values()
for (Separators c : Separators.values()) System.out.println(c);
public static Separators 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 © 2025 Open Identity Platform Community. All rights reserved.