Package org.cip4.lib.xjdf.schema
Enum BindingIntent.BindingType
- java.lang.Object
-
- java.lang.Enum<BindingIntent.BindingType>
-
- org.cip4.lib.xjdf.schema.BindingIntent.BindingType
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<BindingIntent.BindingType>
- Enclosing class:
- BindingIntent
@Generated(value="com.sun.tools.xjc.Driver", comments="JAXB RI v4.0.1", date="2022-12-20T17:59:47Z") public static enum BindingIntent.BindingType extends java.lang.Enum<BindingIntent.BindingType>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="AdhesiveNote"/> <enumeration value="ChannelBinding"/> <enumeration value="CoilBinding"/> <enumeration value="CombBinding"/> <enumeration value="CornerStitch"/> <enumeration value="EdgeGluing"/> <enumeration value="HardCover"/> <enumeration value="LooseBinding"/> <enumeration value="None"/> <enumeration value="RingBinding"/> <enumeration value="SaddleStitch"/> <enumeration value="SideStitch"/> <enumeration value="SoftCover"/> <enumeration value="StripBinding"/> <enumeration value="Tape"/> <enumeration value="WireComb"/> </restriction> </simpleType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ADHESIVE_NOTECHANNEL_BINDINGCOIL_BINDINGCOMB_BINDINGCORNER_STITCHEDGE_GLUINGHARD_COVERLOOSE_BINDINGNONERING_BINDINGSADDLE_STITCHSIDE_STITCHSOFT_COVERSTRIP_BINDINGTAPEWIRE_COMB
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static BindingIntent.BindingTypefromValue(java.lang.String v)java.lang.Stringvalue()static BindingIntent.BindingTypevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static BindingIntent.BindingType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ADHESIVE_NOTE
public static final BindingIntent.BindingType ADHESIVE_NOTE
-
CHANNEL_BINDING
public static final BindingIntent.BindingType CHANNEL_BINDING
-
COIL_BINDING
public static final BindingIntent.BindingType COIL_BINDING
-
COMB_BINDING
public static final BindingIntent.BindingType COMB_BINDING
-
CORNER_STITCH
public static final BindingIntent.BindingType CORNER_STITCH
-
EDGE_GLUING
public static final BindingIntent.BindingType EDGE_GLUING
-
HARD_COVER
public static final BindingIntent.BindingType HARD_COVER
-
LOOSE_BINDING
public static final BindingIntent.BindingType LOOSE_BINDING
-
NONE
public static final BindingIntent.BindingType NONE
-
RING_BINDING
public static final BindingIntent.BindingType RING_BINDING
-
SADDLE_STITCH
public static final BindingIntent.BindingType SADDLE_STITCH
-
SIDE_STITCH
public static final BindingIntent.BindingType SIDE_STITCH
-
SOFT_COVER
public static final BindingIntent.BindingType SOFT_COVER
-
STRIP_BINDING
public static final BindingIntent.BindingType STRIP_BINDING
-
TAPE
public static final BindingIntent.BindingType TAPE
-
WIRE_COMB
public static final BindingIntent.BindingType WIRE_COMB
-
-
Method Detail
-
values
public static BindingIntent.BindingType[] 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 (BindingIntent.BindingType c : BindingIntent.BindingType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static BindingIntent.BindingType 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 BindingIntent.BindingType fromValue(java.lang.String v)
-
-