public enum AdjustUpsideDownRotationMode extends Enum<AdjustUpsideDownRotationMode>
Define adjust upsidedown orientation mode.
| Enum Constant and Description |
|---|
Flip
Rotate picture to 180 degrees.
|
None
Without rotation.
|
| Modifier and Type | Method and Description |
|---|---|
static AdjustUpsideDownRotationMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AdjustUpsideDownRotationMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AdjustUpsideDownRotationMode Flip
Rotate picture to 180 degrees.
public static final AdjustUpsideDownRotationMode None
Without rotation.
public static AdjustUpsideDownRotationMode 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 nullpublic static AdjustUpsideDownRotationMode[] values()
for (AdjustUpsideDownRotationMode c : AdjustUpsideDownRotationMode.values()) System.out.println(c);
Copyright © 2014. All rights reserved.