Package nl.b3p.csw.jaxb.gml
Class SolidType
-
public class SolidType extends AbstractSolidType
A solid is the basis for 3-dimensional geometry. The extent of a solid is defined by the boundary surfaces (shells). A shell is represented by a composite surface, where every shell is used to represent a single connected component of the boundary of a solid. It consists of a composite surface (a list of orientable surfaces) connected in a topological cycle (an object whose boundary is empty). Unlike a Ring, a Shell's elements have no natural sort order. Like Rings, Shells are simple.Java class for SolidType complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="SolidType"> <complexContent> <extension base="{http://www.opengis.net/gml}AbstractSolidType"> <sequence> <element name="exterior" type="{http://www.opengis.net/gml}SurfacePropertyType" minOccurs="0"/> <element name="interior" type="{http://www.opengis.net/gml}SurfacePropertyType" maxOccurs="unbounded" minOccurs="0"/> </sequence> </extension> </complexContent> </complexType>
-
-
Field Summary
Fields Modifier and Type Field Description protected SurfacePropertyTypeexteriorprotected List<SurfacePropertyType>interior-
Fields inherited from class nl.b3p.csw.jaxb.gml.AbstractGeometryType
axisLabels, gid, srsDimension, srsName, uomLabels
-
Fields inherited from class nl.b3p.csw.jaxb.gml.AbstractGMLType
description, id, metaDataProperty, name
-
-
Constructor Summary
Constructors Constructor Description SolidType()Default no-arg constructorSolidType(List<MetaDataProperty> metaDataProperty, Description description, List<Name> name, String id, String gid, String srsName, BigInteger srsDimension, List<String> axisLabels, List<String> uomLabels, SurfacePropertyType exterior, List<SurfacePropertyType> interior)Fully-initialising value constructor
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description SurfacePropertyTypegetExterior()Gets the value of the exterior property.List<SurfacePropertyType>getInterior()Gets the value of the interior property.voidsetExterior(SurfacePropertyType value)Sets the value of the exterior property.-
Methods inherited from class nl.b3p.csw.jaxb.gml.AbstractGeometryType
getAxisLabels, getGid, getSrsDimension, getSrsName, getUomLabels, setGid, setSrsDimension, setSrsName
-
Methods inherited from class nl.b3p.csw.jaxb.gml.AbstractGMLType
getDescription, getId, getMetaDataProperty, getName, setDescription, setId
-
-
-
-
Field Detail
-
exterior
protected SurfacePropertyType exterior
-
interior
protected List<SurfacePropertyType> interior
-
-
Constructor Detail
-
SolidType
public SolidType()
Default no-arg constructor
-
SolidType
public SolidType(List<MetaDataProperty> metaDataProperty, Description description, List<Name> name, String id, String gid, String srsName, BigInteger srsDimension, List<String> axisLabels, List<String> uomLabels, SurfacePropertyType exterior, List<SurfacePropertyType> interior)
Fully-initialising value constructor
-
-
Method Detail
-
getExterior
public SurfacePropertyType getExterior()
Gets the value of the exterior property.- Returns:
- possible object is
SurfacePropertyType
-
setExterior
public void setExterior(SurfacePropertyType value)
Sets the value of the exterior property.- Parameters:
value- allowed object isSurfacePropertyType
-
getInterior
public List<SurfacePropertyType> getInterior()
Gets the value of the interior 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 interior property.For example, to add a new item, do as follows:
getInterior().add(newItem);Objects of the following type(s) are allowed in the list
SurfacePropertyType
-
-