|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<FileWriterSettings.quoteMode>
org.knime.base.node.io.csvwriter.FileWriterSettings.quoteMode
public static enum FileWriterSettings.quoteMode
mode specifying how to quote the data.
Enum Constant Summary | |
---|---|
ALWAYS
always put quotes around the data. |
|
IF_NEEDED
use quotes only if needed. |
|
REPLACE
don't use quotes, replace separator pattern in data. |
|
STRINGS
use quotes always on non-numerical data. |
Method Summary | |
---|---|
static FileWriterSettings.quoteMode |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static FileWriterSettings.quoteMode[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final FileWriterSettings.quoteMode IF_NEEDED
public static final FileWriterSettings.quoteMode STRINGS
public static final FileWriterSettings.quoteMode ALWAYS
public static final FileWriterSettings.quoteMode REPLACE
Method Detail |
---|
public static FileWriterSettings.quoteMode[] values()
for (FileWriterSettings.quoteMode c : FileWriterSettings.quoteMode.values()) System.out.println(c);
public static FileWriterSettings.quoteMode valueOf(String name)
name
- the name of the enum constant to be returned.
IllegalArgumentException
- if this enum type has no constant
with the specified name
NullPointerException
- if the argument is null
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |