Class RecordType
- java.lang.Object
-
- nl.b3p.csw.jaxb.csw.AbstractRecordType
-
- nl.b3p.csw.jaxb.csw.DCMIRecordType
-
- nl.b3p.csw.jaxb.csw.RecordType
-
public class RecordType extends DCMIRecordType
This type extends DCMIRecordType to add ows:BoundingBox; it may be used to specify a spatial envelope for the catalogued resource.Java class for RecordType complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="RecordType"> <complexContent> <extension base="{http://www.opengis.net/cat/csw/2.0.2}DCMIRecordType"> <sequence> <element name="AnyText" type="{http://www.opengis.net/cat/csw/2.0.2}EmptyType" maxOccurs="unbounded" minOccurs="0"/> <element ref="{http://www.opengis.net/ows}BoundingBox" maxOccurs="unbounded" minOccurs="0"/> </sequence> </extension> </complexContent> </complexType>
-
-
Field Summary
Fields Modifier and Type Field Description protected List<EmptyType>anyTextprotected List<javax.xml.bind.JAXBElement<? extends BoundingBoxType>>boundingBox-
Fields inherited from class nl.b3p.csw.jaxb.csw.DCMIRecordType
dcElement
-
-
Constructor Summary
Constructors Constructor Description RecordType()Default no-arg constructorRecordType(List<javax.xml.bind.JAXBElement<SimpleLiteral>> dcElement, List<EmptyType> anyText, List<javax.xml.bind.JAXBElement<? extends BoundingBoxType>> boundingBox)Fully-initialising value constructor
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<EmptyType>getAnyText()Gets the value of the anyText property.List<javax.xml.bind.JAXBElement<? extends BoundingBoxType>>getBoundingBox()Gets the value of the boundingBox property.-
Methods inherited from class nl.b3p.csw.jaxb.csw.DCMIRecordType
getDCElement
-
-
-
-
Field Detail
-
boundingBox
protected List<javax.xml.bind.JAXBElement<? extends BoundingBoxType>> boundingBox
-
-
Constructor Detail
-
RecordType
public RecordType()
Default no-arg constructor
-
RecordType
public RecordType(List<javax.xml.bind.JAXBElement<SimpleLiteral>> dcElement, List<EmptyType> anyText, List<javax.xml.bind.JAXBElement<? extends BoundingBoxType>> boundingBox)
Fully-initialising value constructor
-
-
Method Detail
-
getAnyText
public List<EmptyType> getAnyText()
Gets the value of the anyText 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 anyText property.For example, to add a new item, do as follows:
getAnyText().add(newItem);Objects of the following type(s) are allowed in the list
EmptyType
-
getBoundingBox
public List<javax.xml.bind.JAXBElement<? extends BoundingBoxType>> getBoundingBox()
Gets the value of the boundingBox 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 boundingBox property.For example, to add a new item, do as follows:
getBoundingBox().add(newItem);Objects of the following type(s) are allowed in the list
WGS84BoundingBoxBoundingBox
-
-