Class VecMultiFuseSpecification

All Implemented Interfaces:
Identifiable, ModifiableIdentifiable, HasCustomProperties<VecCustomProperty>, HasDescription<VecAbstractLocalizedString>, HasIdentification, HasModifiableIdentification, Visitable, Serializable

public class VecMultiFuseSpecification extends VecEEComponentSpecification implements Serializable, Visitable

Java class for MultiFuseSpecification complex type.

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


 <complexType name="MultiFuseSpecification">
   <complexContent>
     <extension base="{http://www.prostep.org/ecad-if/2011/vec}EEComponentSpecification">
       <sequence>
         <element name="FuseType" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
         <element name="IMaxTotal" type="{http://www.prostep.org/ecad-if/2011/vec}NumericalValue" minOccurs="0"/>
         <element name="FuseComponents" type="{http://www.prostep.org/ecad-if/2011/vec}FuseComponent" maxOccurs="unbounded" minOccurs="0"/>
       </sequence>
     </extension>
   </complexContent>
 </complexType>
 
See Also:
  • Field Details

    • fuseType

      protected String fuseType

      The type of a fuse. This should be an enumeration of values defined in a conformance class.

    • iMaxTotal

      protected VecNumericalValue iMaxTotal

      Specifies the maximum electric current tolerated by the multifuse in total.

    • fuseComponents

      protected List<VecFuseComponent> fuseComponents
  • Constructor Details

    • VecMultiFuseSpecification

      public VecMultiFuseSpecification()
  • Method Details

    • getFuseType

      public String getFuseType()
      Gets the value of the fuseType property.

      The type of a fuse. This should be an enumeration of values defined in a conformance class.

      Returns:
      possible object is String
    • setFuseType

      public void setFuseType(String value)
      Sets the value of the fuseType property.
      Parameters:
      value - allowed object is String
      See Also:
    • getIMaxTotal

      public VecNumericalValue getIMaxTotal()
      Gets the value of the iMaxTotal property.

      Specifies the maximum electric current tolerated by the multifuse in total.

      Returns:
      possible object is VecNumericalValue
    • setIMaxTotal

      public void setIMaxTotal(VecNumericalValue value)
      Sets the value of the iMaxTotal property.
      Parameters:
      value - allowed object is VecNumericalValue
      See Also:
    • getFuseComponents

      public List<VecFuseComponent> getFuseComponents()
      Gets the value of the fuseComponents 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 Jakarta XML Binding object. This is why there is not a set method for the fuseComponents property.

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

          getFuseComponents().add(newItem);
       

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

      Returns:
      The value of the fuseComponents property.
    • accept

      public <R, E extends Throwable> R accept(Visitor<R,E> aVisitor) throws E
      Specified by:
      accept in interface Visitable
      Overrides:
      accept in class VecEEComponentSpecification
      Throws:
      E extends Throwable