public enum NodeType extends java.lang.Enum<NodeType>
Java class for NodeType.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="NodeType"> <restriction base="{http://www.w3.org/2001/XMLSchema}string"> <enumeration value="CENTER"/> <enumeration value="ROOF_CENTER"/> <enumeration value="ROOF_CORNER"/> <enumeration value="ROOF_SIDE"/> <enumeration value="ROOF_NEXT"/> <enumeration value="STREET_CORNER"/> <enumeration value="STREET_SIDE"/> <enumeration value="STREET_ENTRANCE"/> <enumeration value="ESCAPE_ZONE"/> </restriction> </simpleType>
Enum Constant and Description |
---|
CENTER |
ESCAPE_ZONE |
ROOF_CENTER |
ROOF_CORNER |
ROOF_NEXT |
ROOF_SIDE |
STREET_CORNER |
STREET_ENTRANCE |
STREET_SIDE |
Modifier and Type | Method and Description |
---|---|
static NodeType |
fromValue(java.lang.String v) |
java.lang.String |
value() |
static NodeType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static NodeType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final NodeType CENTER
public static final NodeType ROOF_CENTER
public static final NodeType ROOF_CORNER
public static final NodeType ROOF_SIDE
public static final NodeType ROOF_NEXT
public static final NodeType STREET_CORNER
public static final NodeType STREET_SIDE
public static final NodeType STREET_ENTRANCE
public static final NodeType ESCAPE_ZONE
public static NodeType[] values()
for (NodeType c : NodeType.values()) System.out.println(c);
public static NodeType 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 nullpublic java.lang.String value()
public static NodeType fromValue(java.lang.String v)