Package com.aspose.threed
Enum ApertureMode
- java.lang.Object
-
- java.lang.Enum<ApertureMode>
-
- com.aspose.threed.ApertureMode
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<ApertureMode>
,java.lang.constant.Constable
public enum ApertureMode extends java.lang.Enum<ApertureMode>
Camera aperture modes. The aperture mode determines which values drive the camera aperture. If the aperture mode is HorizAndVert, Horizontal, or Vertical, then the field of view is used. If the aperture mode is FocalLength, then the focal length is used.
-
-
Enum Constant Summary
Enum Constants Enum Constant 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.
-
Method Summary
Modifier and Type Method 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.
-
-
-
Enum Constant Detail
-
HORIZ_AND_VERT
public static final ApertureMode HORIZ_AND_VERT
Set the angle values for both the horizontal and vertical settings.
-
HORIZONTAL
public static final ApertureMode HORIZONTAL
Set only the horizontal angle.
-
VERTICAL
public static final ApertureMode VERTICAL
Set only the vertical angle.
-
FOCAL_LENGTH
public static final ApertureMode FOCAL_LENGTH
Use focal length directly.
-
-
Method Detail
-
values
public static ApertureMode[] values()
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ApertureMode 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
-
-