Class PropertyMaps
- java.lang.Object
-
- gov.nasa.arc.pds.xml.generated.PropertyMaps
-
public class PropertyMaps extends java.lang.Object
The 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 Summary
Fields Modifier and Type Field Description protected java.lang.String
description
protected java.util.List<java.lang.String>
externalPropertyMapIds
protected java.lang.String
identifier
protected java.lang.String
namespaceId
protected java.util.List<PropertyMap>
propertyMaps
protected java.lang.String
title
-
Constructor Summary
Constructors Constructor Description PropertyMaps()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
getDescription()
Gets the value of the description property.java.util.List<java.lang.String>
getExternalPropertyMapIds()
Gets the value of the externalPropertyMapIds property.java.lang.String
getIdentifier()
Gets the value of the identifier property.java.lang.String
getNamespaceId()
Gets the value of the namespaceId property.java.util.List<PropertyMap>
getPropertyMaps()
Gets the value of the propertyMaps property.java.lang.String
getTitle()
Gets the value of the title property.void
setDescription(java.lang.String value)
Sets the value of the description property.void
setIdentifier(java.lang.String value)
Sets the value of the identifier property.void
setNamespaceId(java.lang.String value)
Sets the value of the namespaceId property.void
setTitle(java.lang.String value)
Sets the value of the title property.
-
-
-
Field Detail
-
identifier
protected java.lang.String identifier
-
title
protected java.lang.String title
-
namespaceId
protected java.lang.String namespaceId
-
description
protected java.lang.String description
-
externalPropertyMapIds
protected java.util.List<java.lang.String> externalPropertyMapIds
-
propertyMaps
protected java.util.List<PropertyMap> propertyMaps
-
-
Method Detail
-
getIdentifier
public java.lang.String getIdentifier()
Gets the value of the identifier property.- Returns:
- possible object is
String
-
setIdentifier
public void setIdentifier(java.lang.String value)
Sets the value of the identifier property.- Parameters:
value
- allowed object isString
-
getTitle
public java.lang.String getTitle()
Gets the value of the title property.- Returns:
- possible object is
String
-
setTitle
public void setTitle(java.lang.String value)
Sets the value of the title property.- Parameters:
value
- allowed object isString
-
getNamespaceId
public java.lang.String getNamespaceId()
Gets the value of the namespaceId property.- Returns:
- possible object is
String
-
setNamespaceId
public void setNamespaceId(java.lang.String value)
Sets the value of the namespaceId property.- Parameters:
value
- allowed object isString
-
getDescription
public java.lang.String getDescription()
Gets the value of the description property.- Returns:
- possible object is
String
-
setDescription
public void setDescription(java.lang.String value)
Sets the value of the description property.- Parameters:
value
- allowed object isString
-
getExternalPropertyMapIds
public 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
set
method 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.
-
getPropertyMaps
public 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
set
method 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.
-
-