public class CustomProperty extends AbstractExtension
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 |
---|---|
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() |
disableStrictValidation, enableStrictValidation, generate, getExtensionLocalName, getExtensionNamespace, getHandler, isImmutable, isStrictValidation, setImmutable
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()
public static ExtensionDescription getDefaultDescription(boolean required, boolean repeatable)
required
- whether it is requiredrepeatable
- whether it is repeatablepublic 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