public static enum AbstractDatasetChangedEvent.DatasetEventType extends java.lang.Enum<AbstractDatasetChangedEvent.DatasetEventType>
AbstractDatasetChangedEvent.getType()
.Enum Constant and Description |
---|
CHANGESET_ID_CHANGED
The changeset id changed for a list of primitives
|
DATA_CHANGED
A combination of multiple events
|
NODE_MOVED
The lat/lon coordinates of a node have changed.
|
PRIMITIVE_FLAGS_CHANGED
The flags changed for a primitive and have not been covered in an other event
|
PRIMITIVES_ADDED
Primitives have been added to this dataset
|
PRIMITIVES_REMOVED
Primitives have been removed from this dataset
|
RELATION_MEMBERS_CHANGED
The members of a relation have changed
|
TAGS_CHANGED
The tags of a primitve have changed
|
WAY_NODES_CHANGED
The nodes of a way or their order has changed
|
Modifier and Type | Method and Description |
---|---|
static AbstractDatasetChangedEvent.DatasetEventType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AbstractDatasetChangedEvent.DatasetEventType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AbstractDatasetChangedEvent.DatasetEventType DATA_CHANGED
public static final AbstractDatasetChangedEvent.DatasetEventType NODE_MOVED
public static final AbstractDatasetChangedEvent.DatasetEventType PRIMITIVES_ADDED
public static final AbstractDatasetChangedEvent.DatasetEventType PRIMITIVES_REMOVED
public static final AbstractDatasetChangedEvent.DatasetEventType RELATION_MEMBERS_CHANGED
public static final AbstractDatasetChangedEvent.DatasetEventType TAGS_CHANGED
public static final AbstractDatasetChangedEvent.DatasetEventType WAY_NODES_CHANGED
public static final AbstractDatasetChangedEvent.DatasetEventType CHANGESET_ID_CHANGED
public static final AbstractDatasetChangedEvent.DatasetEventType PRIMITIVE_FLAGS_CHANGED
public static AbstractDatasetChangedEvent.DatasetEventType[] values()
for (AbstractDatasetChangedEvent.DatasetEventType c : AbstractDatasetChangedEvent.DatasetEventType.values()) System.out.println(c);
public static AbstractDatasetChangedEvent.DatasetEventType 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