public enum SensorSpaceProjection extends Enum<SensorSpaceProjection> implements Enumeration
Enum Constant and Description |
---|
PROJECT_TO_PLANE
The sensor is projected into a plane orthogonal to the sensor boresight axis.
|
PROJECT_TO_RADIUS
The sensor is projected to a radial limit from the sensor origin.
|
Modifier and Type | Method and Description |
---|---|
static SensorSpaceProjection |
getDefault()
Get the enum constant that is considered to be the default.
|
static SensorSpaceProjection |
getFromValue(int value)
Get the enum constant that is associated with the given numeric value.
|
int |
getValue()
Get the numeric value associated with this enum constant.
|
static SensorSpaceProjection |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SensorSpaceProjection[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SensorSpaceProjection PROJECT_TO_RADIUS
public static final SensorSpaceProjection PROJECT_TO_PLANE
public static SensorSpaceProjection[] values()
for (SensorSpaceProjection c : SensorSpaceProjection.values()) System.out.println(c);
public static SensorSpaceProjection 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 nullpublic int getValue()
getValue
in interface Enumeration
@Nonnull public static SensorSpaceProjection getFromValue(int value)
value
- a numeric value.@Nonnull public static SensorSpaceProjection getDefault()