Class QualifierType

java.lang.Object
org.docx4j.org.w3.x1998.math.mathML.QualifierType
All Implemented Interfaces:
Child

public class QualifierType extends Object implements Child

Java class for qualifier.type complex type.

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

 <complexType name="qualifier.type">
   <complexContent>
     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
       <group ref="{http://www.w3.org/1998/Math/MathML}expression.content"/>
       <attGroup ref="{http://www.w3.org/1998/Math/MathML}common.attrib"/>
       <anyAttribute processContents='skip' namespace='##other'/>
     </restriction>
   </complexContent>
 </complexType>
 
  • Field Details

  • Constructor Details

    • QualifierType

      public QualifierType()
  • Method Details

    • getCn

      public CnType getCn()
      Gets the value of the cn property.
      Returns:
      possible object is CnType
    • setCn

      public void setCn(CnType value)
      Sets the value of the cn property.
      Parameters:
      value - allowed object is CnType
    • getCi

      public CiType getCi()
      Gets the value of the ci property.
      Returns:
      possible object is CiType
    • setCi

      public void setCi(CiType value)
      Sets the value of the ci property.
      Parameters:
      value - allowed object is CiType
    • getExponentiale

      public ConstantType getExponentiale()
      Gets the value of the exponentiale property.
      Returns:
      possible object is ConstantType
    • setExponentiale

      public void setExponentiale(ConstantType value)
      Sets the value of the exponentiale property.
      Parameters:
      value - allowed object is ConstantType
    • getPi

      public ConstantType getPi()
      Gets the value of the pi property.
      Returns:
      possible object is ConstantType
    • setPi

      public void setPi(ConstantType value)
      Sets the value of the pi property.
      Parameters:
      value - allowed object is ConstantType
    • getTrue

      public ConstantType getTrue()
      Gets the value of the true property.
      Returns:
      possible object is ConstantType
    • setTrue

      public void setTrue(ConstantType value)
      Sets the value of the true property.
      Parameters:
      value - allowed object is ConstantType
    • getFalse

      public ConstantType getFalse()
      Gets the value of the false property.
      Returns:
      possible object is ConstantType
    • setFalse

      public void setFalse(ConstantType value)
      Sets the value of the false property.
      Parameters:
      value - allowed object is ConstantType
    • getApply

      public ApplyType getApply()
      Gets the value of the apply property.
      Returns:
      possible object is ApplyType
    • setApply

      public void setApply(ApplyType value)
      Sets the value of the apply property.
      Parameters:
      value - allowed object is ApplyType
    • getLogbase

      public QualifierType getLogbase()
      Gets the value of the logbase property.
      Returns:
      possible object is QualifierType
    • setLogbase

      public void setLogbase(QualifierType value)
      Sets the value of the logbase property.
      Parameters:
      value - allowed object is QualifierType
    • getDegree

      public QualifierType getDegree()
      Gets the value of the degree property.
      Returns:
      possible object is QualifierType
    • setDegree

      public void setDegree(QualifierType value)
      Sets the value of the degree property.
      Parameters:
      value - allowed object is QualifierType
    • getOtherAttributes

      public Map<QName,String> getOtherAttributes()
      Gets a map that contains attributes that aren't bound to any typed property on this class.

      the map is keyed by the name of the attribute and the value is the string value of the attribute. the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter.

      Returns:
      always non-null
    • getParent

      public Object getParent()
      Gets the parent object in the object tree representing the unmarshalled xml document.
      Specified by:
      getParent in interface Child
      Returns:
      The parent object.
    • setParent

      public void setParent(Object parent)
      Specified by:
      setParent in interface Child
    • afterUnmarshal

      public void afterUnmarshal(jakarta.xml.bind.Unmarshaller unmarshaller, Object parent)
      This method is invoked by the JAXB implementation on each instance when unmarshalling completes.
      Parameters:
      parent - The parent object in the object tree.
      unmarshaller - The unmarshaller that generated the instance.