public static enum LemonExporter.Parameter extends Enum<LemonExporter.Parameter>
LemonExporter
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_WEIGHTS
If set the exporter outputs edge weights
|
Modifier and Type | Method and Description |
---|---|
static LemonExporter.Parameter |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static LemonExporter.Parameter[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LemonExporter.Parameter EXPORT_EDGE_WEIGHTS
public static final LemonExporter.Parameter ESCAPE_STRINGS_AS_JAVA
public static LemonExporter.Parameter[] values()
for (LemonExporter.Parameter c : LemonExporter.Parameter.values()) System.out.println(c);
public static LemonExporter.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.