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

📄 mg4jclassparser.java

📁 MG4J (Managing Gigabytes for Java) is a free full-text search engine for large document collections
💻 JAVA
字号:
package it.unimi.dsi.mg4j.util;/*		  * Copyright (C) 2007 Sebastiano Vigna  * *  This program is free software; you can redistribute it and/or modify it *  under the terms of the GNU General Public License as published by the Free *  Software Foundation; either version 2 of the License, or (at your option) *  any later version. * *  This program 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 General Public License *  for more details. * *  You should have received a copy of the GNU General Public License *  along with this program; if not, write to the Free Software *  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * */import com.martiansoftware.jsap.ParseException;import com.martiansoftware.jsap.stringparsers.ClassStringParser;/** A small wrapper around JSAP's standard {@link ClassStringParser}. It * tries to prefix <samp>it.unimi.dsi.mg4j.<var>package</var>.</samp> to the provided * class name, making the specification of graph classes on the command line much easier. */public class MG4JClassParser extends ClassStringParser {	private final static MG4JClassParser INSTANCE = new MG4JClassParser();		public final static String[] PACKAGE = { "it.unimi.dsi.mg4j.compression", "it.unimi.dsi.mg4j.document", "it.unimi.dsi.mg4j.index", "it.unimi.dsi.mg4j.index.snowball", "it.unimi.dsi.mg4j.index.cluster", "it.unimi.dsi.mg4j.index.payload", "it.unimi.dsi.mg4j.index.remote", "it.unimi.dsi.mg4j.io", "it.unimi.dsi.mg4j.query", "it.unimi.dsi.mg4j.query.parser", "it.unimi.dsi.mg4j.search", "it.unimi.dsi.mg4j.search.score", "it.unimi.dsi.mg4j.tool", "it.unimi.dsi.mg4j.util" };		@SuppressWarnings("deprecation")	protected MG4JClassParser() {}		public static ClassStringParser getParser() {		return INSTANCE; 	}		/** Parses the given class name, but as a first try prepends <samp>it.unimi.dsi.mg4j.<var>package</var>.</samp>.	 *  	 * @param className the name of a class, possibly without package specification.	 */	@Override	public Object parse( String className ) throws ParseException {		for( String p: PACKAGE ) {			try {				return super.parse( p + "." + className );			}			catch( Exception notFound ) {}		}		return super.parse( className );	}}

⌨️ 快捷键说明

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