Package com.google.api.client.xml.atom
Class Atom.StopAtAtomEntry
- java.lang.Object
-
- com.google.api.client.xml.Xml.CustomizeParser
-
- com.google.api.client.xml.atom.Atom.StopAtAtomEntry
-
- Enclosing class:
- Atom
static final class Atom.StopAtAtomEntry extends Xml.CustomizeParser
-
-
Field Summary
Fields Modifier and Type Field Description (package private) static Atom.StopAtAtomEntry
INSTANCE
-
Constructor Summary
Constructors Constructor Description StopAtAtomEntry()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
stopBeforeStartTag(java.lang.String namespace, java.lang.String localName)
Returns whether to stop parsing when reaching the start tag of an XML element before it has been processed.-
Methods inherited from class com.google.api.client.xml.Xml.CustomizeParser
stopAfterEndTag
-
-
-
-
Field Detail
-
INSTANCE
static final Atom.StopAtAtomEntry INSTANCE
-
-
Method Detail
-
stopBeforeStartTag
public boolean stopBeforeStartTag(java.lang.String namespace, java.lang.String localName)
Description copied from class:Xml.CustomizeParser
Returns whether to stop parsing when reaching the start tag of an XML element before it has been processed. Only called if the element is actually being processed. By default, returnsfalse
, but subclasses may override.- Overrides:
stopBeforeStartTag
in classXml.CustomizeParser
- Parameters:
namespace
- XML element's namespace URIlocalName
- XML element's local name
-
-