public enum CsvEscapeMode extends Enum<CsvEscapeMode>
Enum Constant and Description |
---|
BACKSLASH
反斜杠
|
DOUBLE_QUALIFIER
双限定文本
|
Modifier and Type | Method and Description |
---|---|
int |
getMode() |
static CsvEscapeMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CsvEscapeMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CsvEscapeMode DOUBLE_QUALIFIER
public static final CsvEscapeMode BACKSLASH
public static CsvEscapeMode[] values()
for (CsvEscapeMode c : CsvEscapeMode.values()) System.out.println(c);
public static CsvEscapeMode 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 int getMode()
Copyright © 2024. All rights reserved.