public class CustomProperty extends AbstractExtension
AbstractExtension.AttributesHandler
localName, namespace
Constructor and Description |
---|
CustomProperty()
Default mutable constructor.
|
CustomProperty(java.lang.String name,
java.lang.String type,
java.lang.String unit,
java.lang.String value)
Immutable constructor.
|
Modifier and Type | Method and Description |
---|---|
protected void |
consumeAttributes(AttributeHelper helper)
Consumes attributes from the attribute helper.
|
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.
|
protected void |
putAttributes(AttributeGenerator generator)
Puts attributes into the attribute generator.
|
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() |
protected void |
validate()
Checks the attributes to see if there are any problems.
|
disableStrictValidation, enableStrictValidation, eq, generate, generate, generateAttributes, getExtensionLocalName, getExtensionNamespace, getHandler, isImmutable, isStrictValidation, sameClassAs, setImmutable, throwExceptionForMissingAttribute, throwExceptionIfImmutable
public CustomProperty()
public CustomProperty(java.lang.String name, java.lang.String type, java.lang.String unit, java.lang.String value)
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.public java.lang.String getName()
public void setName(java.lang.String name)
name
- can be a URI to indicate a specific ontology or
null
to resetpublic boolean hasName()
public java.lang.String getType()
public void setType(java.lang.String type)
type
- datatype such as string, integer, and date, or an
ontology-specific URI or null
to resetpublic boolean hasType()
public java.lang.String getUnit()
public void setUnit(java.lang.String unit)
unit
- units of data - can also be a URI to indicate a specific
ontology or null
to resetpublic boolean hasUnit()
public java.lang.String getValue()
public void setValue(java.lang.String value)
value
- value or null
to resetpublic boolean hasValue()
protected void validate()
AbstractExtension
validate
in class AbstractExtension
public static ExtensionDescription getDefaultDescription(boolean required, boolean repeatable)
required
- whether it is requiredrepeatable
- whether it is repeatableprotected void putAttributes(AttributeGenerator generator)
AbstractExtension
AbstractExtension.generate(XmlWriter,ExtensionProfile)
. Default implementation
does nothing, though generally this is discouraged unless there really are
no attributes.putAttributes
in class AbstractExtension
generator
- attribute generatorprotected void consumeAttributes(AttributeHelper helper) throws ParseException
AbstractExtension
AttributeHelper.consumeContent(boolean)
to consume the element's text
content. Called from AbstractExtension.getHandler(com.google.gdata.data.ExtensionProfile, java.lang.String, java.lang.String, org.xml.sax.Attributes)
. Default implementation does
nothing, though generally this is discouraged unless there really are no
attributes.consumeAttributes
in class AbstractExtension
helper
- attribute helperParseException
- any parsing exceptionpublic boolean equals(java.lang.Object obj)
equals
in class java.lang.Object
public int hashCode()
hashCode
in class java.lang.Object
public java.lang.String toString()
toString
in class java.lang.Object