productsearchresults.java

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

JAVA
45
字号
package com.yahoo.shopping;import java.math.BigInteger;import java.util.List;public interface ProductSearchResults {    /**     * The number of products available.     *     * @return The number of products found by the search.     */    BigInteger getTotalResultsAvailable();    /**     * The number of products returned. This may be lower than the number of     * products requested if there were fewer products available.     *     * @return The number of products returned.     */    BigInteger getTotalResultsReturned();    /**     * The position of the first product.     *     * @return The position of the first product.     */    BigInteger getFirstResultPosition();    /**     * Gets any spelling suggestions for the query given.     *     * @return Spelling suggestions for the query given or null if     *         none were given.     */    String getSpellSuggestions();    /**     * The list of products from the request. The list returned may contain     * a mixture of com.yahoo.shopping.Catalog and com.yahoo.shopping.Offer     * objects.     *     * @return The list of products from the request.     */    List listResults();}

⌨️ 快捷键说明

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