public static enum Component2D.WithinRelation extends Enum<Component2D.WithinRelation>
Enum Constant and Description |
---|
CANDIDATE
If the shape is a candidate for within.
|
DISJOINT
The query shape is disjoint with the triangle.
|
NOTWITHIN
The query shape intersects an edge that does belong to the original shape or any point of
the triangle is inside the shape.
|
Modifier and Type | Method and Description |
---|---|
static Component2D.WithinRelation |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Component2D.WithinRelation[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Component2D.WithinRelation CANDIDATE
public static final Component2D.WithinRelation NOTWITHIN
public static final Component2D.WithinRelation DISJOINT
public static Component2D.WithinRelation[] values()
for (Component2D.WithinRelation c : Component2D.WithinRelation.values()) System.out.println(c);
public static Component2D.WithinRelation 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 nullCopyright © 2000-2021 Apache Software Foundation. All Rights Reserved.