@Deprecated public static enum Metaimage.ImageOrientation extends Enum<Metaimage.ImageOrientation>
MetaImage.getExifOrientation()
insteadEnum Constant and Description |
---|
IO_Down
Deprecated.
180 deg rotation
|
IO_DownMirrored
Deprecated.
horizontal flip
|
IO_Left
Deprecated.
90 deg CCW
|
IO_LeftMirrored
Deprecated.
vertical flip
|
IO_Right
Deprecated.
90 deg CW
|
IO_RightMirrored
Deprecated.
vertical flip
|
IO_Up
Deprecated.
default orientation
|
IO_UpMirrored
Deprecated.
as above but image mirrored along other axis. horizontal flip
|
Modifier and Type | Method and Description |
---|---|
static Metaimage.ImageOrientation |
valueOf(String name)
Deprecated.
Returns the enum constant of this type with the specified name.
|
static Metaimage.ImageOrientation[] |
values()
Deprecated.
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Metaimage.ImageOrientation IO_Up
public static final Metaimage.ImageOrientation IO_Down
public static final Metaimage.ImageOrientation IO_Left
public static final Metaimage.ImageOrientation IO_Right
public static final Metaimage.ImageOrientation IO_UpMirrored
public static final Metaimage.ImageOrientation IO_DownMirrored
public static final Metaimage.ImageOrientation IO_LeftMirrored
public static final Metaimage.ImageOrientation IO_RightMirrored
public static Metaimage.ImageOrientation[] values()
for (Metaimage.ImageOrientation c : Metaimage.ImageOrientation.values()) System.out.println(c);
public static Metaimage.ImageOrientation valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null