Package nl.b3p.csw.jaxb.filter
Class SortByType
- java.lang.Object
-
- nl.b3p.csw.jaxb.filter.SortByType
-
public class SortByType extends Object
Java class for SortByType complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="SortByType"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="SortProperty" type="{http://www.opengis.net/ogc}SortPropertyType" maxOccurs="unbounded"/> </sequence> </restriction> </complexContent> </complexType>
-
-
Field Summary
Fields Modifier and Type Field Description protected List<SortPropertyType>sortProperty
-
Constructor Summary
Constructors Constructor Description SortByType()Default no-arg constructorSortByType(List<SortPropertyType> sortProperty)Fully-initialising value constructor
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<SortPropertyType>getSortProperty()Gets the value of the sortProperty property.
-
-
-
Field Detail
-
sortProperty
protected List<SortPropertyType> sortProperty
-
-
Constructor Detail
-
SortByType
public SortByType()
Default no-arg constructor
-
SortByType
public SortByType(List<SortPropertyType> sortProperty)
Fully-initialising value constructor
-
-
Method Detail
-
getSortProperty
public List<SortPropertyType> getSortProperty()
Gets the value of the sortProperty 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 sortProperty property.For example, to add a new item, do as follows:
getSortProperty().add(newItem);Objects of the following type(s) are allowed in the list
SortPropertyType
-
-