📄 filehandler.java
字号:
package lia.handlingtypes.framework;import org.apache.lucene.document.Document;import java.io.File;public interface FileHandler { /** * Creates a Lucene Document from a File. * This method can return <code>null</code>. * * @param file the File to convert to a Document * @return a ready-to-index instance of Document */ Document getDocument(File file) throws FileHandlerException;}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -