Package cds.healpix
Enum Class HealpixNestedFixedRadiusConeComputer.ReturnedCells
java.lang.Object
java.lang.Enum<HealpixNestedFixedRadiusConeComputer.ReturnedCells>
cds.healpix.HealpixNestedFixedRadiusConeComputer.ReturnedCells
- All Implemented Interfaces:
Serializable
,Comparable<HealpixNestedFixedRadiusConeComputer.ReturnedCells>
,Constable
- Enclosing interface:
HealpixNestedFixedRadiusConeComputer
public static enum HealpixNestedFixedRadiusConeComputer.ReturnedCells
extends Enum<HealpixNestedFixedRadiusConeComputer.ReturnedCells>
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionCells having their center inside the cone.Cells fully inside the cone: CONE_AREA INTERSECT CELL_AREA = CELL_AREA.Cells overlapping the cone (fully included in the cone or simply overlapping it): CONE_AREA INTERSECT CELL_AREA > 0. -
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.Methods inherited from class java.lang.Enum
compareTo, describeConstable, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
-
Enum Constant Details
-
FULLY_IN
Cells fully inside the cone: CONE_AREA INTERSECT CELL_AREA = CELL_AREA. -
OVERLAPPING
Cells overlapping the cone (fully included in the cone or simply overlapping it): CONE_AREA INTERSECT CELL_AREA > 0. -
CENTER_IN
Cells having their center inside the cone. (CONE_AREA INTERSECT CELL_AREA > 0) AND (CELL_CENTER IN CONE).
-
-
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
-