package
      
      
        pull
      
      
      
      
    
      
      
        
        
        
              Type Members
              - 
      
      
      
        
        case class
      
      
        EvComment(text: String) extends XMLEvent with Product with Serializable
      
      
- 
      
      
      
        
        case class
      
      
        EvElemEnd(pre: String, label: String) extends XMLEvent with Product with Serializable
      
      
- 
      
      
      
        
        case class
      
      
        EvElemStart(pre: String, label: String, attrs: MetaData, scope: NamespaceBinding) extends XMLEvent with Product with Serializable
      
      
- 
      
      
      
        
        case class
      
      
        EvEntityRef(entity: String) extends XMLEvent with Product with Serializable
      
      
- 
      
      
      
        
        case class
      
      
        EvProcInstr(target: String, text: String) extends XMLEvent with Product with Serializable
      
      
- 
      
      
      
        
        case class
      
      
        EvText(text: String) extends XMLEvent with Product with Serializable
      
      
- 
      
      
      
    
- 
      
      
      
        
        trait
      
      
        XMLEvent extends AnyRef
      
      
- 
      
      
      
        
        class
      
      
        XMLEventReader extends ProducerConsumerIterator[XMLEvent]
      
      
 
        
        
        
         
        
        
        
       
      
      
     
      
Classes needed to view an XML document as a series of events. The document is parsed by an XMLEventReader instance. You can treat it as an Iterator to retrieve the events, which are all subclasses of XMLEvent.