public static enum MatrixExporter.Format extends Enum<MatrixExporter.Format>
MatrixExporter
exporter.Enum Constant and Description |
---|
SPARSE_ADJACENCY_MATRIX
A sparse representation of the adjacency matrix.
|
SPARSE_LAPLACIAN_MATRIX
A sparse representation of the Laplacian.
|
SPARSE_NORMALIZED_LAPLACIAN_MATRIX
A sparse representation of the normalized Laplacian.
|
Modifier and Type | Method and Description |
---|---|
static MatrixExporter.Format |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MatrixExporter.Format[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MatrixExporter.Format SPARSE_ADJACENCY_MATRIX
public static final MatrixExporter.Format SPARSE_LAPLACIAN_MATRIX
public static final MatrixExporter.Format SPARSE_NORMALIZED_LAPLACIAN_MATRIX
public static MatrixExporter.Format[] values()
for (MatrixExporter.Format c : MatrixExporter.Format.values()) System.out.println(c);
public static MatrixExporter.Format 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 © 2017. All rights reserved.