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

📄 newssearchresults.java

📁 SOApprocah方法的源程序下载 基于经典的PMI-IR方法
💻 JAVA
字号:
package com.yahoo.search;import java.math.BigInteger;/** * News search results. * * @author Ryan Kennedy */public interface NewsSearchResults {    /**     * The number of query matches in the database.     *     * @return The number of query matches in the database.     */    BigInteger getTotalResultsAvailable();    /**     * The number of query matches returned. This may be lower than the number of results requested if there were     * fewer total results available.     *     * @return The number of query matches returned.     */    BigInteger getTotalResultsReturned();    /**     * The position of the first result in the overall search.     *     * @return The position of the first result in the overall search.     */    BigInteger getFirstResultPosition();    /**     * The list (in order) of results from the search.     *     * @return The list (in order) of results from the search.     */    NewsSearchResult[] listResults();}

⌨️ 快捷键说明

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