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

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

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

Bean for person elements of Atom feeds.

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

コンストラクタの概要
Person()
          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 getEmail()
          Returns the person email.
 java.lang.String getName()
          Returns the person name.
 java.lang.String getUri()
          Returns the uri
 java.lang.String getUriResolved(java.lang.String resolveURI)
           
 java.lang.String getUrl()
          Returns the person URL (same as getUri())
 int hashCode()
          Returns a hashcode value for the object.
 void setEmail(java.lang.String email)
          Sets the person email.
 void setName(java.lang.String name)
          Sets the personname.
 void setUri(java.lang.String uri)
          Set the uri
 void setUriResolved(java.lang.String uriResolved)
           
 void setUrl(java.lang.String url)
          Sets the person URL (same as setUri())
 java.lang.String toString()
          Returns the String representation for the object.
 
クラス java.lang.Object から継承されたメソッド
finalize, getClass, notify, notifyAll, wait, wait, wait
 

コンストラクタの詳細

Person

public Person()
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.

getName

public java.lang.String getName()
Returns the person name.

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

setName

public void setName(java.lang.String name)
Sets the personname.

パラメータ:
name - the person name, null if none.

getUrl

public java.lang.String getUrl()
Returns the person URL (same as getUri())

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

setUrl

public void setUrl(java.lang.String url)
Sets the person URL (same as setUri())

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

setUriResolved

public void setUriResolved(java.lang.String uriResolved)

getUriResolved

public java.lang.String getUriResolved(java.lang.String resolveURI)

getEmail

public java.lang.String getEmail()
Returns the person email.

戻り値:
the person email, null if none.

setEmail

public void setEmail(java.lang.String email)
Sets the person email.

パラメータ:
email - the person email, null if none.

getUri

public java.lang.String getUri()
Returns the uri

戻り値:
Returns the uri.
導入されたバージョン:
Atom 1.0

setUri

public void setUri(java.lang.String uri)
Set the uri

パラメータ:
uri - The uri to set.
導入されたバージョン:
Atom 1.0