@Generated(value="com.sun.tools.xjc.Driver", date="2016-04-20T01:26:59+02:00", comments="JAXB RI v2.2.11") public enum Orientation extends Enum<Orientation>
Java class for Orientation.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="Orientation">
<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 Orientation |
fromValue(String v) |
String |
value() |
static Orientation |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Orientation[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Orientation FLIP_0
public static final Orientation FLIP_90
public static final Orientation FLIP_180
public static final Orientation FLIP_270
public static final Orientation ROTATE_0
public static final Orientation ROTATE_90
public static final Orientation ROTATE_180
public static final Orientation ROTATE_270
public static Orientation[] values()
for (Orientation c : Orientation.values()) System.out.println(c);
public static Orientation 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 Orientation fromValue(String v)
Copyright © 2016. All rights reserved.