Uses of Class
com.itextpdf.tool.xml.parser.XMLParser
-
Packages that use XMLParser Package Description com.itextpdf.tool.xml.parser Contains the XMLParser.com.itextpdf.tool.xml.parser.state Contains all possible states used in theStateController
. -
-
Uses of XMLParser in com.itextpdf.tool.xml.parser
Fields in com.itextpdf.tool.xml.parser declared as XMLParser Modifier and Type Field Description private XMLParser
StateController. parser
Methods in com.itextpdf.tool.xml.parser that return XMLParser Modifier and Type Method Description XMLParser
XMLParser. addListener(XMLParserListener pl)
If noParserListener
is added, parsing with the parser seems useless no?XMLParser
XMLParser. append(char character)
XMLParser
XMLParser. append(char[] bytes)
XMLParser
XMLParser. append(java.lang.String string)
Appends the given string to the buffer.XMLParser
StateController. attributeValue()
set Parser state toAttributeValueState
.XMLParser
StateController. cdata()
set Parser state toCdataState
.XMLParser
StateController. closeComment()
set Parser state toCloseCommentState
.XMLParser
StateController. closeStarComment()
set Parser state toCloseStarCommentState
.XMLParser
StateController. closingTag()
set Parser state toClosingTagState
.XMLParser
StateController. comment()
set Parser state toCommentState
.XMLParser
StateController. doctype()
set Parser state toDocTypeState
.XMLParser
StateController. doubleQuotedAttr()
set Parser state toDoubleQuotedAttrValueState
.XMLParser
StateController. inTag()
set Parser state toInsideTagState
.XMLParser
StateController. previousState()
Changes the state to the previous one.XMLParser
StateController. processingInstructions()
set Parser state toProcessingInstructionEncounteredState
.XMLParser
XMLParser. removeListener(XMLParserListener pl)
Removes a Listener from the list of listeners.XMLParser
StateController. selfClosing()
set Parser state toSelfClosingTagState
.XMLParser
StateController. setState(State state)
Changes the state.XMLParser
StateController. singleQuotedAttr()
set Parser state toSingleQuotedAttrValueState
.XMLParser
StateController. specialChar()
set Parser state toSpecialCharState
.XMLParser
StateController. starComment()
set Parser state toStarCommentState
.XMLParser
StateController. tagAttributes()
set Parser state toTagAttributeState
.XMLParser
StateController. tagEncountered()
set Parser state toTagEncounteredState
.XMLParser
StateController. unknown()
set Parser state toUnknownState
.XMLParser
StateController. unquotedAttr()
set Parser state toUnquotedAttrState
.Constructors in com.itextpdf.tool.xml.parser with parameters of type XMLParser Constructor Description StateController(XMLParser parser, boolean isHTML)
Constructs a StateController with the given parser. -
Uses of XMLParser in com.itextpdf.tool.xml.parser.state
Fields in com.itextpdf.tool.xml.parser.state declared as XMLParser Modifier and Type Field Description private XMLParser
AttributeValueState. parser
private XMLParser
CdataState. parser
private XMLParser
CloseCommentState. parser
private XMLParser
CloseStarCommentState. parser
private XMLParser
ClosingTagState. parser
private XMLParser
CommentState. parser
private XMLParser
DocTypeState. parser
private XMLParser
DoubleQuotedAttrValueState. parser
private XMLParser
InsideTagHTMLState. parser
private XMLParser
InsideTagState. parser
private XMLParser
SelfClosingTagState. parser
private XMLParser
SingleQuotedAttrValueState. parser
private XMLParser
SpecialCharState. parser
private XMLParser
StarCommentState. parser
protected XMLParser
TagAttributeState. parser
private XMLParser
TagEncounteredState. parser
private XMLParser
UnknownState. parser
private XMLParser
UnquotedAttrState. parser
private XMLParser
XmlState. parser
Constructors in com.itextpdf.tool.xml.parser.state with parameters of type XMLParser Constructor Description AttributeValueState(XMLParser parser)
CdataState(XMLParser parser)
CloseCommentState(XMLParser parser)
CloseStarCommentState(XMLParser parser)
ClosingTagState(XMLParser parser)
CommentState(XMLParser parser)
DocTypeState(XMLParser parser)
DoubleQuotedAttrValueState(XMLParser parser)
InsideTagHTMLState(XMLParser parser)
InsideTagState(XMLParser parser)
ProcessingInstructionEncounteredState(XMLParser parser)
SelfClosingTagState(XMLParser parser)
SingleQuotedAttrValueState(XMLParser parser)
SpecialCharState(XMLParser parser)
StarCommentState(XMLParser parser)
TagAttributeState(XMLParser parser)
TagEncounteredState(XMLParser parser)
UnknownState(XMLParser xmlParser)
UnquotedAttrState(XMLParser parser)
XmlState(XMLParser parser)
-