⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 parser.java

📁 这是外国一个开源推理机
💻 JAVA
字号:
/*  Sesame - Storage and Querying architecture for RDF and RDF Schema *  Copyright (C) 2001-2005 Aduna * *  Contact:  *  	Aduna *  	Prinses Julianaplein 14 b *  	3817 CS Amersfoort *  	The Netherlands *  	tel. +33 (0)33 465 99 87 *  	fax. +33 (0)33 465 99 87 * *  	http://aduna.biz/ *  	http://www.openrdf.org/ *   *  This library is free software; you can redistribute it and/or *  modify it under the terms of the GNU Lesser General Public *  License as published by the Free Software Foundation; either *  version 2.1 of the License, or (at your option) any later version. * *  This library is distributed in the hope that it will be useful, *  but WITHOUT ANY WARRANTY; without even the implied warranty of *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU *  Lesser General Public License for more details. * *  You should have received a copy of the GNU Lesser General Public *  License along with this library; if not, write to the Free Software *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA */package org.openrdf.rio;import java.io.IOException;import java.io.InputStream;import java.io.Reader;/** * A general interface for RDF parsers. **/public interface Parser {/*-----------------------------+| Constants                    |+-----------------------------*/	/**	 * Constant indicating that datatypes semantics should be ignored.	 **/	public static final int DT_IGNORE = 10;	/**	 * Constant indicating that values of datatyped literals should be	 * verified.	 **/	public static final int DT_VERIFY = 20;	/**	 * Constant indicating that values of datatyped literals should be	 * normalized to their canonical representation.	 **/	public static final int DT_NORMALIZE = 30;/*-----------------------------+| Methods                      |+-----------------------------*/	/**	 * Sets the StatementHandler that will be notified of statements that	 * are parsed by this parser.	 **/	public void setStatementHandler(StatementHandler sh);	/**	 * Sets the ParseErrorListener that will be notified of any errors	 * that this parser finds during parsing.	 **/	public void setParseErrorListener(ParseErrorListener el);	/**	 * Sets the ParseLocationListener that will be notified of the parser's	 * progress during the parse process.	 **/	public void setParseLocationListener(ParseLocationListener ll);	/**	 * Sets the NamespaceListener that will be notified of any namespace	 * declarations that the parser finds during parsing.	 **/	public void setNamespaceListener(NamespaceListener nl);	/**	 * Sets whether the parser should verify the data it parses (default value	 * is <tt>true</tt>).	 **/	public void setVerifyData(boolean verifyData);		/**	 * Set whether the parser should preserve bnode identifiers specified 	 * in the source (default is <tt>false</tt>).	 */	public void setPreserveBNodeIds(boolean preserveBNodeIds);	/**	 * Sets whether the parser should stop immediately if it finds an error	 * in the data (default value is <tt>true</tt>).	 **/	public void setStopAtFirstError(boolean stopAtFirstError);	/**	 * Sets the datatype handling mode. There are three modes for	 * handling datatyped literals: <em>ignore</em>, <em>verify</em>	 * and <em>normalize</em>. If set to <em>ignore</em>, no special	 * action will be taken to handle datatyped literals. If set to	 * <em>verify</em> (the default value), any literals with known	 * (XML Schema built-in) datatypes are checked to see if their	 * values are valid. If set to <em>normalize</em>, the literal	 * values are not only checked, but also normalized to their	 * canonical representation. The default value is <em>verify</em>.	 *	 * @param datatypeHandling One of the constants	 * <tt>DT_IGNORE</tt>, <tt>DT_VERIFY</tt> or	 * <tt>DT_NORMALIZE</tt>.	 * @see #DT_IGNORE	 * @see #DT_VERIFY	 * @see #DT_NORMALIZE	 **/	public void setDatatypeHandling(int datatypeHandling);	/**	 * Parses the data from the supplied InputStream, using the supplied	 * baseURI to resolve any relative URI references.	 *	 * @param in The InputStream from which to read the data.	 * @param baseURI The URI associated with the data in the InputStream.	 * @exception IOException If an I/O error occurred while data was read	 * from the InputStream.	 * @exception ParseException If the parser has found an unrecoverable	 * parse error.	 * @exception StatementHandlerException If the configured statement handler	 * has encountered an unrecoverable error.	 **/	public void parse(InputStream in, String baseURI)		throws IOException, ParseException, StatementHandlerException;	/**	 * Parses the data from the supplied Reader, using the supplied	 * baseURI to resolve any relative URI references.	 *	 * @param reader The Reader from which to read the data.	 * @param baseURI The URI associated with the data in the InputStream.	 * @exception IOException If an I/O error occurred while data was read	 * from the InputStream.	 * @exception ParseException If the parser has found an unrecoverable	 * parse error.	 * @exception StatementHandlerException If the configured statement handler	 * has encountered an unrecoverable error.	 **/	public void parse(Reader reader, String baseURI)		throws IOException, ParseException, StatementHandlerException;}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -