| java.lang.Object org.apache.http.message.ParserCursor
ParserCursor | public class ParserCursor (Code) | | This class represents a context of a parsing operation:
- the current position the parsing operation is expected to start at
- the bounds limiting the scope of the parsing operation
author: Oleg Kalnichevski |
Constructor Summary | |
public | ParserCursor(int lowerBound, int upperBound) |
ParserCursor | public ParserCursor(int lowerBound, int upperBound)(Code) | | |
atEnd | public boolean atEnd()(Code) | | |
getLowerBound | public int getLowerBound()(Code) | | |
getPos | public int getPos()(Code) | | |
getUpperBound | public int getUpperBound()(Code) | | |
updatePos | public void updatePos(int pos)(Code) | | |
|
|