Enum Class CompositeBoundary2D.ContainmentResult.Status
java.lang.Object
java.lang.Enum<CompositeBoundary2D.ContainmentResult.Status>
org.episteme.core.mathematics.geometry.boundaries.CompositeBoundary2D.ContainmentResult.Status
- All Implemented Interfaces:
Serializable, Comparable<CompositeBoundary2D.ContainmentResult.Status>, Constable
- Enclosing class:
CompositeBoundary2D.ContainmentResult
public static enum CompositeBoundary2D.ContainmentResult.Status
extends Enum<CompositeBoundary2D.ContainmentResult.Status>
- Since:
- 1.0
- Author:
- Silvere Martin-Michiellot, Gemini AI (Google DeepMind)
-
Nested Class Summary
Nested classes/interfaces inherited from class Enum
Enum.EnumDesc<E> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionPoint is inside an enclave (hole) - therefore OUTSIDE the territoryPoint is inside an inclusion (exclave)Point is outside all regions -
Method Summary
Modifier and TypeMethodDescriptionReturns the enum constant of this class with the specified name.values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
INSIDE
Point is inside an inclusion (exclave) -
IN_ENCLAVE
Point is inside an enclave (hole) - therefore OUTSIDE the territory -
OUTSIDE
Point is outside all regions
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum class has no constant with the specified nameNullPointerException- if the argument is null
-