Class TextsType
- java.lang.Object
-
- net.webpdf.wsclient.schema.extraction.text.TextsType
-
public class TextsType extends Object
Java class for texts element declaration.
The following schema fragment specifies the expected content contained within this class.
<element name="texts"> <complexType> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="text" type="{http://schema.webpdf.de/1.0/extraction/text}TextType" maxOccurs="unbounded" minOccurs="0"/> <element name="link" type="{http://schema.webpdf.de/1.0/extraction/text}LinkType" maxOccurs="unbounded" minOccurs="0"/> <element name="paragraph" type="{http://schema.webpdf.de/1.0/extraction/text}ParagraphType" maxOccurs="unbounded" minOccurs="0"/> <element name="word" type="{http://schema.webpdf.de/1.0/extraction/text}WordType" maxOccurs="unbounded" minOccurs="0"/> </sequence> </restriction> </complexContent> </complexType> </element>
-
-
Constructor Summary
Constructors Constructor Description TextsType()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<LinkType>getLink()Gets the value of the link property.List<ParagraphType>getParagraph()Gets the value of the paragraph property.List<TextType>getText()Gets the value of the text property.List<WordType>getWord()Gets the value of the word property.booleanisSetLink()booleanisSetParagraph()booleanisSetText()booleanisSetWord()voidunsetLink()voidunsetParagraph()voidunsetText()voidunsetWord()
-
-
-
Method Detail
-
getText
public List<TextType> getText()
Gets the value of the text 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
setmethod for the text property.For example, to add a new item, do as follows:
getText().add(newItem);Objects of the following type(s) are allowed in the list
TextType- Returns:
- The value of the text property.
-
isSetText
public boolean isSetText()
-
unsetText
public void unsetText()
-
getLink
public List<LinkType> getLink()
Gets the value of the link 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
setmethod for the link property.For example, to add a new item, do as follows:
getLink().add(newItem);Objects of the following type(s) are allowed in the list
LinkType- Returns:
- The value of the link property.
-
isSetLink
public boolean isSetLink()
-
unsetLink
public void unsetLink()
-
getParagraph
public List<ParagraphType> getParagraph()
Gets the value of the paragraph 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
setmethod for the paragraph property.For example, to add a new item, do as follows:
getParagraph().add(newItem);Objects of the following type(s) are allowed in the list
ParagraphType- Returns:
- The value of the paragraph property.
-
isSetParagraph
public boolean isSetParagraph()
-
unsetParagraph
public void unsetParagraph()
-
getWord
public List<WordType> getWord()
Gets the value of the word 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
setmethod for the word property.For example, to add a new item, do as follows:
getWord().add(newItem);Objects of the following type(s) are allowed in the list
WordType- Returns:
- The value of the word property.
-
isSetWord
public boolean isSetWord()
-
unsetWord
public void unsetWord()
-
-