Package org.cip4.lib.xjdf.schema
Enum BoxFoldAction.Action
- java.lang.Object
-
- java.lang.Enum<BoxFoldAction.Action>
-
- org.cip4.lib.xjdf.schema.BoxFoldAction.Action
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<BoxFoldAction.Action>
- Enclosing class:
- BoxFoldAction
@Generated(value="com.sun.tools.xjc.Driver", comments="JAXB RI v4.0.1", date="2023-01-02T18:51:33Z") public static enum BoxFoldAction.Action extends java.lang.Enum<BoxFoldAction.Action>Java class for null.
The following schema fragment specifies the expected content contained within this class.
<simpleType> <restriction base="{http://www.w3.org/2001/XMLSchema}NMTOKEN"> <enumeration value="LongFoldLeftToRight"/> <enumeration value="LongFoldRightToLeft"/> <enumeration value="LongPreFoldLeftToRight"/> <enumeration value="LongPreFoldRightToLeft"/> <enumeration value="FrontFoldComplete"/> <enumeration value="FrontFoldDiagonal"/> <enumeration value="FrontFoldCompleteDiagonal"/> <enumeration value="BackFoldComplete"/> <enumeration value="BackFoldDiagonal"/> <enumeration value="BackFoldCompleteDiagonal"/> <enumeration value="ReverseFold"/> <enumeration value="Milling"/> <enumeration value="Rotate90"/> <enumeration value="Rotate180"/> <enumeration value="Rotate270"/> </restriction> </simpleType>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static BoxFoldAction.ActionfromValue(java.lang.String v)java.lang.Stringvalue()static BoxFoldAction.ActionvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static BoxFoldAction.Action[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
LONG_FOLD_LEFT_TO_RIGHT
public static final BoxFoldAction.Action LONG_FOLD_LEFT_TO_RIGHT
-
LONG_FOLD_RIGHT_TO_LEFT
public static final BoxFoldAction.Action LONG_FOLD_RIGHT_TO_LEFT
-
LONG_PRE_FOLD_LEFT_TO_RIGHT
public static final BoxFoldAction.Action LONG_PRE_FOLD_LEFT_TO_RIGHT
-
LONG_PRE_FOLD_RIGHT_TO_LEFT
public static final BoxFoldAction.Action LONG_PRE_FOLD_RIGHT_TO_LEFT
-
FRONT_FOLD_COMPLETE
public static final BoxFoldAction.Action FRONT_FOLD_COMPLETE
-
FRONT_FOLD_DIAGONAL
public static final BoxFoldAction.Action FRONT_FOLD_DIAGONAL
-
FRONT_FOLD_COMPLETE_DIAGONAL
public static final BoxFoldAction.Action FRONT_FOLD_COMPLETE_DIAGONAL
-
BACK_FOLD_COMPLETE
public static final BoxFoldAction.Action BACK_FOLD_COMPLETE
-
BACK_FOLD_DIAGONAL
public static final BoxFoldAction.Action BACK_FOLD_DIAGONAL
-
BACK_FOLD_COMPLETE_DIAGONAL
public static final BoxFoldAction.Action BACK_FOLD_COMPLETE_DIAGONAL
-
REVERSE_FOLD
public static final BoxFoldAction.Action REVERSE_FOLD
-
MILLING
public static final BoxFoldAction.Action MILLING
-
ROTATE_90
public static final BoxFoldAction.Action ROTATE_90
-
ROTATE_180
public static final BoxFoldAction.Action ROTATE_180
-
ROTATE_270
public static final BoxFoldAction.Action ROTATE_270
-
-
Method Detail
-
values
public static BoxFoldAction.Action[] 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 (BoxFoldAction.Action c : BoxFoldAction.Action.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static BoxFoldAction.Action 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 BoxFoldAction.Action fromValue(java.lang.String v)
-
-