public enum PointRelation extends Enum<PointRelation>
Enum Constant and Description |
---|
BORDER
The point is on the border of the area.
|
INSIDE
The point is inside of the area.
|
OUTSIDE
The point is outside of the area.
|
Modifier and Type | Method and Description |
---|---|
static PointRelation |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PointRelation[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PointRelation INSIDE
public static final PointRelation BORDER
public static final PointRelation OUTSIDE
public static PointRelation[] values()
for (PointRelation c : PointRelation.values()) System.out.println(c);
public static PointRelation 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 © 2014–2020, Printing in 3D. All rights reserved.