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

📄 componenttype.java

📁 一套java版本的搜索引擎源码
💻 JAVA
字号:
package org.apache.lucene.gdata.server.registry;import org.apache.lucene.gdata.search.SearchComponent;import org.apache.lucene.gdata.server.ServiceFactory;import org.apache.lucene.gdata.server.authentication.AuthenticationController;import org.apache.lucene.gdata.servlet.handler.RequestHandlerFactory;import org.apache.lucene.gdata.storage.StorageController;/** * The enumeration {@link ComponentType} defines the GDATA-Server Components  * available via {@link org.apache.lucene.gdata.server.registry.GDataServerRegistry#lookup(Class, ComponentType)}  * method. * @see org.apache.lucene.gdata.server.registry.Component * @see org.apache.lucene.gdata.server.registry.GDataServerRegistry  * @author Simon Willnauer * */public enum ComponentType {    /**     * StorageController Type     *      * @see StorageController     */    @SuperType(superType = StorageController.class)    STORAGECONTROLLER,    /**     * RequestHandlerFactory Type     *      * @see RequestHandlerFactory     */    @SuperType(superType = RequestHandlerFactory.class)    REQUESTHANDLERFACTORY,    /**     * SearchComponent Type     * @see SearchComponent     */    @SuperType(superType = SearchComponent.class)    SEARCHCONTROLLER,    /**     * ServiceFactory Type     *      * @see ServiceFactory     */    @SuperType(superType = ServiceFactory.class)    SERVICEFACTORY,    /**     * Super type for AuthenticationController implementations     * @see AuthenticationController     */    @SuperType(superType = AuthenticationController.class)    AUTHENTICATIONCONTROLLER}

⌨️ 快捷键说明

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