com.google.gdata.data.contacts
Class Website

java.lang.Object
  extended by com.google.gdata.data.AbstractExtension
      extended by com.google.gdata.data.ExtensionPoint
          extended by com.google.gdata.data.contacts.Website
All Implemented Interfaces:
Extension

public class Website
extends ExtensionPoint

Contact related website.


Nested Class Summary
static class Website.Rel
          Known website type.
 
Nested classes/interfaces inherited from class com.google.gdata.data.ExtensionPoint
ExtensionPoint.CumulativeBlobHandler, ExtensionPoint.ExtensionHandler
 
Constructor Summary
Website()
          Default mutable constructor.
Website(java.lang.String href, java.lang.String label, java.lang.Boolean primary, Website.Rel rel)
          Immutable constructor.
 
Method Summary
 boolean equals(java.lang.Object obj)
           
static ExtensionDescription getDefaultDescription(boolean required, boolean repeatable)
          Returns the extension description, specifying whether it is required, and whether it is repeatable.
 java.lang.String getHref()
          Returns the URI of the website.
 java.lang.String getLabel()
          Returns the user defined website label.
 java.lang.Boolean getPrimary()
          Returns the denotes primary website.
 Website.Rel getRel()
          Returns the known website type.
 int hashCode()
           
 boolean hasHref()
          Returns whether it has the URI of the website.
 boolean hasLabel()
          Returns whether it has the user defined website label.
 boolean hasPrimary()
          Returns whether it has the denotes primary website.
 boolean hasRel()
          Returns whether it has the known website type.
 void setHref(java.lang.String href)
          Sets the URI of the website.
 void setLabel(java.lang.String label)
          Sets the user defined website label.
 void setPrimary(java.lang.Boolean primary)
          Sets the denotes primary website.
 void setRel(Website.Rel rel)
          Sets the known website type.
 java.lang.String toString()
           
 
Methods inherited from class com.google.gdata.data.ExtensionPoint
addExtension, addRepeatingExtension, declareExtensions, generateCumulativeXmlBlob, getExtension, getExtensions, getHandler, getRepeatingExtension, getRepeatingExtensions, getXmlBlob, hasExtension, hasRepeatingExtension, parseCumulativeXmlBlob, removeExtension, removeExtension, removeRepeatingExtension, setExtension, setXmlBlob, visit
 
Methods inherited from class com.google.gdata.data.AbstractExtension
disableStrictValidation, enableStrictValidation, generate, getExtensionLocalName, getExtensionNamespace, isImmutable, isStrictValidation, setImmutable
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Constructor Detail

Website

public Website()
Default mutable constructor.


Website

public Website(java.lang.String href,
               java.lang.String label,
               java.lang.Boolean primary,
               Website.Rel rel)
Immutable constructor.

Parameters:
href - URI of the website.
label - user defined website label.
primary - denotes primary website.
rel - known website type.
Method Detail

getHref

public java.lang.String getHref()
Returns the URI of the website.

Returns:
URI of the website

setHref

public void setHref(java.lang.String href)
Sets the URI of the website.

Parameters:
href - URI of the website or null to reset

hasHref

public boolean hasHref()
Returns whether it has the URI of the website.

Returns:
whether it has the URI of the website

getLabel

public java.lang.String getLabel()
Returns the user defined website label.

Returns:
user defined website label

setLabel

public void setLabel(java.lang.String label)
Sets the user defined website label.

Parameters:
label - user defined website label or null to reset

hasLabel

public boolean hasLabel()
Returns whether it has the user defined website label.

Returns:
whether it has the user defined website label

getPrimary

public java.lang.Boolean getPrimary()
Returns the denotes primary website.

Returns:
denotes primary website

setPrimary

public void setPrimary(java.lang.Boolean primary)
Sets the denotes primary website.

Parameters:
primary - denotes primary website or null to reset

hasPrimary

public boolean hasPrimary()
Returns whether it has the denotes primary website.

Returns:
whether it has the denotes primary website

getRel

public Website.Rel getRel()
Returns the known website type.

Returns:
known website type

setRel

public void setRel(Website.Rel rel)
Sets the known website type.

Parameters:
rel - known website type or null to reset

hasRel

public boolean hasRel()
Returns whether it has the known website type.

Returns:
whether it has the known website type

getDefaultDescription

public static ExtensionDescription getDefaultDescription(boolean required,
                                                         boolean repeatable)
Returns the extension description, specifying whether it is required, and whether it is repeatable.

Parameters:
required - whether it is required
repeatable - whether it is repeatable
Returns:
extension description

equals

public boolean equals(java.lang.Object obj)
Overrides:
equals in class java.lang.Object

hashCode

public int hashCode()
Overrides:
hashCode in class java.lang.Object

toString

public java.lang.String toString()
Overrides:
toString in class java.lang.Object