Class PropertyMaps
public class PropertyMaps extends Object
Java class for Property_Maps complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="Property_Maps">
<complexContent>
<restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
<sequence>
<element name="identifier" type="{http://pds.nasa.gov/pds4/pds/v1}identifier"/>
<element name="title" type="{http://pds.nasa.gov/pds4/pds/v1}title" minOccurs="0"/>
<element name="namespace_id" type="{http://pds.nasa.gov/pds4/pds/v1}namespace_id"/>
<element name="description" type="{http://pds.nasa.gov/pds4/pds/v1}description" minOccurs="0"/>
<element name="external_property_map_id" type="{http://pds.nasa.gov/pds4/pds/v1}external_property_map_id" maxOccurs="unbounded" minOccurs="0"/>
<element name="Property_Map" type="{http://pds.nasa.gov/pds4/pds/v1}Property_Map" maxOccurs="unbounded"/>
</sequence>
</restriction>
</complexContent>
</complexType>
-
Field Summary
Fields Modifier and Type Field Description protected Stringdescriptionprotected List<String>externalPropertyMapIdsprotected Stringidentifierprotected StringnamespaceIdprotected List<PropertyMap>propertyMapsprotected Stringtitle -
Constructor Summary
Constructors Constructor Description PropertyMaps() -
Method Summary
Modifier and Type Method Description StringgetDescription()Gets the value of the description property.List<String>getExternalPropertyMapIds()Gets the value of the externalPropertyMapIds property.StringgetIdentifier()Gets the value of the identifier property.StringgetNamespaceId()Gets the value of the namespaceId property.List<PropertyMap>getPropertyMaps()Gets the value of the propertyMaps property.StringgetTitle()Gets the value of the title property.voidsetDescription(String value)Sets the value of the description property.voidsetIdentifier(String value)Sets the value of the identifier property.voidsetNamespaceId(String value)Sets the value of the namespaceId property.voidsetTitle(String value)Sets the value of the title property.
-
Field Details
-
identifier
-
title
-
namespaceId
-
description
-
externalPropertyMapIds
-
propertyMaps
-
-
Constructor Details
-
PropertyMaps
public PropertyMaps()
-
-
Method Details
-
getIdentifier
Gets the value of the identifier property.- Returns:
- possible object is
String
-
setIdentifier
Sets the value of the identifier property.- Parameters:
value- allowed object isString
-
getTitle
Gets the value of the title property.- Returns:
- possible object is
String
-
setTitle
Sets the value of the title property.- Parameters:
value- allowed object isString
-
getNamespaceId
Gets the value of the namespaceId property.- Returns:
- possible object is
String
-
setNamespaceId
Sets the value of the namespaceId property.- Parameters:
value- allowed object isString
-
getDescription
Gets the value of the description property.- Returns:
- possible object is
String
-
setDescription
Sets the value of the description property.- Parameters:
value- allowed object isString
-
getExternalPropertyMapIds
Gets the value of the externalPropertyMapIds property.This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. This is why there is not a
setmethod for the externalPropertyMapIds property.For example, to add a new item, do as follows:
getExternalPropertyMapIds().add(newItem);Objects of the following type(s) are allowed in the list
String -
getPropertyMaps
Gets the value of the propertyMaps property.This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. This is why there is not a
setmethod for the propertyMaps property.For example, to add a new item, do as follows:
getPropertyMaps().add(newItem);Objects of the following type(s) are allowed in the list
PropertyMap
-