public enum OutputVerbosity extends java.lang.Enum<OutputVerbosity>
| Enum Constant and Description |
|---|
BODY
Print all information necessary to use the data.
|
IDS
Print only the ids of the elements
|
META
Print everything known about the elements.
|
SKEL
Print also the information necessary for geometry.
|
TAGS
Print only ids and tags for each element and not coordinates or members.
|
| Modifier and Type | Method and Description |
|---|---|
static OutputVerbosity |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static OutputVerbosity[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final OutputVerbosity IDS
public static final OutputVerbosity SKEL
public static final OutputVerbosity BODY
public static final OutputVerbosity TAGS
public static final OutputVerbosity META
public static OutputVerbosity[] values()
for (OutputVerbosity c : OutputVerbosity.values()) System.out.println(c);
public static OutputVerbosity valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null