com.yahoo.search
Interface WebSearchResult


public interface WebSearchResult

Web search result.

Author:
Ryan Kennedy

Method Summary
 CacheInfo getCache()
          The URL of the cached result, and its size in bytes.
 String getClickUrl()
          The URL for linking to the page.
 String getMimeType()
          The MIME type of the page.
 String getModificationDate()
          The date the page was last modified, in unix timestamp format.
 String getSummary()
          Summary text associated with the web page.
 String getTitle()
          The title of the web page.
 String getUrl()
          The URL for the web page.
 

Method Detail

getTitle

String getTitle()
The title of the web page.

Returns:
The title of the web page.

getSummary

String getSummary()
Summary text associated with the web page.

Returns:
Summary text associated with the web page.

getUrl

String getUrl()
The URL for the web page.

Returns:
The URL for the web page.

getClickUrl

String getClickUrl()
The URL for linking to the page. See URL linking for more information.

Returns:
The URL for linking to the page.

getMimeType

String getMimeType()
The MIME type of the page. This field is optional.

Returns:
The MIME type of the page.

getModificationDate

String getModificationDate()
The date the page was last modified, in unix timestamp format. This field is optional.

Returns:
The date the page was last modified, in unix timestamp format.

getCache

CacheInfo getCache()
The URL of the cached result, and its size in bytes. This field is optional.

Returns:
The URL of the cached result, and its size in bytes.