Class TableType

java.lang.Object
org.docx4j.org.w3.x2003.inkML.TableType
All Implemented Interfaces:
Child

public class TableType extends Object implements Child
http://www.w3.org/TR/InkML/#tableElement

Java class for table.type complex type.

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

 <complexType name="table.type">
   <simpleContent>
     <extension base="<http://www.w3.org/2003/InkML>decimalTableOrBooleanTable.type">
       <attribute ref="{http://www.w3.org/XML/1998/namespace}id"/>
       <attribute name="apply" default="absolute">
         <simpleType>
           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
             <enumeration value="absolute"/>
             <enumeration value="relative"/>
           </restriction>
         </simpleType>
       </attribute>
       <attribute name="interpolation" default="linear">
         <simpleType>
           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
             <enumeration value="floor"/>
             <enumeration value="middle"/>
             <enumeration value="ceiling"/>
             <enumeration value="linear"/>
             <enumeration value="cubic"/>
           </restriction>
         </simpleType>
       </attribute>
     </extension>
   </simpleContent>
 </complexType>
 
  • Field Details

    • value

      protected String value
    • id

      protected String id
    • apply

      protected String apply
    • interpolation

      protected String interpolation
  • Constructor Details

    • TableType

      public TableType()
  • Method Details

    • getValue

      public String getValue()
      A table of decimals or table of boolean values. Columns in the tables are delimited by spaces, rows are delimited by commas.
      Returns:
      possible object is String
    • setValue

      public void setValue(String value)
      Sets the value of the value property.
      Parameters:
      value - allowed object is String
    • getId

      public String getId()
      Gets the value of the id property.
      Returns:
      possible object is String
    • setId

      public void setId(String value)
      Sets the value of the id property.
      Parameters:
      value - allowed object is String
    • getApply

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

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

      public String getInterpolation()
      Gets the value of the interpolation property.
      Returns:
      possible object is String
    • setInterpolation

      public void setInterpolation(String value)
      Sets the value of the interpolation property.
      Parameters:
      value - allowed object is String
    • 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.