Class TLcdKML22SimpleData
java.lang.Object
com.luciad.datamodel.TLcdDataObject
com.luciad.format.kml22.model.extendeddata.TLcdKML22SimpleData
- All Implemented Interfaces:
ILcdDataObject
,ILcdCloneable
,ILcdDeepCloneable
,Cloneable
Domain class modeling the KML SimpleDataType type.
OGC KML Specification description:
Encodes an instance of a user-defined field defined by a referenced kml:SimpleField. The value of kml:SimpleData shall be of the data type defined by the referenced kml:SimpleField. The required name attribute shall be used to identify the kml:SimpleField by name. The identified kml:SimpleField shall be declared within the kml:Schema element that is referenced from the kml:SchemaURL attribute.
- Since:
- 10.0
-
Field Summary
Modifier and TypeFieldDescriptionstatic final TLcdDataProperty
Data property that maps to thename
attribute.static final TLcdDataProperty
Data property that maps to the value defined by the simple content. -
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptiongetName()
Returns the value of the property that maps to thename
attribute.Returns the value of the property that maps to the value defined by the simple content.void
Sets the value of the property that maps to thename
attribute.void
setValueObject
(String aValue) Sets the value of the property that maps to the value defined by the simple content.
-
Field Details
-
VALUE_PROPERTY
Data property that maps to the value defined by the simple content. The possible values for this property are instances ofString
. -
NAME_PROPERTY
Data property that maps to thename
attribute. The possible values for this property are instances ofString
.
-
-
Constructor Details
-
TLcdKML22SimpleData
public TLcdKML22SimpleData() -
TLcdKML22SimpleData
-
-
Method Details
-
getValueObject
Returns the value of the property that maps to the value defined by the simple content.- Returns:
- the value of the
VALUE_PROPERTY
property.
-
setValueObject
Sets the value of the property that maps to the value defined by the simple content.- Parameters:
aValue
- the value to set for theVALUE_PROPERTY
property.
-
getName
Returns the value of the property that maps to thename
attribute.- Returns:
- the value of the
NAME_PROPERTY
property.
-
setName
Sets the value of the property that maps to thename
attribute.- Parameters:
aValue
- the value to set for theNAME_PROPERTY
property.
-