Class CompositeStructure
public class CompositeStructure extends Object
Java class for Composite_Structure complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="Composite_Structure">
<complexContent>
<restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
<sequence>
<element name="title" type="{http://pds.nasa.gov/pds4/pds/v1}title" minOccurs="0"/>
<element name="local_identifier" type="{http://pds.nasa.gov/pds4/pds/v1}local_identifier" minOccurs="0"/>
<element name="type_description" type="{http://pds.nasa.gov/pds4/pds/v1}type_description" minOccurs="0"/>
<element name="description" type="{http://pds.nasa.gov/pds4/pds/v1}description" minOccurs="0"/>
<element name="Local_ID_Reference" type="{http://pds.nasa.gov/pds4/pds/v1}Local_ID_Reference" maxOccurs="unbounded"/>
<element name="Local_ID_Relation" type="{http://pds.nasa.gov/pds4/pds/v1}Local_ID_Relation" maxOccurs="unbounded"/>
</sequence>
</restriction>
</complexContent>
</complexType>
-
Field Summary
Fields Modifier and Type Field Description protected Stringdescriptionprotected StringlocalIdentifierprotected List<LocalIDReference>localIDReferencesprotected List<LocalIDRelation>localIDRelationsprotected Stringtitleprotected StringtypeDescription -
Constructor Summary
Constructors Constructor Description CompositeStructure() -
Method Summary
Modifier and Type Method Description StringgetDescription()Gets the value of the description property.StringgetLocalIdentifier()Gets the value of the localIdentifier property.List<LocalIDReference>getLocalIDReferences()Gets the value of the localIDReferences property.List<LocalIDRelation>getLocalIDRelations()Gets the value of the localIDRelations property.StringgetTitle()Gets the value of the title property.StringgetTypeDescription()Gets the value of the typeDescription property.voidsetDescription(String value)Sets the value of the description property.voidsetLocalIdentifier(String value)Sets the value of the localIdentifier property.voidsetTitle(String value)Sets the value of the title property.voidsetTypeDescription(String value)Sets the value of the typeDescription property.
-
Field Details
-
title
-
localIdentifier
-
typeDescription
-
description
-
localIDReferences
-
localIDRelations
-
-
Constructor Details
-
CompositeStructure
public CompositeStructure()
-
-
Method Details
-
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
-
getLocalIdentifier
Gets the value of the localIdentifier property.- Returns:
- possible object is
String
-
setLocalIdentifier
Sets the value of the localIdentifier property.- Parameters:
value- allowed object isString
-
getTypeDescription
Gets the value of the typeDescription property.- Returns:
- possible object is
String
-
setTypeDescription
Sets the value of the typeDescription 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
-
getLocalIDReferences
Gets the value of the localIDReferences 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 localIDReferences property.For example, to add a new item, do as follows:
getLocalIDReferences().add(newItem);Objects of the following type(s) are allowed in the list
LocalIDReference -
getLocalIDRelations
Gets the value of the localIDRelations 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 localIDRelations property.For example, to add a new item, do as follows:
getLocalIDRelations().add(newItem);Objects of the following type(s) are allowed in the list
LocalIDRelation
-