public static enum GmlExporter.Parameter extends Enum<GmlExporter.Parameter>
GmlExporter
exporter.Enum Constant and Description |
---|
ESCAPE_STRINGS_AS_JAVA
If set the exporter escapes all strings as Java strings, otherwise no escaping is
performed.
|
EXPORT_EDGE_LABELS
If set the exporter outputs edge labels
|
EXPORT_EDGE_WEIGHTS
If set the exporter outputs edge weights
|
EXPORT_VERTEX_LABELS
If set the exporter outputs vertex labels
|
Modifier and Type | Method and Description |
---|---|
static GmlExporter.Parameter |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static GmlExporter.Parameter[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GmlExporter.Parameter EXPORT_EDGE_LABELS
public static final GmlExporter.Parameter EXPORT_VERTEX_LABELS
public static final GmlExporter.Parameter EXPORT_EDGE_WEIGHTS
public static final GmlExporter.Parameter ESCAPE_STRINGS_AS_JAVA
public static GmlExporter.Parameter[] values()
for (GmlExporter.Parameter c : GmlExporter.Parameter.values()) System.out.println(c);
public static GmlExporter.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.