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