Uses of Class
org.geotools.parameter.DefaultParameterDescriptor

Packages that use DefaultParameterDescriptor
org.geotools.coverage.grid.io   
org.geotools.coverageio.gdal Base implementation for Coverage I/O based on GDAL bindings available via the ImageI/O-Ext project. 
org.geotools.gce.arcgrid A datasource to manage the ARCGrid ASCII format. 
org.geotools.gce.imagemosaic   
org.geotools.gce.imagemosaic.jdbc   
org.geotools.gce.imagepyramid   
org.geotools.parameter Parameter implementation. 
 

Uses of DefaultParameterDescriptor in org.geotools.coverage.grid.io
 

Fields in org.geotools.coverage.grid.io declared as DefaultParameterDescriptor
static DefaultParameterDescriptor<GeoToolsWriteParams> AbstractGridFormat.GEOTOOLS_WRITE_PARAMS
          This GeneralParameterValue cacn be provided to the GridCoverageWriters through the GridCoverageWriter.write(org.opengis.coverage.grid.GridCoverage, GeneralParameterValue[]) method in order to control the writing process in terms of compression, tiling, etc.GridGeometry2D
static DefaultParameterDescriptor<OverviewPolicy> AbstractGridFormat.OVERVIEW_POLICY
          This GeneralParameterValue can be provided to the GridCoverageReaders through the GridCoverageReader.read(GeneralParameterValue[]) method in order to specify the policy a reader should adopt when chhosing the right overview during a read operation.
static DefaultParameterDescriptor<GridGeometry2D> AbstractGridFormat.READ_GRIDGEOMETRY2D
          This GeneralParameterValue cacn be provided to the GridCoverageReaders through the GridCoverageReader.read(GeneralParameterValue[]) methid in order to pick up the best matching resolution level and (soon) the best matching area.
static DefaultParameterDescriptor<Boolean> AbstractGridFormat.USE_JAI_IMAGEREAD
          This GeneralParameterValue can be provided to the GridCoverageReaders through the GridCoverageReader.read(GeneralParameterValue[]) method in order to specify the type of image read operation requested: using a JAI ImageRead operation (leveraging on Deferred Execution Model, Tile Caching,...), or the direct ImageReader's read methods.
 

Uses of DefaultParameterDescriptor in org.geotools.coverageio.gdal
 

Fields in org.geotools.coverageio.gdal declared as DefaultParameterDescriptor
static DefaultParameterDescriptor<String> BaseGDALGridFormat.SUGGESTED_TILE_SIZE
          This GeneralParameterValue can be provided to the GridCoverageReaders through the GridCoverageReader.read(GeneralParameterValue[]) method in order to specify the suggested size of tiles to avoid long time reading occurring with JAI ImageRead on striped images.
static DefaultParameterDescriptor<Boolean> BaseGDALGridFormat.USE_MULTITHREADING
          This GeneralParameterValue can be provided to the GridCoverageReaders through the GridCoverageReader.read(GeneralParameterValue[]) method in order to specify to use multithreading when leveraging on a JAI ImageRead operation.
 

Uses of DefaultParameterDescriptor in org.geotools.gce.arcgrid
 

Fields in org.geotools.gce.arcgrid declared as DefaultParameterDescriptor
static DefaultParameterDescriptor<Boolean> ArcGridFormat.FORCE_CELLSIZE
          Indicates whether we ask the plugin to resample the coverage to have dx==dy
static DefaultParameterDescriptor<Boolean> ArcGridFormat.GRASS
          Indicates whether the arcgrid data must be written in GRASS format
 

Uses of DefaultParameterDescriptor in org.geotools.gce.imagemosaic
 

Fields in org.geotools.gce.imagemosaic declared as DefaultParameterDescriptor
static DefaultParameterDescriptor<String> ImageMosaicFormat.SUGGESTED_TILE_SIZE
          This GeneralParameterValue can be provided to the GridCoverageReaders through the GridCoverageReader.read(GeneralParameterValue[]) method in order to specify the suggested size of tiles to avoid long time reading occurring with JAI ImageRead on striped images.
 

Uses of DefaultParameterDescriptor in org.geotools.gce.imagemosaic.jdbc
 

Fields in org.geotools.gce.imagemosaic.jdbc declared as DefaultParameterDescriptor
static DefaultParameterDescriptor ImageMosaicJDBCFormat.OUTPUT_TRANSPARENT_COLOR
          Control the transparency of the output coverage.
 

Uses of DefaultParameterDescriptor in org.geotools.gce.imagepyramid
 

Fields in org.geotools.gce.imagepyramid declared as DefaultParameterDescriptor
static DefaultParameterDescriptor<String> ImagePyramidFormat.SUGGESTED_TILE_SIZE
          This GeneralParameterValue can be provided to the GridCoverageReaders through the GridCoverageReader.read(GeneralParameterValue[]) method in order to specify the suggested size of tiles to avoid long time reading occurring with JAI ImageRead on striped images.
 

Uses of DefaultParameterDescriptor in org.geotools.parameter
 

Methods in org.geotools.parameter that return DefaultParameterDescriptor
static DefaultParameterDescriptor<Double> DefaultParameterDescriptor.create(Map<String,?> properties, double defaultValue, double minimum, double maximum, Unit<?> unit, boolean required)
          Constructs a descriptor for a parameter in a range of floating point values.
static DefaultParameterDescriptor<Integer> DefaultParameterDescriptor.create(Map<String,?> properties, int defaultValue, int minimum, int maximum, boolean required)
          Constructs a descriptor for a parameter in a range of integer values.
static
<T> DefaultParameterDescriptor<T>
DefaultParameterDescriptor.create(String name, CharSequence remarks, Class<T> valueClass, T defaultValue, boolean required)
          Constructs a descriptor from a name and a default value.
static DefaultParameterDescriptor<Double> DefaultParameterDescriptor.create(String name, double defaultValue, double minimum, double maximum, Unit<?> unit)
          Constructs a descriptor for a mandatory parameter in a range of floating point values.
static DefaultParameterDescriptor<Integer> DefaultParameterDescriptor.create(String name, int defaultValue, int minimum, int maximum)
          Constructs a descriptor for a mandatory parameter in a range of integer values.
 



Copyright © 1996-2009 Geotools. All Rights Reserved.