Class AssemblingIntent

java.lang.Object
org.cip4.lib.xjdf.schema.ProductIntent
org.cip4.lib.xjdf.schema.AssemblingIntent
All Implemented Interfaces:
Serializable, org.jvnet.jaxb2_commons.lang.Equals2, org.jvnet.jaxb2_commons.lang.HashCode2

@Generated(value="com.sun.tools.xjc.Driver", comments="JAXB RI v2.3.6", date="2022-12-18T20:00:09Z") public class AssemblingIntent extends ProductIntent implements Serializable, org.jvnet.jaxb2_commons.lang.Equals2, org.jvnet.jaxb2_commons.lang.HashCode2

Java class for AssemblingIntent complex type.

The following schema fragment specifies the expected content contained within this class.

 <complexType name="AssemblingIntent">
   <complexContent>
     <extension base="{http://www.CIP4.org/JDFSchema_2_0}ProductIntent">
       <sequence>
         <element ref="{http://www.CIP4.org/JDFSchema_2_0}AssemblyItem" maxOccurs="unbounded" minOccurs="0"/>
         <element ref="{http://www.CIP4.org/JDFSchema_2_0}BindIn" maxOccurs="unbounded" minOccurs="0"/>
         <element ref="{http://www.CIP4.org/JDFSchema_2_0}BlowIn" maxOccurs="unbounded" minOccurs="0"/>
         <element ref="{http://www.CIP4.org/JDFSchema_2_0}StickOn" maxOccurs="unbounded" minOccurs="0"/>
       </sequence>
       <attribute name="Container" use="required" type="{http://www.w3.org/2001/XMLSchema}IDREF" />
       <anyAttribute processContents='lax' namespace='##other'/>
     </extension>
   </complexContent>
 </complexType>
 
See Also:
  • Field Details

    • assemblyItem

      @Generated(value="com.sun.tools.xjc.Driver", comments="JAXB RI v2.3.6", date="2022-12-18T20:00:09Z") protected List<AssemblyItem> assemblyItem
    • bindIn

      @Generated(value="com.sun.tools.xjc.Driver", comments="JAXB RI v2.3.6", date="2022-12-18T20:00:09Z") protected List<BindIn> bindIn
    • blowIn

      @Generated(value="com.sun.tools.xjc.Driver", comments="JAXB RI v2.3.6", date="2022-12-18T20:00:09Z") protected List<BlowIn> blowIn
    • stickOn

      @Generated(value="com.sun.tools.xjc.Driver", comments="JAXB RI v2.3.6", date="2022-12-18T20:00:09Z") protected List<StickOn> stickOn
    • container

      @Generated(value="com.sun.tools.xjc.Driver", comments="JAXB RI v2.3.6", date="2022-12-18T20:00:09Z") protected Product container
  • Constructor Details

    • AssemblingIntent

      public AssemblingIntent()
  • Method Details

    • getAssemblyItem

      @Generated(value="com.sun.tools.xjc.Driver", comments="JAXB RI v2.3.6", date="2022-12-18T20:00:09Z") public List<AssemblyItem> getAssemblyItem()
      Gets the value of the assemblyItem property.

      This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. This is why there is not a set method for the assemblyItem property.

      For example, to add a new item, do as follows:

          getAssemblyItem().add(newItem);
       

      Objects of the following type(s) are allowed in the list AssemblyItem

    • getBindIn

      @Generated(value="com.sun.tools.xjc.Driver", comments="JAXB RI v2.3.6", date="2022-12-18T20:00:09Z") public List<BindIn> getBindIn()
      Gets the value of the bindIn property.

      This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. This is why there is not a set method for the bindIn property.

      For example, to add a new item, do as follows:

          getBindIn().add(newItem);
       

      Objects of the following type(s) are allowed in the list BindIn

    • getBlowIn

      @Generated(value="com.sun.tools.xjc.Driver", comments="JAXB RI v2.3.6", date="2022-12-18T20:00:09Z") public List<BlowIn> getBlowIn()
      Gets the value of the blowIn property.

      This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. This is why there is not a set method for the blowIn property.

      For example, to add a new item, do as follows:

          getBlowIn().add(newItem);
       

      Objects of the following type(s) are allowed in the list BlowIn

    • getStickOn

      @Generated(value="com.sun.tools.xjc.Driver", comments="JAXB RI v2.3.6", date="2022-12-18T20:00:09Z") public List<StickOn> getStickOn()
      Gets the value of the stickOn property.

      This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. This is why there is not a set method for the stickOn property.

      For example, to add a new item, do as follows:

          getStickOn().add(newItem);
       

      Objects of the following type(s) are allowed in the list StickOn

    • getContainer

      @Generated(value="com.sun.tools.xjc.Driver", comments="JAXB RI v2.3.6", date="2022-12-18T20:00:09Z") public Product getContainer()
      Gets the value of the container property.
      Returns:
      possible object is Object
    • setContainer

      @Generated(value="com.sun.tools.xjc.Driver", comments="JAXB RI v2.3.6", date="2022-12-18T20:00:09Z") public void setContainer(Product value)
      Sets the value of the container property.
      Parameters:
      value - allowed object is Object
    • withAssemblyItem

      public AssemblingIntent withAssemblyItem(AssemblyItem... values)
    • withAssemblyItem

      public AssemblingIntent withAssemblyItem(Collection<AssemblyItem> values)
    • withBindIn

      public AssemblingIntent withBindIn(BindIn... values)
    • withBindIn

      public AssemblingIntent withBindIn(Collection<BindIn> values)
    • withBlowIn

      public AssemblingIntent withBlowIn(BlowIn... values)
    • withBlowIn

      public AssemblingIntent withBlowIn(Collection<BlowIn> values)
    • withStickOn

      public AssemblingIntent withStickOn(StickOn... values)
    • withStickOn

      public AssemblingIntent withStickOn(Collection<StickOn> values)
    • withContainer

      public AssemblingIntent withContainer(Product value)
    • withAny

      public AssemblingIntent withAny(Object... values)
      Overrides:
      withAny in class ProductIntent
    • withAny

      public AssemblingIntent withAny(Collection<Object> values)
      Overrides:
      withAny in class ProductIntent
    • equals

      public boolean equals(org.jvnet.jaxb2_commons.locator.ObjectLocator thisLocator, org.jvnet.jaxb2_commons.locator.ObjectLocator thatLocator, Object object, org.jvnet.jaxb2_commons.lang.EqualsStrategy2 strategy)
      Specified by:
      equals in interface org.jvnet.jaxb2_commons.lang.Equals2
      Overrides:
      equals in class ProductIntent
    • equals

      public boolean equals(Object object)
      Overrides:
      equals in class ProductIntent
    • hashCode

      public int hashCode(org.jvnet.jaxb2_commons.locator.ObjectLocator locator, org.jvnet.jaxb2_commons.lang.HashCodeStrategy2 strategy)
      Specified by:
      hashCode in interface org.jvnet.jaxb2_commons.lang.HashCode2
      Overrides:
      hashCode in class ProductIntent
    • hashCode

      public int hashCode()
      Overrides:
      hashCode in class ProductIntent