com.sun.syndication.feed.synd
インタフェース SyndCategory

すべてのスーパーインタフェース:
java.lang.Cloneable
既知の実装クラスの一覧:
SyndCategoryImpl

public interface SyndCategory
extends java.lang.Cloneable

Bean interface for categories of SyndFeedImpl feeds and entries.


メソッドの概要
 java.lang.Object clone()
          Creates a deep clone of the object.
 java.lang.String getName()
          Returns the category name.
 java.lang.String getTaxonomyUri()
          Returns the category taxonomy URI.
 void setName(java.lang.String name)
          Sets the category name.
 void setTaxonomyUri(java.lang.String taxonomyUri)
          Sets the category taxonomy URI.
 

メソッドの詳細

getName

java.lang.String getName()
Returns the category name.

戻り値:
the category name, null if none.

setName

void setName(java.lang.String name)
Sets the category name.

パラメータ:
name - the category name to set, null if none.

getTaxonomyUri

java.lang.String getTaxonomyUri()
Returns the category taxonomy URI.

戻り値:
the category taxonomy URI, null if none.

setTaxonomyUri

void setTaxonomyUri(java.lang.String taxonomyUri)
Sets the category taxonomy URI.

パラメータ:
taxonomyUri - the category taxonomy URI to set, null if none.

clone

java.lang.Object clone()
                       throws java.lang.CloneNotSupportedException
Creates a deep clone of the object.

戻り値:
a clone of the object.
例外:
java.lang.CloneNotSupportedException - thrown if an element of the object cannot be cloned.