public enum EnumOrientation extends Enum<EnumOrientation>
Java class for EnumOrientation.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="EnumOrientation">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="Flip0"/>
<enumeration value="Flip90"/>
<enumeration value="Flip180"/>
<enumeration value="Flip270"/>
<enumeration value="Rotate0"/>
<enumeration value="Rotate90"/>
<enumeration value="Rotate180"/>
<enumeration value="Rotate270"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
FLIP_0 |
FLIP_180 |
FLIP_270 |
FLIP_90 |
ROTATE_0 |
ROTATE_180 |
ROTATE_270 |
ROTATE_90 |
| Modifier and Type | Method and Description |
|---|---|
static EnumOrientation |
fromValue(String v) |
String |
value() |
static EnumOrientation |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EnumOrientation[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EnumOrientation FLIP_0
public static final EnumOrientation FLIP_90
public static final EnumOrientation FLIP_180
public static final EnumOrientation FLIP_270
public static final EnumOrientation ROTATE_0
public static final EnumOrientation ROTATE_90
public static final EnumOrientation ROTATE_180
public static final EnumOrientation ROTATE_270
public static EnumOrientation[] values()
for (EnumOrientation c : EnumOrientation.values()) System.out.println(c);
public static EnumOrientation 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 String value()
public static EnumOrientation fromValue(String v)
Copyright © 2012. All Rights Reserved.