Class PropertyMaps
- java.lang.Object
- 
- gov.nasa.arc.pds.xml.generated.PropertyMaps
 
- 
 public class PropertyMaps extends java.lang.ObjectThe Property Maps class defines a collection of one or more related Property Maps.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 java.lang.Stringdescriptionprotected java.util.List<java.lang.String>externalPropertyMapIdsprotected java.lang.Stringidentifierprotected java.lang.StringnamespaceIdprotected java.util.List<PropertyMap>propertyMapsprotected java.lang.Stringtitle
 - 
Constructor SummaryConstructors Constructor Description PropertyMaps()
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetDescription()Gets the value of the description property.java.util.List<java.lang.String>getExternalPropertyMapIds()Gets the value of the externalPropertyMapIds property.java.lang.StringgetIdentifier()Gets the value of the identifier property.java.lang.StringgetNamespaceId()Gets the value of the namespaceId property.java.util.List<PropertyMap>getPropertyMaps()Gets the value of the propertyMaps property.java.lang.StringgetTitle()Gets the value of the title property.voidsetDescription(java.lang.String value)Sets the value of the description property.voidsetIdentifier(java.lang.String value)Sets the value of the identifier property.voidsetNamespaceId(java.lang.String value)Sets the value of the namespaceId property.voidsetTitle(java.lang.String value)Sets the value of the title property.
 
- 
- 
- 
Field Detail- 
identifierprotected java.lang.String identifier 
 - 
titleprotected java.lang.String title 
 - 
namespaceIdprotected java.lang.String namespaceId 
 - 
descriptionprotected java.lang.String description 
 - 
externalPropertyMapIdsprotected java.util.List<java.lang.String> externalPropertyMapIds 
 - 
propertyMapsprotected java.util.List<PropertyMap> propertyMaps 
 
- 
 - 
Method Detail- 
getIdentifierpublic java.lang.String getIdentifier() Gets the value of the identifier property.- Returns:
- possible object is
     String
 
 - 
setIdentifierpublic void setIdentifier(java.lang.String value) Sets the value of the identifier property.- Parameters:
- value- allowed object is- String
 
 - 
getTitlepublic java.lang.String getTitle() Gets the value of the title property.- Returns:
- possible object is
     String
 
 - 
setTitlepublic void setTitle(java.lang.String value) Sets the value of the title property.- Parameters:
- value- allowed object is- String
 
 - 
getNamespaceIdpublic java.lang.String getNamespaceId() Gets the value of the namespaceId property.- Returns:
- possible object is
     String
 
 - 
setNamespaceIdpublic void setNamespaceId(java.lang.String value) Sets the value of the namespaceId property.- Parameters:
- value- allowed object is- String
 
 - 
getDescriptionpublic java.lang.String getDescription() Gets the value of the description property.- Returns:
- possible object is
     String
 
 - 
setDescriptionpublic void setDescription(java.lang.String value) Sets the value of the description property.- Parameters:
- value- allowed object is- String
 
 - 
getExternalPropertyMapIdspublic java.util.List<java.lang.String> 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- Returns:
- The value of the externalPropertyMapIds property.
 
 - 
getPropertyMapspublic java.util.List<PropertyMap> 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- Returns:
- The value of the propertyMaps property.
 
 
- 
 
-