Class XmlEventBase

java.lang.Object
org.apache.xmlbeans.impl.common.XmlEventBase
All Implemented Interfaces:
XMLEvent

public abstract class XmlEventBase extends Object implements XMLEvent
Abstract base class which implements the type part XMLEvent.
  • Constructor Details

    • XmlEventBase

      public XmlEventBase()
    • XmlEventBase

      public XmlEventBase(int type)
  • Method Details

    • setType

      public void setType(int type)
    • getType

      public int getType()
      Description copied from interface: XMLEvent
      Get the event type of the current element, returns an integer so that switch statements can be written on the result
      Specified by:
      getType in interface XMLEvent
    • getTypeAsString

      public String getTypeAsString()
      Description copied from interface: XMLEvent
      Get the string value of the type name
      Specified by:
      getTypeAsString in interface XMLEvent
    • isStartElement

      public boolean isStartElement()
      Description copied from interface: XMLEvent
      Method access to the elements type
      Specified by:
      isStartElement in interface XMLEvent
    • isEndElement

      public boolean isEndElement()
      Specified by:
      isEndElement in interface XMLEvent
    • isEntityReference

      public boolean isEntityReference()
      Specified by:
      isEntityReference in interface XMLEvent
    • isStartPrefixMapping

      public boolean isStartPrefixMapping()
      Specified by:
      isStartPrefixMapping in interface XMLEvent
    • isEndPrefixMapping

      public boolean isEndPrefixMapping()
      Specified by:
      isEndPrefixMapping in interface XMLEvent
    • isChangePrefixMapping

      public boolean isChangePrefixMapping()
      Specified by:
      isChangePrefixMapping in interface XMLEvent
    • isProcessingInstruction

      public boolean isProcessingInstruction()
      Specified by:
      isProcessingInstruction in interface XMLEvent
    • isCharacterData

      public boolean isCharacterData()
      Specified by:
      isCharacterData in interface XMLEvent
    • isSpace

      public boolean isSpace()
      Specified by:
      isSpace in interface XMLEvent
    • isNull

      public boolean isNull()
      Specified by:
      isNull in interface XMLEvent
    • isStartDocument

      public boolean isStartDocument()
      Specified by:
      isStartDocument in interface XMLEvent
    • isEndDocument

      public boolean isEndDocument()
      Specified by:
      isEndDocument in interface XMLEvent