deegree 2.3 (2010/04/09 10:10 build-4-official)

Uses of Interface
org.deegree.model.feature.Feature

Packages that use Feature
org.deegree.graphics   
org.deegree.graphics.displayelements   
org.deegree.graphics.sld   
org.deegree.io.datastore   
org.deegree.io.datastore.idgenerator   
org.deegree.io.datastore.sde   
org.deegree.io.datastore.sql   
org.deegree.io.datastore.sql.generic   
org.deegree.io.datastore.sql.transaction   
org.deegree.io.datastore.sql.transaction.insert   
org.deegree.io.dbaseapi   
org.deegree.io.quadtree   
org.deegree.io.shpapi   
org.deegree.model.crs   
org.deegree.model.feature   
org.deegree.model.filterencoding   
org.deegree.ogcwebservices.wfs.operation   
org.deegree.ogcwebservices.wfs.operation.transaction   
org.deegree.ogcwebservices.wpvs.j3d   
org.deegree.security.drm.model   
org.deegree.security.owsrequestvalidator   
 

Uses of Feature in org.deegree.graphics
 

Methods in org.deegree.graphics that return Feature
 Feature[] FeatureLayer.getAllFeatures()
          returns all features
 Feature FeatureLayer.getFeature(int index)
          returns the feature that matches the submitted index
 Feature FeatureLayer.getFeatureById(String id)
          returns the feature that matches the submitted id
 Feature[] FeatureLayer.getFeaturesById(String[] ids)
          returns the feature that matches the submitted id
 

Methods in org.deegree.graphics with parameters of type Feature
 void FeatureLayer.addFeature(Feature feature)
          adds a feature to the layer
 void Highlighter.highlight(Feature feature)
          highlight the submitted feature.
 void FeatureLayer.removeFeature(Feature feature)
          removes a display Element from the layer
 

Uses of Feature in org.deegree.graphics.displayelements
 

Classes in org.deegree.graphics.displayelements that implement Feature
 class ScaledFeature
          This class is a wrapper for a Feature and a Feature itself.
 

Fields in org.deegree.graphics.displayelements declared as Feature
protected  Feature AbstractDisplayElement.feature
          The feature to display
 

Methods in org.deegree.graphics.displayelements that return Feature
 Feature ScaledFeature.cloneDeep()
           
 Feature DisplayElement.getFeature()
          Returns the associated Feature.
 Feature AbstractDisplayElement.getFeature()
          Returns the associated Feature.
 

Methods in org.deegree.graphics.displayelements with parameters of type Feature
static LabelDisplayElement DisplayElementFactory.buildLabelDisplayElement(Feature feature, Geometry geom, TextSymbolizer sym)
          Creates a LabelDisplayElement using the given geometry and style information.
static LineStringDisplayElement DisplayElementFactory.buildLineStringDisplayElement(Feature feature, Geometry geom, LineSymbolizer sym)
          Creates a LineStringDisplayElement using the given geometry and style information.
static PointDisplayElement DisplayElementFactory.buildPointDisplayElement(Feature feature, Geometry geom, PointSymbolizer sym)
          Creates a PointDisplayElement using the given geometry and style information.
static PolygonDisplayElement DisplayElementFactory.buildPolygonDisplayElement(Feature feature, Geometry geom, PolygonSymbolizer sym)
          Creates a PolygonDisplayElement using the given geometry and style information.
static Label LabelFactory.createLabel(String caption, Font font, Color color, LineMetrics metrics, Feature feature, Halo halo, int x, int y, int w, int h, double rotation, double[] anchorPoint, double[] displacement)
          Deprecated. use the one with opacity instead
static Label LabelFactory.createLabel(String caption, Font font, Color color, LineMetrics metrics, Feature feature, Halo halo, int x, int y, int w, int h, double rotation, double[] anchorPoint, double[] displacement, double opacity)
           
static Label LabelFactory.createLabel(String caption, Font font, Color color, LineMetrics metrics, Feature feature, Halo halo, int x, int y, int w, int h, double rotation, double anchorPointX, double anchorPointY, double displacementX, double displacementY)
          Deprecated. use the one with opacity instead
static Label LabelFactory.createLabel(String caption, Font font, Color color, LineMetrics metrics, Feature feature, Halo halo, int x, int y, int w, int h, double rotation, double anchorPointX, double anchorPointY, double displacementX, double displacementY, double opacity)
           
static HorizontalLabel LabelFactory.createLabelInABox(String text, Font font, Color color, Halo halo, double x, double y, double w, double h, Feature feature, GeoTransform projection)
          Deprecated. use the one with opacity instead
static HorizontalLabel LabelFactory.createLabelInABox(String text, Font font, Color color, Halo halo, double x, double y, double w, double h, Feature feature, GeoTransform projection, double opacity)
           
 void DisplayElement.setFeature(Feature feature)
          Sets the associated Feature.
 void AbstractDisplayElement.setFeature(Feature feature)
          sets the feature encapsulated by a DisplayElement
 

Constructors in org.deegree.graphics.displayelements with parameters of type Feature
AbstractDisplayElement(Feature feature)
           
GeometryDisplayElement(Feature feature, Geometry geometry)
          Creates a new GeometryDisplayElement object.
GeometryDisplayElement(Feature feature, Geometry geometry, Symbolizer symbolizer)
          Creates a new GeometryDisplayElement object.
GeometryDisplayElement(Feature feature, Geometry geometry, Symbolizer symbolizer, Symbolizer highlightSymbolizer, Symbolizer selectedSymbolizer)
          Creates a new GeometryDisplayElement object.
HorizontalLabel(String caption, Font font, Color color, LineMetrics metrics, Feature feature, Halo halo, int x, int y, int w, int h, double[] anchorPoint, double[] displacement, double opacity)
           
LabelDisplayElement(Feature feature, Geometry geometry, TextSymbolizer symbolizer)
          Creates a new LabelDisplayElement object.
LineStringDisplayElement(Feature feature, Curve geometry)
          Creates a new LineStringDisplayElement object.
LineStringDisplayElement(Feature feature, Curve geometry, LineSymbolizer symbolizer)
          Creates a new LineStringDisplayElement object.
LineStringDisplayElement(Feature feature, MultiCurve geometry)
          Creates a new LineStringDisplayElement object.
LineStringDisplayElement(Feature feature, MultiCurve geometry, LineSymbolizer symbolizer)
          Creates a new LineStringDisplayElement object.
LocalizedDisplayElement(Feature feature, MultiPoint geometry, Component renderbaleObject)
          Creates a new LocalizedDisplayElement_Impl object.
PointDisplayElement(Feature feature, MultiPoint geometry)
          Creates a new PointDisplayElement object.
PointDisplayElement(Feature feature, MultiPoint geometry, PointSymbolizer symbolizer)
          Creates a new PointDisplayElement object.
PointDisplayElement(Feature feature, Point geometry)
          Creates a new PointDisplayElement_Impl object.
PointDisplayElement(Feature feature, Point geometry, PointSymbolizer symbolizer)
          Creates a new PointDisplayElement_Impl object.
PolygonDisplayElement(Feature feature, MultiSurface geometry)
          Creates a new PolygonDisplayElement object.
PolygonDisplayElement(Feature feature, MultiSurface geometry, PolygonSymbolizer symbolizer)
          Creates a new PolygonDisplayElement object.
PolygonDisplayElement(Feature feature, Surface geometry)
          Creates a new PolygonDisplayElement object.
PolygonDisplayElement(Feature feature, Surface geometry, PolygonSymbolizer symbolizer)
          Creates a new PolygonDisplayElement object.
RotatedLabel(String caption, Font font, Color color, LineMetrics metrics, Feature feature, Halo halo, int x, int y, int w, int h, double rotation, double[] anchorPoint, double opacity)
           
ScaledFeature(Feature feature, double scale)
           
 

Uses of Feature in org.deegree.graphics.sld
 

Methods in org.deegree.graphics.sld with parameters of type Feature
 String ParameterValueType.evaluate(Feature feature)
          Returns the actual String value of this object.
 double[] PointPlacement.getAnchorPoint(Feature feature)
          The AnchorPoint element of a PointPlacement gives the location inside of a label to use for anchoring the label to the main-geometry point.
 BufferedImage Graphic.getAsImage(Feature feature)
          Returns a BufferedImage representing this object.
 BufferedImage Mark.getAsImage(Feature feature, int size)
          Draws the given feature on the buffered image.
 BufferedImage ExternalGraphic.getAsImage(int targetSizeX, int targetSizeY, Feature feature)
          returns the external graphic as an image. this method is not part of the sld specifications but it is added for speed up applications
 Color Font.getColor(Feature feature)
          Returns the (evaluated) value of the font's CssParameter 'font-color'.
 float[] Stroke.getDashArray(Feature feature)
          Evaluates the 'stroke-dasharray' parameter as defined in OGC 02-070.
 float Stroke.getDashOffset(Feature feature)
          The stroke-dashoffset CssParameter element specifies the distance as a float into the stroke-dasharray pattern at which to start drawing.
 double[] PointPlacement.getDisplacement(Feature feature)
          The Displacement element of a PointPlacement gives the X and Y displacements from the main-geometry point to render a text label.
 String Font.getFamily(Feature feature)
          Returns the (evaluated) value of the font's CssParameter 'font-family'.
 Color Fill.getFill(Feature feature)
          Returns the (evaluated) value of the fill's CssParameter 'fill'.
 int LinePlacement.getGap(Feature feature)
          Defines the distance between two captions on the line string.
 int Stroke.getLineCap(Feature feature)
          Thestroke-linecap CssParameter element encode enumerated values telling how line strings should be capped (at the two ends of the line string).
 int Stroke.getLineJoin(Feature feature)
          The stroke-linejoin CssParameter element encode enumerated values telling how line strings should be joined (between line segments).
 double LinePlacement.getLineWidth(Feature feature)
          Provides the thickness of the styled line (needed as information for the correct positioning of labels above and below the line string).
 double Graphic.getOpacity(Feature feature)
          The Opacity element gives the opacity to use for rendering the graphic.
 double Stroke.getOpacity(Feature feature)
          The stroke-opacity CssParameter element specifies the level of translucency to use when rendering the stroke.
 double Fill.getOpacity(Feature feature)
          Returns the (evaluated) value of the fill's CssParameter 'fill-opacity'.
 double LinePlacement.getPerpendicularOffset(Feature feature)
          The PerpendicularOffset element of a LinePlacement gives the perpendicular distance away from a line to draw a label.
 int LinePlacement.getPlacementType(Feature feature)
          Returns the placement type (one of the constants defined in LinePlacement).
 double Halo.getRadius(Feature feature)
          The Radius element gives the absolute size of a halo radius in pixels encoded as a floating-point number.
 double PointPlacement.getRotation(Feature feature)
          The Rotation of a PointPlacement gives the clockwise rotation of the label in degrees from the normal direction for a font (left-to-right for Latin- derived human languages at least).
 double Graphic.getRotation(Feature feature)
          The Rotation element gives the rotation of a graphic in the clockwise direction about its center point in radian, encoded as a floating- point number.
 double Graphic.getSize(Feature feature)
          The Size element gives the absolute size of the graphic in pixels encoded as a floating-point number.
 int Font.getSize(Feature feature)
          Returns the (evaluated) value of the font's CssParameter 'font-size'.
 Color Stroke.getStroke(Feature feature)
          The stroke CssParameter element gives the solid color that will be used for a stroke.
 int Font.getStyle(Feature feature)
          Returns the (evaluated) value of the font's CssParameter 'font-style'.
(package private)  String CssParameter.getValue(Feature feature)
          Returns the (evaluated) value of the CssParameter as a simple String.
 int Font.getWeight(Feature feature)
          Returns the (evaluated) value of the font's CssParameter 'font-weight' as a ParameterValueType.
 double Stroke.getWidth(Feature feature)
          The stroke-width CssParameter element gives the absolute width (thickness) of a stroke in pixels encoded as a float.
 

Uses of Feature in org.deegree.io.datastore
 

Methods in org.deegree.io.datastore with parameters of type Feature
 int DatastoreTransaction.performUpdate(MappedFeatureType mappedFeatureType, Feature replacementFeature, Filter filter, String lockId)
          Performs a replace-update operation against the datastore.
 

Method parameters in org.deegree.io.datastore with type arguments of type Feature
 List<FeatureId> DatastoreTransaction.performInsert(List<Feature> features)
          Inserts the given feature instances into the datastore.
 

Uses of Feature in org.deegree.io.datastore.idgenerator
 

Methods in org.deegree.io.datastore.idgenerator with parameters of type Feature
 void FeatureIdAssigner.assignFID(Feature feature, DatastoreTransaction ta)
          Assigns valid FeatureIds to the given feature instance and it's subfeatures.
 

Uses of Feature in org.deegree.io.datastore.sde
 

Fields in org.deegree.io.datastore.sde with type parameters of type Feature
protected  Map<String,Feature> SDEQueryHandler.featureMap
          key: feature id value, value: Feature
 

Methods in org.deegree.io.datastore.sde that return Feature
protected  Feature SDEQueryHandler.extractFeature(FeatureId fid, MappedFeatureType featureType, Map<MappedPropertyType,Collection<PropertyPath>> requestedPropertyMap, Map<MappingField,Integer> mappingFieldsMap, Object[] resultValues)
          Extracts a feature from the values of a result set row.
 

Methods in org.deegree.io.datastore.sde with parameters of type Feature
 int SDETransaction.performReplace(MappedFeatureType mappedFeatureType, Feature replacementFeature, Filter filter, String lockId)
          Performs a replace operation against the datastore.
 int SDETransaction.performUpdate(MappedFeatureType mappedFeatureType, Feature replacementFeature, Filter filter, String lockId)
          Performs an update operation against the datastore.
 

Method parameters in org.deegree.io.datastore.sde with type arguments of type Feature
 List<FeatureId> SDETransaction.performInsert(List<Feature> features)
          Inserts the given feature instances into the datastore.
 List<FeatureId> SDEInsertHandler.performInsert(List<Feature> features)
          Inserts the given feature instance into the datastore.
 

Uses of Feature in org.deegree.io.datastore.sql
 

Fields in org.deegree.io.datastore.sql with type parameters of type Feature
protected  Map<FeatureId,Feature> FeatureFetcher.featureMap
           
 

Methods in org.deegree.io.datastore.sql that return Feature
protected  Feature FeatureFetcher.extractFeature(FeatureId fid, Map<MappedPropertyType,Collection<PropertyPath>> requestedPropertyMap, Map<SimpleContent,Integer> resultPosMap, Object[] resultValues)
          Extracts a feature from the values of a result set row.
 

Uses of Feature in org.deegree.io.datastore.sql.generic
 

Methods in org.deegree.io.datastore.sql.generic with parameters of type Feature
 int GenericSQLTransaction.performUpdate(MappedFeatureType mappedFeatureType, Feature replacementFeature, Filter filter, String lockId)
           
 

Method parameters in org.deegree.io.datastore.sql.generic with type arguments of type Feature
 List<FeatureId> GenericSQLTransaction.performInsert(List<Feature> features)
           
 

Uses of Feature in org.deegree.io.datastore.sql.transaction
 

Methods in org.deegree.io.datastore.sql.transaction with parameters of type Feature
 int UpdateHandler.performUpdate(MappedFeatureType mappedFeatureType, Feature replacementFeature, Filter filter)
          Performs an update operation (replace-style) against the associated datastore.
 int SQLTransaction.performUpdate(MappedFeatureType mappedFeatureType, Feature replacementFeature, Filter filter, String lockId)
          Performs a update (replace-style) operation against the datastore.
 

Method parameters in org.deegree.io.datastore.sql.transaction with type arguments of type Feature
 List<FeatureId> SQLTransaction.performInsert(List<Feature> features)
          Inserts the given feature instances into the datastore.
 

Uses of Feature in org.deegree.io.datastore.sql.transaction.insert
 

Method parameters in org.deegree.io.datastore.sql.transaction.insert with type arguments of type Feature
 List<FeatureId> InsertHandler.performInsert(List<Feature> features)
          Inserts the given feature instance into the datastore.
 

Uses of Feature in org.deegree.io.dbaseapi
 

Methods in org.deegree.io.dbaseapi that return Feature
 Feature DBaseFile.getFRow(int rowNo)
          Returns a row of the dBase file as a Feature instance.
 

Uses of Feature in org.deegree.io.quadtree
 

Methods in org.deegree.io.quadtree with parameters of type Feature
protected  void DBQuadtreeManager.storeFeature(Feature feature, T id, JDBCConnection jdbc)
          stores one feature into the defined table
 

Uses of Feature in org.deegree.io.shpapi
 

Methods in org.deegree.io.shpapi that return Feature
 Feature ShapeFile.getFeatureByRecNo(int RecNo)
          Returns the given entry of the shape file as a Feature instance.
 

Uses of Feature in org.deegree.model.crs
 

Methods in org.deegree.model.crs that return Feature
 Feature GeoTransformer.transform(Feature feature)
          transforms all geometries contained within the passed Feature into the target CRS of a GeoTransformer instance.
 

Methods in org.deegree.model.crs with parameters of type Feature
 Feature GeoTransformer.transform(Feature feature)
          transforms all geometries contained within the passed Feature into the target CRS of a GeoTransformer instance.
 

Uses of Feature in org.deegree.model.feature
 

Subinterfaces of Feature in org.deegree.model.feature
 interface FeatureCollection
           
 

Classes in org.deegree.model.feature that implement Feature
(package private)  class AbstractFeature
           
 class AbstractFeatureCollection
           
 class DefaultFeature
          Features are, according to the Abstract Specification, digital representations of real world entities.
(package private)  class DefaultFeatureCollection
          This interface provides services for the management of groups of features.
 class FeatureTupleCollection
          Represents a FeatureCollection that only contains wfs:featureTuple elements (as introduced by the draft WFS 1.2 spec).
 

Fields in org.deegree.model.feature with type parameters of type Feature
protected  Map<String,Feature> GMLFeatureDocument.featureMap
           
 

Methods in org.deegree.model.feature that return Feature
 Feature Feature.cloneDeep()
           
 Feature DefaultFeature.cloneDeep()
           
 Feature DefaultFeatureCollection.cloneDeep()
           
 Feature FeatureTupleCollection.cloneDeep()
           
static Feature FeatureFactory.createFeature(String id, FeatureType featureType, FeatureProperty[] properties)
          creates an instance of a Feature from its FeatureType and an array of Objects that represents it properties.
static Feature FeatureFactory.createFeature(String id, FeatureType featureType, List<FeatureProperty> properties)
          creates an instance of a Feature from its FeatureType and an array of Objects that represents it properties.
 Feature DefaultFeatureCollection.getFeature(int index)
          returns the feature that is assigned to the submitted index.
 Feature FeatureTupleCollection.getFeature(int index)
           
 Feature FeatureCollection.getFeature(int index)
           
 Feature DefaultFeatureCollection.getFeature(String id)
           
 Feature FeatureTupleCollection.getFeature(String id)
           
 Feature FeatureCollection.getFeature(String id)
           
 Feature XLinkedFeatureProperty.getOwner()
           
 Feature FeatureProperty.getOwner()
          Returns the instance of the Feature a Feature property is assigned to.
 Feature DefaultFeatureProperty.getOwner()
           
 Feature[] FeatureTupleCollection.getTuple(int index)
          Returns the feature tuple at the given index.
 Feature GMLFeatureDocument.parseFeature()
          Returns the object representation for the root feature element.
protected  Feature GMLFeatureDocument.parseFeature(Element element)
          Returns the object representation for the given feature element.
protected  Feature GMLFeatureDocument.parseFeature(Element element, String srsName)
          Returns the object representation for the given feature element.
 Feature GMLFeatureDocument.parseFeature(String defaultSRS)
          Returns the object representation for the root feature element.
 Feature DefaultFeatureCollection.remove(Feature feature)
          removes the submitted feature from the collection
 Feature FeatureTupleCollection.remove(Feature feature)
           
 Feature FeatureCollection.remove(Feature feature)
          removes the submitted feature from the collection
 Feature DefaultFeatureCollection.remove(int index)
          removes a feature identified by its index from the feature collection.
 Feature FeatureTupleCollection.remove(int index)
           
 Feature FeatureCollection.remove(int index)
          removes the feature at the submitted index from the collection
 Feature AbstractFeatureCollection.remove(String id)
          removes a feature identified by its ID from the feature collection.
 Feature FeatureCollection.remove(String id)
          removes the feature that is assigned to the submitted id.
 Feature[] DefaultFeatureCollection.toArray()
          returns an array of all features
 Feature[] FeatureTupleCollection.toArray()
           
 Feature[] FeatureCollection.toArray()
           
 

Methods in org.deegree.model.feature that return types with arguments of type Feature
 Iterator<Feature> DefaultFeatureCollection.iterator()
          returns an Iterator on the feature contained in a collection
 Iterator<Feature> FeatureTupleCollection.iterator()
           
 Iterator<Feature> FeatureCollection.iterator()
          returns an Iterator on the feature contained in a collection
 

Methods in org.deegree.model.feature with parameters of type Feature
 void DefaultFeatureCollection.add(Feature feature)
          Appends a feature to the collection.
 void FeatureTupleCollection.add(Feature feature)
           
 void FeatureCollection.add(Feature feature)
          adds a feature to the collection
 void AbstractFeatureCollection.addAll(Feature[] feature)
          Deprecated. 
 void FeatureCollection.addAll(Feature[] features)
          Deprecated. use FeatureCollection.addAllUncontained(org.deegree.model.feature.Feature[]) instead, and note that the method behaves slightly different
 void AbstractFeatureCollection.addAllUncontained(Feature[] feature)
           
 void FeatureCollection.addAllUncontained(Feature[] features)
          adds a list of features to the collection
 void GMLFeatureAdapter.append(Element root, Feature feature)
          Appends the DOM representation of the given feature to the also given Node.
static FeatureCollection FeatureFactory.createFeatureCollection(String id, Feature[] features)
          creates an instance of a FeatureCollection from an array of Features.
static FeatureCollection FeatureFactory.createFeatureCollection(String id, Feature[] features, QualifiedName qName)
          creates an instance of a FeatureCollection from an array of Features.
 GMLFeatureDocument GMLFeatureAdapter.export(Feature feature)
          Export a Feature to it's XML representation.
 void GMLFeatureAdapter.export(Feature feature, OutputStream os)
          Exports an instance of a Feature to the passed OutputStream formatted as GML.
 void GMLFeatureAdapter.export(Feature feature, OutputStream os, String charsetName)
          Exports a Feature instance to the passed OutputStream formatted as GML.
 Feature DefaultFeatureCollection.remove(Feature feature)
          removes the submitted feature from the collection
 Feature FeatureTupleCollection.remove(Feature feature)
           
 Feature FeatureCollection.remove(Feature feature)
          removes the submitted feature from the collection
 void Validator.validate(Feature feature)
          Validates the given feature instance (and its subfeatures).
 

Constructors in org.deegree.model.feature with parameters of type Feature
DefaultFeatureCollection(String id, Feature[] features)
          constructor for initializing a feature collection with an id and an array of features.
DefaultFeatureCollection(String id, Feature[] features, QualifiedName qName)
          Constructor for initializing a feature collection with an id and an array of features.
 

Uses of Feature in org.deegree.model.filterencoding
 

Methods in org.deegree.model.filterencoding with parameters of type Feature
 boolean PropertyIsCOMPOperation.evaluate(Feature feature)
          Calculates the ComparisonOperation's logical value based on the certain property values of the given Feature.
 Object FunctionSoundex.evaluate(Feature feature)
           
 boolean Operation.evaluate(Feature feature)
          Calculates the Filter's logical value based on the certain property values of the given feature.
abstract  Object Expression.evaluate(Feature feature)
          Calculates the Expression's value based on the certain property values of the given feature.
 boolean PropertyIsBetweenOperation.evaluate(Feature feature)
          Calculates the PropertyIsBetween -Operation's logical value based on the certain property values of the given Feature.
 boolean PropertyIsInstanceOfOperation.evaluate(Feature feature)
          Calculates the Operation's logical value based on the certain property values of the given feature.
 boolean FeatureFilter.evaluate(Feature feature)
          Calculates the FeatureFilter's logical value based on the ID of the given Feature.
 Object DBFunction.evaluate(Feature feature)
           
 boolean LogicalOperation.evaluate(Feature feature)
          Calculates the LogicalOperation's logical value based on the certain property values of the given Feature.
 boolean FalseFilter.evaluate(Feature feature)
          Calculates the Filter's logical value (false).
abstract  Object Function.evaluate(Feature feature)
          Returns the Function's value (to be used in the evaluation of a complexer Expression).
 boolean ComplexFilter.evaluate(Feature feature)
          Calculates the Filter's logical value based on the certain property values of the given feature.
 boolean SpatialOperation.evaluate(Feature feature)
          Calculates the SpatialOperation's logical value based on the property values of the given Feature.
 Object Literal.evaluate(Feature feature)
          Returns the Literal's value (to be used in the evaluation of a complexer Expression).
 Object PropertyName.evaluate(Feature feature)
          Returns the PropertyName's value (to be used in the evaluation of a complexer Expression).
 boolean PropertyIsLikeOperation.evaluate(Feature feature)
          Calculates the PropertyIsLike's logical value based on the certain property values of the given Feature.
 Object ArithmeticExpression.evaluate(Feature feature)
          Returns this ArithmeticExpression/tt>'s value (to be used in the evaluation of complex Expressions).
 boolean Filter.evaluate(Feature feature)
          Calculates the Filter's logical value based on the certain property values of the given feature.
 boolean PropertyIsNullOperation.evaluate(Feature feature)
          Calculates the PropertyIsNull -Operation's logical value based on the certain property values of the given Feature.
 Object FunctionNormalize.evaluate(Feature feature)
           
 

Uses of Feature in org.deegree.ogcwebservices.wfs.operation
 

Constructors in org.deegree.ogcwebservices.wfs.operation with parameters of type Feature
GmlResult(OGCWebServiceRequest request, Feature feature, FormatType format)
           
 

Uses of Feature in org.deegree.ogcwebservices.wfs.operation.transaction
 

Methods in org.deegree.ogcwebservices.wfs.operation.transaction that return Feature
 Feature Replace.getFeature()
          Returns the feature that will be used to replace the properties of the matched feature instances.
 Feature Update.getFeature()
          Returns the feature that will replace the matched feature instance.
 

Constructors in org.deegree.ogcwebservices.wfs.operation.transaction with parameters of type Feature
Replace(String handle, QualifiedName typeName, Feature replacementFeature, Filter filter)
          Creates a new Replace instance.
Update(String handle, QualifiedName typeName, Feature replacementFeature, Filter filter)
          Creates a new Update instance.
 

Uses of Feature in org.deegree.ogcwebservices.wpvs.j3d
 

Methods in org.deegree.ogcwebservices.wpvs.j3d with parameters of type Feature
 DefaultSurface Object3DFactory.createSurface(Feature feature, Map<String,TexturedSurface> texturedShapes)
          creates a Surface from the passed feature.
 

Uses of Feature in org.deegree.security.drm.model
 

Methods in org.deegree.security.drm.model with parameters of type Feature
 boolean Right.applies(SecurableObject object, Feature situation)
           
 boolean RightSet.applies(SecurableObject object, RightType type, Feature situation)
          Checks if the RightSet contains the permissions for a SecurableObject and a concrete situation (the situation is represented by the given Feature).
 boolean User.hasRight(SecurityAccess securityAccess, RightType type, Feature accessParams, SecurableObject object)
          Returns whether the User has a certain Right on this SecurableObject (directly or via group memberships).
 boolean Role.hasRight(SecurityAccess securityAccess, RightType type, Feature accessParams, SecurableObject object)
          Returns whether the Role has a certain Right on a SecurableObject (directly or via group memberships).
 

Uses of Feature in org.deegree.security.owsrequestvalidator
 

Methods in org.deegree.security.owsrequestvalidator with parameters of type Feature
protected  void RequestValidator.handleUserCoupledRules(User user, Feature feature, String secObjName, String secObjType, RightType rightType)
          handles the validation of user coupled parameters of a request
 


deegree 2.3 (2010/04/09 10:10 build-4-official)

an open source project founded by lat/lon, Bonn, Germany.
For more information visit: http://www.deegree.org