public static enum CSVFormat.Parameter extends Enum<CSVFormat.Parameter>
Enum Constant and Description |
---|
EDGE_WEIGHTS
Whether to import/export edge weights.
|
MATRIX_FORMAT_NODEID
Whether to import/export node ids.
|
MATRIX_FORMAT_ZERO_WHEN_NO_EDGE
Whether the input/output contains zero for missing edges.
|
Modifier and Type | Method and Description |
---|---|
static CSVFormat.Parameter |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CSVFormat.Parameter[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CSVFormat.Parameter EDGE_WEIGHTS
public static final CSVFormat.Parameter MATRIX_FORMAT_NODEID
MATRIX
format.public static final CSVFormat.Parameter MATRIX_FORMAT_ZERO_WHEN_NO_EDGE
MATRIX
format.public static CSVFormat.Parameter[] values()
for (CSVFormat.Parameter c : CSVFormat.Parameter.values()) System.out.println(c);
public static CSVFormat.Parameter 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 © 2019. All rights reserved.