public static enum EncodedImage.Orientation extends java.lang.Enum<EncodedImage.Orientation>
| Enum Constant and Description |
|---|
FRONT_FACING
mirrored
|
REAR_FACING |
| Modifier and Type | Method and Description |
|---|---|
static EncodedImage.Orientation |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EncodedImage.Orientation[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EncodedImage.Orientation REAR_FACING
public static final EncodedImage.Orientation FRONT_FACING
public static EncodedImage.Orientation[] values()
for (EncodedImage.Orientation c : EncodedImage.Orientation.values()) System.out.println(c);
public static EncodedImage.Orientation 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