private static enum DeleteAction.DeleteMode extends Enum<DeleteAction.DeleteMode>
Enum Constant and Description |
---|
node |
node_with_references |
none |
segment |
way |
way_with_nodes |
way_with_references |
Modifier and Type | Method and Description |
---|---|
Cursor |
cursor() |
static DeleteAction.DeleteMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DeleteAction.DeleteMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DeleteAction.DeleteMode none
public static final DeleteAction.DeleteMode segment
public static final DeleteAction.DeleteMode node
public static final DeleteAction.DeleteMode node_with_references
public static final DeleteAction.DeleteMode way
public static final DeleteAction.DeleteMode way_with_references
public static final DeleteAction.DeleteMode way_with_nodes
public static DeleteAction.DeleteMode[] values()
for (DeleteAction.DeleteMode c : DeleteAction.DeleteMode.values()) System.out.println(c);
public static DeleteAction.DeleteMode 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 null