tagsearchresults.java

来自「yahoo api,包括各版本的」· Java 代码 · 共 34 行

JAVA
34
字号
package com.yahoo.myweb2;import java.math.BigInteger;public interface TagSearchResults {    /**     * The number of tags available.     *     * @return The number of tags found by the search.     */    BigInteger getTotalResultsAvailable();    /**     * The number of tags returned. This may be lower than the number of     * tags requested if there were fewer tags available.     *     * @return The number of tags returned.     */    BigInteger getTotalResultsReturned();    /**     * The position of the first tag.     *     * @return The position of the first tag.     */    BigInteger getFirstResultPosition();    /**     * The list of tags from the request.     *     * @return The list of tags from the request.     */    TagSearchResult[] listResults();}

⌨️ 快捷键说明

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