Uses of Class
org.basex.build.Parser

Packages that use Parser
org.basex.build Classes for creating new database instances. 
org.basex.build.file Classes for creating databases from different sources. 
org.basex.build.xml Classes for creating databases from XML documents. 
org.basex.core.cmd Database commands. 
org.basex.query.value.node   
 

Uses of Parser in org.basex.build
 

Subclasses of Parser in org.basex.build
 class DirParser
          This class recursively scans files and directories and parses all relevant files.
 class SingleParser
          This class defines an abstract parser for single resources.
 

Methods in org.basex.build that return Parser
static Parser Parser.emptyParser(Prop pr)
          Returns a parser instance for creating empty databases.
 Parser Parser.target(java.lang.String path)
          Sets the target path.
 

Methods in org.basex.build with parameters of type Parser
static MemData MemBuilder.build(Parser parser)
          Builds a main memory database instance.
static MemData MemBuilder.build(java.lang.String name, Parser parser)
          Builds a main memory database instance with the specified name.
 

Constructors in org.basex.build with parameters of type Parser
DiskBuilder(java.lang.String nm, Parser parse, Context ctx)
          Constructor.
MemBuilder(java.lang.String nm, Parser parse)
          Constructor.
 

Uses of Parser in org.basex.build.file
 

Subclasses of Parser in org.basex.build.file
 class CSVParser
          This class parses files in the CSV format and sends events to the specified database builder.
 class HTMLParser
          This class uses TagSoup to convert HTML input to well-formed XML.
 class JSONParser
          This class parses files in the JSON format and sends events to the specified database builder.
 class MAB2Parser
          This class parses files in the MAB2 format and sends events to the specified database builder.
 class TextParser
          This class parses files in the plain-text format and sends events to the specified database builder.
 

Uses of Parser in org.basex.build.xml
 

Subclasses of Parser in org.basex.build.xml
 class DOMWrapper
          This class converts an DOM document instance to a database representation.
 class SAXWrapper
          This class parses an XML document with Java's internal SAX parser.
 class XMLParser
          This class parses the tokens that are delivered by the XMLScanner and sends them to the specified database builder.
 

Uses of Parser in org.basex.core.cmd
 

Methods in org.basex.core.cmd with parameters of type Parser
static Data CreateDB.create(java.lang.String name, Parser parser, Context ctx)
          Returns a database instance from the specified parser.
static MemData CreateDB.mainMem(Parser parser, Context ctx)
          Returns a main memory database instance from the specified parser.
 void CreateDB.setParser(Parser p)
          Attaches a parser.
 

Uses of Parser in org.basex.query.value.node
 

Constructors in org.basex.query.value.node with parameters of type Parser
DBNode(Parser parser)
          Constructor, specifying a parser reference.