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 SummaryFields Modifier and Type Field Description protected Stringdescriptionprotected List<String>externalPropertyMapIdsprotected Stringidentifierprotected StringnamespaceIdprotected List<PropertyMap>propertyMapsprotected Stringtitle
- 
Constructor SummaryConstructors Constructor Description PropertyMaps()
- 
Method SummaryModifier 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- 
PropertyMapspublic PropertyMaps()
 
- 
- 
Method Details- 
getIdentifierGets the value of the identifier property.- Returns:
- possible object is
     String
 
- 
setIdentifierSets the value of the identifier property.- Parameters:
- value- allowed object is- String
 
- 
getTitleGets the value of the title property.- Returns:
- possible object is
     String
 
- 
setTitleSets the value of the title property.- Parameters:
- value- allowed object is- String
 
- 
getNamespaceIdGets the value of the namespaceId property.- Returns:
- possible object is
     String
 
- 
setNamespaceIdSets the value of the namespaceId property.- Parameters:
- value- allowed object is- String
 
- 
getDescriptionGets the value of the description property.- Returns:
- possible object is
     String
 
- 
setDescriptionSets the value of the description property.- Parameters:
- value- allowed object is- String
 
- 
getExternalPropertyMapIdsGets 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
- 
getPropertyMapsGets 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
 
-