public enum OutputModificator extends java.lang.Enum<OutputModificator>
| Enum Constant and Description |
|---|
BB
Adds the bounding box of each element to the element.
|
CENTER
This adds the center of the above mentioned bounding box to ways and relations.
|
GEOM
Add the full geometry to each object.
|
| Modifier and Type | Method and Description |
|---|---|
static OutputModificator |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static OutputModificator[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final OutputModificator BB
public static final OutputModificator CENTER
public static final OutputModificator GEOM
public static OutputModificator[] values()
for (OutputModificator c : OutputModificator.values()) System.out.println(c);
public static OutputModificator 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