Uses of Class
org.geotools.data.Parameter

Packages that use Parameter
org.geotools.data Defines the DataStoreAPI via which all data is imported or exported. 
org.geotools.data.wfs   
org.geotools.data.wps package with WPS specs and utils. 
org.geotools.process Define a Process API used to wrap up processes for reuse. 
org.geotools.process.feature   
org.geotools.process.impl Class to help developers implement additional Processes. 
org.geotools.process.literal Process examples making use of literal data structures such as Geometry and String. 
org.geotools.process.raster Process examples making use of raster data structures such as GridCoverage and PlanarImage. 
org.geotools.swing.data Dialog and wizard classes to get user input for data stores 
org.geotools.swing.wizard Classes to construct wizards for user input 
 

Uses of Parameter in org.geotools.data
 

Subclasses of Parameter in org.geotools.data
static class DataAccessFactory.Param
          Data class used to capture Parameter requirements.
 

Uses of Parameter in org.geotools.data.wfs
 

Subclasses of Parameter in org.geotools.data.wfs
static class WFSDataStoreFactory.WFSFactoryParam<T>
          A WFSDataStoreFactory.WFSFactoryParam subclass that allows to provide a default value to the lookUp method.
 

Uses of Parameter in org.geotools.data.wps
 

Methods in org.geotools.data.wps that return types with arguments of type Parameter
static java.util.Map<java.lang.String,Parameter<?>> WPSUtils.createInputParamMap(ProcessDescriptionType processDesc, java.util.Map<java.lang.String,Parameter<?>> map)
          Create a map of inputs for a process based on its describeProcess.
static java.util.Map<java.lang.String,Parameter<?>> WPSUtils.createOutputParamMap(ProcessDescriptionType processDesc, java.util.Map<java.lang.String,Parameter<?>> map)
          Create a map of outputs for a process based on its describeProcess.
 java.util.Map<java.lang.String,Parameter<?>> WPSFactory.getParameterInfo()
           
 java.util.Map<java.lang.String,Parameter<?>> WPSFactory.getResultInfo(java.util.Map<java.lang.String,java.lang.Object> parameters)
           
 

Method parameters in org.geotools.data.wps with type arguments of type Parameter
static java.util.Map<java.lang.String,Parameter<?>> WPSUtils.createInputParamMap(ProcessDescriptionType processDesc, java.util.Map<java.lang.String,Parameter<?>> map)
          Create a map of inputs for a process based on its describeProcess.
static java.util.Map<java.lang.String,Parameter<?>> WPSUtils.createOutputParamMap(ProcessDescriptionType processDesc, java.util.Map<java.lang.String,Parameter<?>> map)
          Create a map of outputs for a process based on its describeProcess.
 

Uses of Parameter in org.geotools.process
 

Methods in org.geotools.process that return types with arguments of type Parameter
 java.util.Map<java.lang.String,Parameter<?>> ProcessFactory.getParameterInfo(org.opengis.feature.type.Name name)
          Description of the Map parameter to use when executing.
static java.util.Map<java.lang.String,Parameter<?>> Processors.getParameterInfo(org.opengis.feature.type.Name name)
          Look up an implementation of the named process on the classpath and describe the input parameter required.
 java.util.Map<java.lang.String,Parameter<?>> ProcessFactory.getResultInfo(org.opengis.feature.type.Name name, java.util.Map<java.lang.String,java.lang.Object> parameters)
          Description of the results returned
static java.util.Map<java.lang.String,Parameter<?>> Processors.getResultInfo(org.opengis.feature.type.Name name, java.util.Map<java.lang.String,java.lang.Object> parameters)
          Look up an implementation of the named process on the classpath and describe the expected results.
 

Uses of Parameter in org.geotools.process.feature
 

Fields in org.geotools.process.feature declared as Parameter
static Parameter<FeatureCollection> AbstractFeatureCollectionProcessFactory.FEATURES
          Features for operation
 

Methods in org.geotools.process.feature that return types with arguments of type Parameter
 java.util.Map<java.lang.String,Parameter<?>> AbstractFeatureCollectionProcessFactory.getParameterInfo()
          Adds the AbstractFeatureCollectionProcessFactory.FEATURES parameter and then delegates to AbstractFeatureCollectionProcessFactory.addParameters(Map).
 java.util.Map<java.lang.String,Parameter<?>> FeatureToFeatureProcessFactory.getResultInfo(java.util.Map<java.lang.String,java.lang.Object> parameters)
           
 

Method parameters in org.geotools.process.feature with type arguments of type Parameter
protected abstract  void AbstractFeatureCollectionProcessFactory.addParameters(java.util.Map<java.lang.String,Parameter<?>> parameters)
          Method for subclasses to add parameter descriptors for the process.
protected  void BufferFeatureCollectionFactory.addParameters(java.util.Map<java.lang.String,Parameter<?>> parameters)
           
 

Uses of Parameter in org.geotools.process.impl
 

Methods in org.geotools.process.impl that return types with arguments of type Parameter
protected abstract  java.util.Map<java.lang.String,Parameter<?>> SingleProcessFactory.getParameterInfo()
           
 java.util.Map<java.lang.String,Parameter<?>> SingleProcessFactory.getParameterInfo(org.opengis.feature.type.Name name)
           
protected abstract  java.util.Map<java.lang.String,Parameter<?>> SingleProcessFactory.getResultInfo(java.util.Map<java.lang.String,java.lang.Object> parameters)
           
 java.util.Map<java.lang.String,Parameter<?>> SingleProcessFactory.getResultInfo(org.opengis.feature.type.Name name, java.util.Map<java.lang.String,java.lang.Object> parameters)
           
 

Uses of Parameter in org.geotools.process.literal
 

Methods in org.geotools.process.literal that return types with arguments of type Parameter
 java.util.Map<java.lang.String,Parameter<?>> FeatureBufferFactory.getParameterInfo()
           
 java.util.Map<java.lang.String,Parameter<?>> IntersectionFactory.getParameterInfo()
           
 java.util.Map<java.lang.String,Parameter<?>> UnionFactory.getParameterInfo()
           
 java.util.Map<java.lang.String,Parameter<?>> BufferFactory.getParameterInfo()
           
 java.util.Map<java.lang.String,Parameter<?>> DoubleAdditionFactory.getParameterInfo()
           
 java.util.Map<java.lang.String,Parameter<?>> FeatureBufferFactory.getResultInfo(java.util.Map<java.lang.String,java.lang.Object> parameters)
           
 java.util.Map<java.lang.String,Parameter<?>> IntersectionFactory.getResultInfo(java.util.Map<java.lang.String,java.lang.Object> parameters)
           
 java.util.Map<java.lang.String,Parameter<?>> UnionFactory.getResultInfo(java.util.Map<java.lang.String,java.lang.Object> parameters)
           
 java.util.Map<java.lang.String,Parameter<?>> BufferFactory.getResultInfo(java.util.Map<java.lang.String,java.lang.Object> parameters)
           
 java.util.Map<java.lang.String,Parameter<?>> DoubleAdditionFactory.getResultInfo(java.util.Map<java.lang.String,java.lang.Object> parameters)
           
 

Uses of Parameter in org.geotools.process.raster
 

Fields in org.geotools.process.raster declared as Parameter
static Parameter<java.lang.Integer> RasterToVectorFactory.BAND
          Index of the band with data to vectorize
static Parameter<org.opengis.geometry.Envelope> RasterToVectorFactory.BOUNDS
          Bounds (in world coordinates) ot the area to vectorize; if null or absent the bounds of the coverage are used
static Parameter<java.lang.Boolean> RasterToVectorFactory.INSIDE_EDGES
          Whether inside edges (those separating regions with non-outside values) should be vectorized.
static Parameter<java.util.Collection> RasterToVectorFactory.OUTSIDE
          The code(s) representing NODATA or outside the regions to be vectorized.
static Parameter<GridCoverage2D> RasterToVectorFactory.RASTER
          Grid coverage to vectorize
static Parameter<FeatureCollection> RasterToVectorFactory.RESULT_FEATURES
          Parameter to retrieve the vectorized features from the results map returned by RasterToVectorProcess.execute(java.util.Map, org.opengis.util.ProgressListener)
 

Methods in org.geotools.process.raster that return types with arguments of type Parameter
 java.util.Map<java.lang.String,Parameter<?>> RasterToVectorFactory.getParameterInfo()
          Get a map of input parameters required by the RasterToVectorProcess.execute(java.util.Map, org.opengis.util.ProgressListener) method
 java.util.Map<java.lang.String,Parameter<?>> RasterToVectorFactory.getResultInfo(java.util.Map<java.lang.String,java.lang.Object> parameters)
          Get information about the results that are returned as Map by the RasterToVectorProcess.execute(java.util.Map, org.opengis.util.ProgressListener) method
 java.util.Map<java.lang.String,Parameter<?>> VectorToRasterFactory.getResultInfo(java.util.Map<java.lang.String,java.lang.Object> parameters)
           
 

Method parameters in org.geotools.process.raster with type arguments of type Parameter
protected  void VectorToRasterFactory.addParameters(java.util.Map<java.lang.String,Parameter<?>> parameters)
           
 

Uses of Parameter in org.geotools.swing.data
 

Constructor parameters in org.geotools.swing.data with type arguments of type Parameter
JParameterListPage(java.lang.String title, java.lang.String description, java.util.List<Parameter<?>> contents, java.util.Map<java.lang.String,java.lang.Object> params)
           
JParameterListWizard(java.lang.String title, java.lang.String description, java.util.List<Parameter<?>> contents)
          Constructor.
JParameterListWizard(java.lang.String title, java.lang.String description, java.util.List<Parameter<?>> contents, java.util.Map<java.lang.String,java.lang.Object> connectionParams)
          Constructor.
 

Uses of Parameter in org.geotools.swing.wizard
 

Fields in org.geotools.swing.wizard declared as Parameter
protected  Parameter<?> ParamField.parameter
           
 

Methods in org.geotools.swing.wizard with parameters of type Parameter
static ParamField ParamField.create(Parameter<?> parameter)
          Factory method creating the appropriate ParamField for the supplied Param.
 

Constructors in org.geotools.swing.wizard with parameters of type Parameter
JDoubleField(Parameter<?> parameter)
           
JField(Parameter<?> parameter)
           
JFileField(Parameter<?> parameter)
           
JGeometryField(Parameter<?> parameter)
           
JURLField(Parameter<?> parameter)
           
 



Copyright © 1996-2010 Geotools. All Rights Reserved.