Interface XMLEvent

All Known Subinterfaces:
ChangePrefixMapping, CharacterData, Comment, EndDocument, EndElement, EndPrefixMapping, EntityReference, ProcessingInstruction, Space, StartDocument, StartElement, StartPrefixMapping
All Known Implementing Classes:
XmlEventBase

public interface XMLEvent
This is the base element interface for handling markup events.
Since:
Weblogic XML Input Stream 1.0
See Also:
  • Field Details

  • Method Details

    • getType

      int getType()
      Get the event type of the current element, returns an integer so that switch statements can be written on the result
    • getSchemaType

      XMLName getSchemaType()
      Get the event type of the current element, returns an integer so that switch statements can be written on the result
    • getTypeAsString

      String getTypeAsString()
      Get the string value of the type name
    • getName

      XMLName getName()
      Get the XMLName of the current element
      See Also:
    • hasName

      boolean hasName()
      Check if this Element has a name
    • getLocation

      Location getLocation()
      Return the location of this Element
    • isStartElement

      boolean isStartElement()
      Method access to the elements type
    • isEndElement

      boolean isEndElement()
    • isEntityReference

      boolean isEntityReference()
    • isStartPrefixMapping

      boolean isStartPrefixMapping()
    • isEndPrefixMapping

      boolean isEndPrefixMapping()
    • isChangePrefixMapping

      boolean isChangePrefixMapping()
    • isProcessingInstruction

      boolean isProcessingInstruction()
    • isCharacterData

      boolean isCharacterData()
    • isSpace

      boolean isSpace()
    • isNull

      boolean isNull()
    • isStartDocument

      boolean isStartDocument()
    • isEndDocument

      boolean isEndDocument()