Package | Description |
---|---|
com.google.streamhtmlparser | |
com.google.streamhtmlparser.impl |
Modifier and Type | Method and Description |
---|---|
void |
HtmlParser.insertText()
A specialized directive to tell the parser there is some content
that will be inserted here but that it will not get to parse.
|
void |
Parser.parse(char input)
Tell the parser to process the provided
char . |
void |
Parser.parse(String input)
Tell the parser to process the provided
String . |
Modifier and Type | Method and Description |
---|---|
protected com.google.streamhtmlparser.impl.InternalState |
GenericParser.handleEnterState(com.google.streamhtmlparser.impl.InternalState currentState,
com.google.streamhtmlparser.impl.InternalState expectedNextState,
char input)
Invoked when the parser enters a new state.
|
protected com.google.streamhtmlparser.impl.InternalState |
GenericParser.handleExitState(com.google.streamhtmlparser.impl.InternalState currentState,
com.google.streamhtmlparser.impl.InternalState expectedNextState,
char input)
Invoked when the parser exits a state.
|
protected com.google.streamhtmlparser.impl.InternalState |
HtmlParserImpl.handleInState(com.google.streamhtmlparser.impl.InternalState currentState,
char input) |
protected com.google.streamhtmlparser.impl.InternalState |
GenericParser.handleInState(com.google.streamhtmlparser.impl.InternalState currentState,
char input)
Invoked for each character read when no state change occured.
|
void |
HtmlParserImpl.insertText()
A specialized directive to tell the parser there is some content
that will be inserted here but that it will not get to parse.
|
void |
GenericParser.parse(char input)
Main loop for parsing of input.
|
void |
GenericParser.parse(String input)
Tell the parser to process the provided
String . |
protected void |
GenericParser.setNextState(com.google.streamhtmlparser.impl.InternalState nextState) |
Copyright © 2010–2017 Google. All rights reserved.