Package net.opengis.gml311
Interface RectangleType
- 
- All Superinterfaces:
- AbstractSurfacePatchType,- EObject,- Notifier
 - All Known Implementing Classes:
- RectangleTypeImpl
 
 public interface RectangleType extends AbstractSurfacePatchType A representation of the model object 'Rectangle Type'. Represents a rectangle as a surface with an outer boundary consisting of a linear ring. Note that this is a polygon (subtype) with no inner boundaries. The number of points in the linear ring must be five.The following features are supported: - See Also:
- Gml311Package.getRectangleType()
 
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description AbstractRingPropertyTypegetExterior()Returns the value of the 'Exterior' containment reference.FeatureMapgetExteriorGroup()Returns the value of the 'Exterior Group' attribute list.SurfaceInterpolationTypegetInterpolation()Returns the value of the 'Interpolation' attribute.booleanisSetInterpolation()Returns whether the value of the 'Interpolation' attribute is set.voidsetExterior(AbstractRingPropertyType value)Sets the value of the 'Exterior' containment reference.voidsetInterpolation(SurfaceInterpolationType value)Sets the value of the 'Interpolation' attribute.voidunsetInterpolation()Unsets the value of the 'Interpolation' attribute.
 
- 
- 
- 
Method Detail- 
getExteriorGroupFeatureMap getExteriorGroup() Returns the value of the 'Exterior Group' attribute list. The list contents are of typeFeatureMap.Entry. Constraint: The Ring shall be a LinearRing and must form a rectangle; the first and the last position must be co-incident.- Returns:
- the value of the 'Exterior Group' attribute list.
- See Also:
- Gml311Package.getRectangleType_ExteriorGroup()
 
 - 
getExteriorAbstractRingPropertyType getExterior() Returns the value of the 'Exterior' containment reference. Constraint: The Ring shall be a LinearRing and must form a rectangle; the first and the last position must be co-incident.- Returns:
- the value of the 'Exterior' containment reference.
- See Also:
- setExterior(AbstractRingPropertyType),- Gml311Package.getRectangleType_Exterior()
 
 - 
setExteriorvoid setExterior(AbstractRingPropertyType value) Sets the value of the 'Exterior' containment reference.- Parameters:
- value- the new value of the 'Exterior' containment reference.
- See Also:
- getExterior()
 
 - 
getInterpolationSurfaceInterpolationType getInterpolation() Returns the value of the 'Interpolation' attribute. The default value is"planar". The literals are from the enumerationSurfaceInterpolationType. The attribute "interpolation" specifies the interpolation mechanism used for this surface patch. Currently only planar surface patches are defined in GML 3, the attribute is fixed to "planar", i.e. the interpolation method shall return points on a single plane. The boundary of the patch shall be contained within that plane.- Returns:
- the value of the 'Interpolation' attribute.
- See Also:
- SurfaceInterpolationType,- isSetInterpolation(),- unsetInterpolation(),- setInterpolation(SurfaceInterpolationType),- Gml311Package.getRectangleType_Interpolation()
 
 - 
setInterpolationvoid setInterpolation(SurfaceInterpolationType value) Sets the value of the 'Interpolation' attribute.- Parameters:
- value- the new value of the 'Interpolation' attribute.
- See Also:
- SurfaceInterpolationType,- isSetInterpolation(),- unsetInterpolation(),- getInterpolation()
 
 - 
unsetInterpolationvoid unsetInterpolation() Unsets the value of the 'Interpolation' attribute.
 - 
isSetInterpolationboolean isSetInterpolation() Returns whether the value of the 'Interpolation' attribute is set.- Returns:
- whether the value of the 'Interpolation' attribute is set.
- See Also:
- unsetInterpolation(),- getInterpolation(),- setInterpolation(SurfaceInterpolationType)
 
 
- 
 
-