Package nl.b3p.csw.jaxb.csw
Class ElementSetNameType
- java.lang.Object
-
- nl.b3p.csw.jaxb.csw.ElementSetNameType
-
public class ElementSetNameType extends Object
Java class for ElementSetNameType complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="ElementSetNameType"> <simpleContent> <extension base="<http://www.opengis.net/cat/csw/2.0.2>ElementSetType"> <attribute name="typeNames" type="{http://www.opengis.net/cat/csw/2.0.2}TypeNameListType" /> </extension> </simpleContent> </complexType>
-
-
Field Summary
Fields Modifier and Type Field Description protected List<QName>typeNamesprotected ElementSetTypevalue
-
Constructor Summary
Constructors Constructor Description ElementSetNameType()Default no-arg constructorElementSetNameType(ElementSetType value, List<QName> typeNames)Fully-initialising value constructor
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<QName>getTypeNames()Gets the value of the typeNames property.ElementSetTypegetValue()Named subsets of catalogue object properties; these views are mapped to a specific information model and are defined in an application profile.voidsetValue(ElementSetType value)Sets the value of the value property.
-
-
-
Field Detail
-
value
protected ElementSetType value
-
-
Constructor Detail
-
ElementSetNameType
public ElementSetNameType()
Default no-arg constructor
-
ElementSetNameType
public ElementSetNameType(ElementSetType value, List<QName> typeNames)
Fully-initialising value constructor
-
-
Method Detail
-
getValue
public ElementSetType getValue()
Named subsets of catalogue object properties; these views are mapped to a specific information model and are defined in an application profile.- Returns:
- possible object is
ElementSetType
-
setValue
public void setValue(ElementSetType value)
Sets the value of the value property.- Parameters:
value- allowed object isElementSetType
-
getTypeNames
public List<QName> getTypeNames()
Gets the value of the typeNames 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 typeNames property.For example, to add a new item, do as follows:
getTypeNames().add(newItem);Objects of the following type(s) are allowed in the list
QName
-
-