componenttype.java

来自「一套java版本的搜索引擎源码」· Java 代码 · 共 54 行

JAVA
54
字号
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 + =
减小字号Ctrl + -
显示快捷键?