com.google.gdata.data.finance
Class Symbol

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

public class Symbol
extends ExtensionPoint

Stock symbol for the company.


Nested Class Summary
 
Nested classes/interfaces inherited from class com.google.gdata.data.ExtensionPoint
ExtensionPoint.CumulativeBlobHandler, ExtensionPoint.ExtensionHandler
 
Constructor Summary
Symbol()
          Default mutable constructor.
Symbol(java.lang.String exchange, java.lang.String fullName, java.lang.String symbol)
          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 getExchange()
          Returns the exchange symbol for the company or mutual fund.
 java.lang.String getFullName()
          Returns the full name for the company or mutual fund.
 java.lang.String getSymbol()
          Returns the stock symbol for the company or mutual fund.
 boolean hasExchange()
          Returns whether it has the exchange symbol for the company or mutual fund.
 boolean hasFullName()
          Returns whether it has the full name for the company or mutual fund.
 int hashCode()
           
 boolean hasSymbol()
          Returns whether it has the stock symbol for the company or mutual fund.
 void setExchange(java.lang.String exchange)
          Sets the exchange symbol for the company or mutual fund.
 void setFullName(java.lang.String fullName)
          Sets the full name for the company or mutual fund.
 void setSymbol(java.lang.String symbol)
          Sets the stock symbol for the company or mutual fund.
 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

Symbol

public Symbol()
Default mutable constructor.


Symbol

public Symbol(java.lang.String exchange,
              java.lang.String fullName,
              java.lang.String symbol)
Immutable constructor.

Parameters:
exchange - exchange symbol for the company or mutual fund.
fullName - full name for the company or mutual fund.
symbol - stock symbol for the company or mutual fund.
Method Detail

getExchange

public java.lang.String getExchange()
Returns the exchange symbol for the company or mutual fund.

Returns:
exchange symbol for the company or mutual fund

setExchange

public void setExchange(java.lang.String exchange)
Sets the exchange symbol for the company or mutual fund.

Parameters:
exchange - exchange symbol for the company or mutual fund or null to reset

hasExchange

public boolean hasExchange()
Returns whether it has the exchange symbol for the company or mutual fund.

Returns:
whether it has the exchange symbol for the company or mutual fund

getFullName

public java.lang.String getFullName()
Returns the full name for the company or mutual fund.

Returns:
full name for the company or mutual fund

setFullName

public void setFullName(java.lang.String fullName)
Sets the full name for the company or mutual fund.

Parameters:
fullName - full name for the company or mutual fund or null to reset

hasFullName

public boolean hasFullName()
Returns whether it has the full name for the company or mutual fund.

Returns:
whether it has the full name for the company or mutual fund

getSymbol

public java.lang.String getSymbol()
Returns the stock symbol for the company or mutual fund.

Returns:
stock symbol for the company or mutual fund

setSymbol

public void setSymbol(java.lang.String symbol)
Sets the stock symbol for the company or mutual fund.

Parameters:
symbol - stock symbol for the company or mutual fund or null to reset

hasSymbol

public boolean hasSymbol()
Returns whether it has the stock symbol for the company or mutual fund.

Returns:
whether it has the stock symbol for the company or mutual fund

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