org.osm2world.core.map_data.data.overlaps
public enum MapOverlapType extends Enum<MapOverlapType>
Enum Constant and Description |
---|
CONTAIN
the second
MapElement contains the first MapElement |
INTERSECT
two
MapElement s intersect |
SHARE_SEGMENT
|
Modifier and Type | Method and Description |
---|---|
static MapOverlapType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MapOverlapType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MapOverlapType INTERSECT
MapElement
s intersectpublic static final MapOverlapType CONTAIN
MapElement
contains the first MapElement
public static final MapOverlapType SHARE_SEGMENT
public static MapOverlapType[] values()
for (MapOverlapType c : MapOverlapType.values()) System.out.println(c);
public static MapOverlapType 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