Package gaia.cu9.ari.gaiaorbit.util.math
Enum Planed.PlaneSide
- java.lang.Object
-
- java.lang.Enum<Planed.PlaneSide>
-
- gaia.cu9.ari.gaiaorbit.util.math.Planed.PlaneSide
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<Planed.PlaneSide>
- Enclosing class:
- Planed
public static enum Planed.PlaneSide extends java.lang.Enum<Planed.PlaneSide>
Enum specifying on which side a point lies respective to the plane and it's normal.Front
is the side to which the normal points.
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static Planed.PlaneSide
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static Planed.PlaneSide[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
OnPlane
public static final Planed.PlaneSide OnPlane
-
Back
public static final Planed.PlaneSide Back
-
Front
public static final Planed.PlaneSide Front
-
-
Method Detail
-
values
public static Planed.PlaneSide[] 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 (Planed.PlaneSide c : Planed.PlaneSide.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Planed.PlaneSide 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
-
-