Package org.cip4.lib.xjdf.schema
Enum CutMark.MarkType
- java.lang.Object
-
- java.lang.Enum<CutMark.MarkType>
-
- org.cip4.lib.xjdf.schema.CutMark.MarkType
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<CutMark.MarkType>
- Enclosing class:
- CutMark
@Generated(value="com.sun.tools.xjc.Driver", comments="JAXB RI v4.0.1", date="2022-12-20T17:59:47Z") public static enum CutMark.MarkType extends java.lang.Enum<CutMark.MarkType>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="CrossCutMark"/> <enumeration value="TopVerticalCutMark"/> <enumeration value="BottomVerticalCutMark"/> <enumeration value="LeftHorizontalCutMark"/> <enumeration value="RightHorizontalCutMark"/> <enumeration value="LowerLeftCutMark"/> <enumeration value="UpperLeftCutMark"/> <enumeration value="LowerRightCutMark"/> <enumeration value="UpperRightCutMark"/> </restriction> </simpleType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description BOTTOM_VERTICAL_CUT_MARKCROSS_CUT_MARKLEFT_HORIZONTAL_CUT_MARKLOWER_LEFT_CUT_MARKLOWER_RIGHT_CUT_MARKRIGHT_HORIZONTAL_CUT_MARKTOP_VERTICAL_CUT_MARKUPPER_LEFT_CUT_MARKUPPER_RIGHT_CUT_MARK
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static CutMark.MarkTypefromValue(java.lang.String v)java.lang.Stringvalue()static CutMark.MarkTypevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static CutMark.MarkType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CROSS_CUT_MARK
public static final CutMark.MarkType CROSS_CUT_MARK
-
TOP_VERTICAL_CUT_MARK
public static final CutMark.MarkType TOP_VERTICAL_CUT_MARK
-
BOTTOM_VERTICAL_CUT_MARK
public static final CutMark.MarkType BOTTOM_VERTICAL_CUT_MARK
-
LEFT_HORIZONTAL_CUT_MARK
public static final CutMark.MarkType LEFT_HORIZONTAL_CUT_MARK
-
RIGHT_HORIZONTAL_CUT_MARK
public static final CutMark.MarkType RIGHT_HORIZONTAL_CUT_MARK
-
LOWER_LEFT_CUT_MARK
public static final CutMark.MarkType LOWER_LEFT_CUT_MARK
-
UPPER_LEFT_CUT_MARK
public static final CutMark.MarkType UPPER_LEFT_CUT_MARK
-
LOWER_RIGHT_CUT_MARK
public static final CutMark.MarkType LOWER_RIGHT_CUT_MARK
-
UPPER_RIGHT_CUT_MARK
public static final CutMark.MarkType UPPER_RIGHT_CUT_MARK
-
-
Method Detail
-
values
public static CutMark.MarkType[] 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 (CutMark.MarkType c : CutMark.MarkType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static CutMark.MarkType 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 CutMark.MarkType fromValue(java.lang.String v)
-
-