public static enum Geometry.PolygonIntersection extends java.lang.Enum<Geometry.PolygonIntersection>
Enum Constant and Description |
---|
CROSSING |
FIRST_INSIDE_SECOND |
OUTSIDE |
SECOND_INSIDE_FIRST |
Modifier and Type | Method and Description |
---|---|
static Geometry.PolygonIntersection |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Geometry.PolygonIntersection[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Geometry.PolygonIntersection FIRST_INSIDE_SECOND
public static final Geometry.PolygonIntersection SECOND_INSIDE_FIRST
public static final Geometry.PolygonIntersection OUTSIDE
public static final Geometry.PolygonIntersection CROSSING
public static Geometry.PolygonIntersection[] values()
for (Geometry.PolygonIntersection c : Geometry.PolygonIntersection.values()) System.out.println(c);
public static Geometry.PolygonIntersection 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