Package org.cip4.lib.xjdf.schema
Enum Orientation
- java.lang.Object
-
- java.lang.Enum<Orientation>
-
- org.cip4.lib.xjdf.schema.Orientation
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<Orientation>
@Generated(value="com.sun.tools.xjc.Driver", comments="JAXB RI v4.0.1", date="2022-12-21T00:11:33Z") public enum Orientation extends java.lang.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="Rotate0"/> <enumeration value="Rotate90"/> <enumeration value="Rotate180"/> <enumeration value="Rotate270"/> <enumeration value="Flip0"/> <enumeration value="Flip90"/> <enumeration value="Flip180"/> <enumeration value="Flip270"/> </restriction> </simpleType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description FLIP_0FLIP_180FLIP_270FLIP_90ROTATE_0ROTATE_180ROTATE_270ROTATE_90
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static OrientationfromValue(java.lang.String v)java.lang.Stringvalue()static OrientationvalueOf(java.lang.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.
-
-
-
Enum Constant Detail
-
ROTATE_0
public static final Orientation ROTATE_0
-
ROTATE_90
public static final Orientation ROTATE_90
-
ROTATE_180
public static final Orientation ROTATE_180
-
ROTATE_270
public static final Orientation ROTATE_270
-
FLIP_0
public static final Orientation FLIP_0
-
FLIP_90
public static final Orientation FLIP_90
-
FLIP_180
public static final Orientation FLIP_180
-
FLIP_270
public static final Orientation FLIP_270
-
-
Method Detail
-
values
public static Orientation[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (Orientation c : Orientation.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Orientation valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
value
public java.lang.String value()
-
fromValue
public static Orientation fromValue(java.lang.String v)
-
-