| org.geotools.feature.iso.FeatureImpl org.geotools.feature.iso.simple.SimpleFeatureImpl
SimpleFeatureImpl | public class SimpleFeatureImpl extends FeatureImpl implements SimpleFeature(Code) | | An implementation of the SimpleFeature convience methods ontop of
FeatureImpl.
author: Justin |
SimpleFeatureImpl | public SimpleFeatureImpl(List values, AttributeDescriptor desc, String id)(Code) | | |
SimpleFeatureImpl | public SimpleFeatureImpl(List values, SimpleFeatureType type, String id)(Code) | | |
SimpleFeatureImpl | public SimpleFeatureImpl(SimpleFeatureType type, String id, Object[] values)(Code) | | Create a Feature with the following content.
Parameters: values - Values in agreement with provided type Parameters: type - Type of feature to be created Parameters: id - Feature ID |
defaultGeometry | public void defaultGeometry(Object geometry)(Code) | | |
getDefaultGeometryValue | public Object getDefaultGeometryValue()(Code) | | |
getNumberOfAttributes | public int getNumberOfAttributes()(Code) | | |
getValue | public Object getValue(String name)(Code) | | Retrive value by attribute name.
Parameters: name - Attribute Value associated with name |
getValue | public Object getValue(int index)(Code) | | Access attribute by "index" indicated by SimpleFeatureType.
Parameters: index - |
setDefaultGeometryValue | public void setDefaultGeometryValue(Object geometry)(Code) | | |
setValue | public void setValue(String name, Object value)(Code) | | Modify attribute with "name" indicated by SimpleFeatureType.
Parameters: name - Parameters: value - |
setValue | public void setValue(int index, Object value)(Code) | | Modify attribute at the "index" indicated by SimpleFeatureType.
Parameters: index - Parameters: value - |
|
|