org.openstreetmap.josm.gui.tagging
Enum TaggingPreset.PresetType
java.lang.Object
java.lang.Enum<TaggingPreset.PresetType>
org.openstreetmap.josm.gui.tagging.TaggingPreset.PresetType
- All Implemented Interfaces:
- java.io.Serializable, java.lang.Comparable<TaggingPreset.PresetType>
- Enclosing class:
- TaggingPreset
public static enum TaggingPreset.PresetType
- extends java.lang.Enum<TaggingPreset.PresetType>
Field Summary |
private java.lang.String |
iconName
|
Methods inherited from class java.lang.Enum |
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
getClass, notify, notifyAll, wait, wait, wait |
NODE
public static final TaggingPreset.PresetType NODE
WAY
public static final TaggingPreset.PresetType WAY
RELATION
public static final TaggingPreset.PresetType RELATION
CLOSEDWAY
public static final TaggingPreset.PresetType CLOSEDWAY
iconName
private final java.lang.String iconName
values
public static TaggingPreset.PresetType[] values()
- Returns an array containing the constants of this enum type, in
the order they are declared. This method may be used to iterate
over the constants as follows:
for (TaggingPreset.PresetType c : TaggingPreset.PresetType.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they are declared
valueOf
public static TaggingPreset.PresetType valueOf(java.lang.String name)
- Returns the enum constant of this type with the specified name.
The string must match exactly an identifier used to declare an
enum constant in this type. (Extraneous whitespace characters are
not permitted.)
- Parameters:
name
- the name of the enum constant to be returned.
- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException
- if this enum type has no constant
with the specified name
java.lang.NullPointerException
- if the argument is null
getIconName
public java.lang.String getIconName()
getName
public java.lang.String getName()
forPrimitive
public static TaggingPreset.PresetType forPrimitive(OsmPrimitive p)
forPrimitiveType
public static TaggingPreset.PresetType forPrimitiveType(OsmPrimitiveType type)
JOSM