- All Known Subinterfaces:
Attribute<V>
,DynamicAttribute<V>
,FeatureAssociation
public interface Property
An instance of a
PropertyType
.
A property is usually part of another entity such as a Feature
.
This interface is the parent type of attribute and
feature association but not feature.
A property is a wrapper around an arbitrary object or value. It provides the following information:
- A value, available via the
getValue()
method. The value can be set via a setter method provided by the sub-interface. - A type, available via the
getType()
orgetRole()
method provided by the sub-interface. ThePropertyType
defines information about the property. This includes which Java class the value of the property is an instance of, any restrictions on the value, etc.
- Since:
- 3.1
-
Method Details
-
getName
Returns the name of this property. This is a convenience method forgetType().getName()
orgetRole().getName()
, depending on the sub-interface.- Returns:
- name of this property.
-
getValue
Returns the value or content of the property, ornull
if none.- If this property is an
Attribute
, then the returned object may be an instance of any Java class assignable toAttributeType.getValueClass()
. - If this property is an
FeatureAssociation
, then the returned object is aFeature
.
- Returns:
- the value of the property, or
null
if none.
- If this property is an
-