com.google.gdata.data.extensions
Class CustomProperty

java.lang.Object
  extended by com.google.gdata.data.AbstractExtension
      extended by com.google.gdata.data.extensions.CustomProperty
All Implemented Interfaces:
Extension

public class CustomProperty
extends AbstractExtension

Name-value pair with optional type and unit.


Constructor Summary
CustomProperty()
          Default mutable constructor.
CustomProperty(java.lang.String name, java.lang.String type, java.lang.String unit, java.lang.String value)
          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 getName()
          Returns the can be a URI to indicate a specific ontology.
 java.lang.String getType()
          Returns the datatype such as string, integer, and date, or an ontology-specific URI.
 java.lang.String getUnit()
          Returns the units of data - can also be a URI to indicate a specific ontology.
 java.lang.String getValue()
          Returns the value.
 int hashCode()
           
 boolean hasName()
          Returns whether it has the can be a URI to indicate a specific ontology.
 boolean hasType()
          Returns whether it has the datatype such as string, integer, and date, or an ontology-specific URI.
 boolean hasUnit()
          Returns whether it has the units of data - can also be a URI to indicate a specific ontology.
 boolean hasValue()
          Returns whether it has the value.
 void setName(java.lang.String name)
          Sets the can be a URI to indicate a specific ontology.
 void setType(java.lang.String type)
          Sets the datatype such as string, integer, and date, or an ontology-specific URI.
 void setUnit(java.lang.String unit)
          Sets the units of data - can also be a URI to indicate a specific ontology.
 void setValue(java.lang.String value)
          Sets the value.
 java.lang.String toString()
           
 
Methods inherited from class com.google.gdata.data.AbstractExtension
disableStrictValidation, enableStrictValidation, generate, getExtensionLocalName, getExtensionNamespace, getHandler, isImmutable, isStrictValidation, setImmutable
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Constructor Detail

CustomProperty

public CustomProperty()
Default mutable constructor.


CustomProperty

public CustomProperty(java.lang.String name,
                      java.lang.String type,
                      java.lang.String unit,
                      java.lang.String value)
Immutable constructor.

Parameters:
name - can be a URI to indicate a specific ontology.
type - datatype such as string, integer, and date, or an ontology-specific URI.
unit - units of data - can also be a URI to indicate a specific ontology.
value - value.
Method Detail

getName

public java.lang.String getName()
Returns the can be a URI to indicate a specific ontology.

Returns:
can be a URI to indicate a specific ontology

setName

public void setName(java.lang.String name)
Sets the can be a URI to indicate a specific ontology.

Parameters:
name - can be a URI to indicate a specific ontology or null to reset

hasName

public boolean hasName()
Returns whether it has the can be a URI to indicate a specific ontology.

Returns:
whether it has the can be a URI to indicate a specific ontology

getType

public java.lang.String getType()
Returns the datatype such as string, integer, and date, or an ontology-specific URI.

Returns:
datatype such as string, integer, and date, or an ontology-specific URI

setType

public void setType(java.lang.String type)
Sets the datatype such as string, integer, and date, or an ontology-specific URI.

Parameters:
type - datatype such as string, integer, and date, or an ontology-specific URI or null to reset

hasType

public boolean hasType()
Returns whether it has the datatype such as string, integer, and date, or an ontology-specific URI.

Returns:
whether it has the datatype such as string, integer, and date, or an ontology-specific URI

getUnit

public java.lang.String getUnit()
Returns the units of data - can also be a URI to indicate a specific ontology.

Returns:
units of data - can also be a URI to indicate a specific ontology

setUnit

public void setUnit(java.lang.String unit)
Sets the units of data - can also be a URI to indicate a specific ontology.

Parameters:
unit - units of data - can also be a URI to indicate a specific ontology or null to reset

hasUnit

public boolean hasUnit()
Returns whether it has the units of data - can also be a URI to indicate a specific ontology.

Returns:
whether it has the units of data - can also be a URI to indicate a specific ontology

getValue

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

Returns:
value

setValue

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

Parameters:
value - value or null to reset

hasValue

public boolean hasValue()
Returns whether it has the value.

Returns:
whether it has the value

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