public static enum Sensor.FilmTransformType extends java.lang.Enum<Sensor.FilmTransformType>
| Enum Constant and Description |
|---|
Affine |
Conformal |
Projective |
| Modifier and Type | Method and Description |
|---|---|
static Sensor.FilmTransformType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Sensor.FilmTransformType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Sensor.FilmTransformType Conformal
public static final Sensor.FilmTransformType Affine
public static final Sensor.FilmTransformType Projective
public static Sensor.FilmTransformType[] values()
for (Sensor.FilmTransformType c : Sensor.FilmTransformType.values()) System.out.println(c);
public static Sensor.FilmTransformType valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null