Package org.gjt.xpp
Interface XmlPullParserBufferControl
-
- All Known Implementing Classes:
PullParser,X2PullParser
public interface XmlPullParserBufferControlAdditional interface to control XML Pull Parser buffering.- Author:
- Aleksander Slominski
- See Also:
XmlPullParserFactory
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description intgetBufferShrinkOffset()intgetHardLimit()intgetSoftLimit()booleanisBufferShrinkable()voidsetBufferShrinkable(boolean shrinkable)voidsetHardLimit(int value)voidsetSoftLimit(int value)
-
-
-
Method Detail
-
getHardLimit
int getHardLimit()
-
setHardLimit
void setHardLimit(int value) throws XmlPullParserException- Throws:
XmlPullParserException
-
getSoftLimit
int getSoftLimit()
-
setSoftLimit
void setSoftLimit(int value) throws XmlPullParserException- Throws:
XmlPullParserException
-
getBufferShrinkOffset
int getBufferShrinkOffset()
-
setBufferShrinkable
void setBufferShrinkable(boolean shrinkable) throws XmlPullParserException- Throws:
XmlPullParserException
-
isBufferShrinkable
boolean isBufferShrinkable()
-
-