public enum AdjustmentType extends java.lang.Enum<AdjustmentType>
| Enum Constant and Description |
|---|
EXPAND
The undistorted view will be entirely filled with pixels from the distorted view.
|
FULL_VIEW
The undistorted view will contain all the pixels in the original distorted image.
|
NONE
Don't adjust the view for visibility
|
| Modifier and Type | Method and Description |
|---|---|
static AdjustmentType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AdjustmentType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AdjustmentType NONE
public static final AdjustmentType FULL_VIEW
public static final AdjustmentType EXPAND
public static AdjustmentType[] values()
for (AdjustmentType c : AdjustmentType.values()) System.out.println(c);
public static AdjustmentType 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