com.sun.syndication.feed.atom
クラス Generator

java.lang.Object
  上位を拡張 com.sun.syndication.feed.atom.Generator
すべての実装されたインタフェース:
java.io.Serializable, java.lang.Cloneable

public class Generator
extends java.lang.Object
implements java.lang.Cloneable, java.io.Serializable

Bean for the generator element of Atom feeds.

関連項目:
直列化された形式

コンストラクタの概要
Generator()
          Default constructor.
 
メソッドの概要
 java.lang.Object clone()
          Creates a deep 'bean' clone of the object.
 boolean equals(java.lang.Object other)
          Indicates whether some other object is "equal to" this one as defined by the Object equals() method.
 java.lang.String getUrl()
          Returns the generator URL.
 java.lang.String getValue()
          Returns the generator value.
 java.lang.String getVersion()
          Returns the generator version.
 int hashCode()
          Returns a hashcode value for the object.
 void setUrl(java.lang.String url)
          Sets the generator URL.
 void setValue(java.lang.String value)
          Sets the generator value.
 void setVersion(java.lang.String version)
          Sets the generator version.
 java.lang.String toString()
          Returns the String representation for the object.
 
クラス java.lang.Object から継承されたメソッド
finalize, getClass, notify, notifyAll, wait, wait, wait
 

コンストラクタの詳細

Generator

public Generator()
Default constructor. All properties are set to null.

メソッドの詳細

clone

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

オーバーライド:
クラス java.lang.Object 内の clone
戻り値:
a clone of the object.
例外:
java.lang.CloneNotSupportedException - thrown if an element of the object cannot be cloned.

equals

public boolean equals(java.lang.Object other)
Indicates whether some other object is "equal to" this one as defined by the Object equals() method.

オーバーライド:
クラス java.lang.Object 内の equals
パラメータ:
other - he reference object with which to compare.
戻り値:
true if 'this' object is equal to the 'other' object.

hashCode

public int hashCode()
Returns a hashcode value for the object.

It follows the contract defined by the Object hashCode() method.

オーバーライド:
クラス java.lang.Object 内の hashCode
戻り値:
the hashcode of the bean object.

toString

public java.lang.String toString()
Returns the String representation for the object.

オーバーライド:
クラス java.lang.Object 内の toString
戻り値:
String representation for the object.

getUrl

public java.lang.String getUrl()
Returns the generator URL.

戻り値:
the generator URL, null if none.

setUrl

public void setUrl(java.lang.String url)
Sets the generator URL.

パラメータ:
url - the generator URL, null if none.

getVersion

public java.lang.String getVersion()
Returns the generator version.

戻り値:
the generator version, null if none.

setVersion

public void setVersion(java.lang.String version)
Sets the generator version.

パラメータ:
version - the generator version, null if none.

getValue

public java.lang.String getValue()
Returns the generator value.

戻り値:
the generator value, null if none.

setValue

public void setValue(java.lang.String value)
Sets the generator value.

パラメータ:
value - the generator value, null if none.