public enum MIFixedAngle extends java.lang.Enum<MIFixedAngle>
| Enum Constant and Description |
|---|
FA_0
No rotation
|
FA_180
The image is rotated by 180 degrees
|
FA_270
The image is rotated by 90 degrees counterclockwise
|
FA_90
The image is rotated by 90 degrees clockwise
|
| Modifier and Type | Field and Description |
|---|---|
int |
value
Enumeration value
|
| Modifier and Type | Method and Description |
|---|---|
static MIFixedAngle |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static MIFixedAngle[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MIFixedAngle FA_0
public static final MIFixedAngle FA_90
public static final MIFixedAngle FA_180
public static final MIFixedAngle FA_270
public static MIFixedAngle[] values()
for (MIFixedAngle c : MIFixedAngle.values()) System.out.println(c);
public static MIFixedAngle 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