public enum IntersectType extends java.lang.Enum<IntersectType>
Modified by: Joseph A. Huwaldt
Enum Constant and Description |
---|
COINCIDENT
The objects are coincident (the entire object intersects).
|
DISJOINT
There is no intersection.
|
INTERSECT
There is at least one intersection.
|
Modifier and Type | Method and Description |
---|---|
static IntersectType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static IntersectType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final IntersectType DISJOINT
public static final IntersectType INTERSECT
public static final IntersectType COINCIDENT
public static IntersectType[] values()
for (IntersectType c : IntersectType.values()) System.out.println(c);
public static IntersectType 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