public static enum CsvDestination.AppendStrategy extends Enum<CsvDestination.AppendStrategy>
OVERWRITE
means that the file
is overwritten, RENAME
means that the current output file is renamed by adding a number-based
suffix and APPEND
is for appending new results to the original file.Enum Constant and Description |
---|
APPEND
The measurements are appended to the original file.
|
OVERWRITE
The original file is overwritten.
|
RENAME
The original file is left alone but the output file is renamed according to a number-based pattern.
|
Modifier and Type | Method and Description |
---|---|
static CsvDestination.AppendStrategy |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CsvDestination.AppendStrategy[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CsvDestination.AppendStrategy OVERWRITE
public static final CsvDestination.AppendStrategy RENAME
public static final CsvDestination.AppendStrategy APPEND
public static CsvDestination.AppendStrategy[] values()
for (CsvDestination.AppendStrategy c : CsvDestination.AppendStrategy.values()) System.out.println(c);
public static CsvDestination.AppendStrategy 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 © 2010–2017 PerfCake Community. All rights reserved.