Package gov.nih.mipav.model.structures
Enum ComputationalGeometry.OutsideOnInside
- java.lang.Object
-
- java.lang.Enum<ComputationalGeometry.OutsideOnInside>
-
- gov.nih.mipav.model.structures.ComputationalGeometry.OutsideOnInside
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<ComputationalGeometry.OutsideOnInside>
- Enclosing class:
- ComputationalGeometry
public static enum ComputationalGeometry.OutsideOnInside extends java.lang.Enum<ComputationalGeometry.OutsideOnInside>
-
-
Constructor Summary
Constructors Modifier Constructor Description privateOutsideOnInside()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ComputationalGeometry.OutsideOnInsidevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static ComputationalGeometry.OutsideOnInside[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
Outside
public static final ComputationalGeometry.OutsideOnInside Outside
-
On
public static final ComputationalGeometry.OutsideOnInside On
-
Inside
public static final ComputationalGeometry.OutsideOnInside Inside
-
-
Method Detail
-
values
public static ComputationalGeometry.OutsideOnInside[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (ComputationalGeometry.OutsideOnInside c : ComputationalGeometry.OutsideOnInside.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ComputationalGeometry.OutsideOnInside valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
-