XMLLoader

trait XMLLoader[T <: Node]

Presents collection of XML loading methods which use the parser created by "def parser".

Presents collection of XML loading methods which use the parser created by "def parser".

class Object
trait Matchable
class Any

Value members

Concrete methods

def load(is: InputStream): T

loads XML from given InputStream, Reader, sysID, InputSource, or URL.

loads XML from given InputStream, Reader, sysID, InputSource, or URL.

def load(reader: Reader): T
def load(sysID: String): T
def load(source: InputSource): T
def load(url: URL): T
def loadFile(file: File): T

Loads XML from the given file, file descriptor, or filename.

Loads XML from the given file, file descriptor, or filename.

def loadFile(fd: FileDescriptor): T
def loadFile(name: String): T
def loadString(string: String): T

Loads XML from the given String.

Loads XML from the given String.

def loadXML(source: InputSource, parser: SAXParser): T

Loads XML from the given InputSource, using the supplied parser. The methods available in scala.xml.XML use the XML parser in the JDK.

Loads XML from the given InputSource, using the supplied parser. The methods available in scala.xml.XML use the XML parser in the JDK.