Package org.docx4j.org.w3.x2003.inkML
Class TableType
java.lang.Object
org.docx4j.org.w3.x2003.inkML.TableType
- All Implemented Interfaces:
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 Summary
Fields -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoidafterUnmarshal(jakarta.xml.bind.Unmarshaller unmarshaller, Object parent) This method is invoked by the JAXB implementation on each instance when unmarshalling completes.getApply()Gets the value of the apply property.getId()Gets the value of the id property.Gets the value of the interpolation property.Gets the parent object in the object tree representing the unmarshalled xml document.getValue()A table of decimals or table of boolean values.voidSets the value of the apply property.voidSets the value of the id property.voidsetInterpolation(String value) Sets the value of the interpolation property.voidvoidSets the value of the value property.
-
Field Details
-
value
-
id
-
apply
-
interpolation
-
-
Constructor Details
-
TableType
public TableType()
-
-
Method Details
-
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
Sets the value of the value property.- Parameters:
value- allowed object isString
-
getId
Gets the value of the id property.- Returns:
- possible object is
String
-
setId
Sets the value of the id property.- Parameters:
value- allowed object isString
-
getApply
Gets the value of the apply property.- Returns:
- possible object is
String
-
setApply
Sets the value of the apply property.- Parameters:
value- allowed object isString
-
getInterpolation
Gets the value of the interpolation property.- Returns:
- possible object is
String
-
setInterpolation
Sets the value of the interpolation property.- Parameters:
value- allowed object isString
-
getParent
Gets the parent object in the object tree representing the unmarshalled xml document. -
setParent
-
afterUnmarshal
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.
-