public enum ApertureMode extends java.lang.Enum<ApertureMode>
Enum Constant and Description |
---|
FOCAL_LENGTH
Use focal length directly.
|
HORIZ_AND_VERT
Set the angle values for both the horizontal and vertical settings.
|
HORIZONTAL
Set only the horizontal angle.
|
VERTICAL
Set only the vertical angle.
|
Modifier and Type | Method and Description |
---|---|
static ApertureMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ApertureMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ApertureMode HORIZ_AND_VERT
public static final ApertureMode HORIZONTAL
public static final ApertureMode VERTICAL
public static final ApertureMode FOCAL_LENGTH
public static ApertureMode[] values()
for (ApertureMode c : ApertureMode.values()) System.out.println(c);
public static ApertureMode 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