Serialized Form


Package org.geotools.arcsde

Class ArcSdeException extends DataSourceException implements Serializable

serialVersionUID: -1392514883217797825L


Package org.geotools.arcsde.filter

Class GeometryEncoderException extends Exception implements Serializable

serialVersionUID: -8926292317791976269L


Package org.geotools.arcsde.pool

Class Session$1 extends Object implements Serializable

Class UnavailableArcSDEConnectionException extends IOException implements Serializable

serialVersionUID: -7964603239735118491L


Package org.geotools.axis

Class AbstractGraduation extends Object implements Serializable

serialVersionUID: 5215728323932315112L

Serialized Fields

unit

Unit<Q extends Quantity> unit
The axis's units, or null if unknow.


title

String title
The axis title for this graduation.


locale

Locale locale
The locale for formatting labels.


listenerList

PropertyChangeSupport listenerList
A list of event listeners for this component.

Class Axis2D extends Line2D implements Serializable

serialVersionUID: -8396436909942389360L

Serialized Fields

x1

float x1
Coordonnées des premier et dernier points de l'axe. Ces coordonnées sont exprimées en "points" (1/72 de pouce), ce qui n'a rien à voir avec les unités de Graduation.getMinimum() et Graduation.getMaximum().


y1

float y1
Coordonnées des premier et dernier points de l'axe. Ces coordonnées sont exprimées en "points" (1/72 de pouce), ce qui n'a rien à voir avec les unités de Graduation.getMinimum() et Graduation.getMaximum().


x2

float x2
Coordonnées des premier et dernier points de l'axe. Ces coordonnées sont exprimées en "points" (1/72 de pouce), ce qui n'a rien à voir avec les unités de Graduation.getMinimum() et Graduation.getMaximum().


y2

float y2
Coordonnées des premier et dernier points de l'axe. Ces coordonnées sont exprimées en "points" (1/72 de pouce), ce qui n'a rien à voir avec les unités de Graduation.getMinimum() et Graduation.getMaximum().


tickStart

float tickStart
Longueur des graduations, en points. Chaque graduations sera tracée à partir de [sub]TickStart (généralement 0) jusqu'à [sub]TickEnd. Par convention, des valeurs positives désignent l'intérieur du graphique et des valeurs négatives l'extérieur.


tickEnd

float tickEnd
Longueur des graduations, en points. Chaque graduations sera tracée à partir de [sub]TickStart (généralement 0) jusqu'à [sub]TickEnd. Par convention, des valeurs positives désignent l'intérieur du graphique et des valeurs négatives l'extérieur.


subTickStart

float subTickStart
Longueur des graduations, en points. Chaque graduations sera tracée à partir de [sub]TickStart (généralement 0) jusqu'à [sub]TickEnd. Par convention, des valeurs positives désignent l'intérieur du graphique et des valeurs négatives l'extérieur.


subTickEnd

float subTickEnd
Longueur des graduations, en points. Chaque graduations sera tracée à partir de [sub]TickStart (généralement 0) jusqu'à [sub]TickEnd. Par convention, des valeurs positives désignent l'intérieur du graphique et des valeurs négatives l'extérieur.


relativeCCW

byte relativeCCW
Indique dans quelle direction se trouve la graduation de l'axe. La valeur -1 indique qu'il faudrait tourner l'axe dans le sens des aiguilles d'une montre pour qu'il soit par-dessus sa graduation. La valeur +1 indique au contraire qu'il faudrait le tourner dans le sens inverse des aiguilles d'une montre pour le même effet.


graduation

Graduation graduation
Modèle qui contient les minimum, maximum et la graduation de l'axe.


hints

RenderingHints hints
A set of rendering hints for this axis.

Class DateGraduation extends AbstractGraduation implements Serializable

serialVersionUID: -7590383805990568769L

Serialized Fields

minimum

long minimum
The minimal value for this graduation, in milliseconds ellapsed since January 1st, 1970 (no matter what the graduation units are). Default to current time (today).


maximum

long maximum
The maximal value for this graduation, in milliseconds ellapsed since January 1st, 1970 (no matter what the graduation units are). Default to tomorrow.


timezone

TimeZone timezone
The time zone for graduation labels.

Class LogarithmicNumberGraduation extends NumberGraduation implements Serializable

serialVersionUID: -8514854171546232887L

Class NumberGraduation extends AbstractGraduation implements Serializable

serialVersionUID: -3074504745332240845L

Serialized Fields

minimum

double minimum
The minimal value for this graduation. Default to 0.


maximum

double maximum
The maximal value for this graduation. Default to 10.


Package org.geotools.coverage

Class AbstractCoverage extends PropertySourceImpl implements Serializable

serialVersionUID: -2989320942499746295L

Serialized Fields

name

InternationalString name
The coverage name, or null if none.


crs

CoordinateReferenceSystem crs
The coordinate reference system, or null if there is none.

Class AbstractCoverage.Renderable extends PropertySourceImpl implements Serializable

serialVersionUID: -6661389795161502552L

Serialized Fields

bounds

Rectangle2D bounds
The two dimensional view of the coverage's envelope.


xAxis

int xAxis
Dimension to use for x axis.


yAxis

int yAxis
Dimension to use for y axis.


coordinate

GeneralDirectPosition coordinate
A coordinate point where to evaluate the function. The point dimension is equals to the coverage's dimension. The x and y ordinates will be ignored, since they will vary for each pixel to be evaluated. Other ordinates, if any, should be set to a fixed value. For example a coverage may be three-dimensional, where the third dimension is the time axis. In such case, coordinate.ord[2] should be set to the point in time where to evaluate the coverage. By default, all ordinates are initialized to 0. Subclasses should set the desired values in their constructor if needed.

Class Category extends Object implements Serializable

serialVersionUID: 6215962897884256696L

Serialized Fields

name

InternationalString name
The category name.


minimum

double minimum
The minimal sample value (inclusive). This category is made of all values in the range minimum to maximum inclusive. If this category is an instance of GeophysicsCategory, then this field is the minimal geophysics value in this category. For qualitative categories, the geophysics value is one of NaN values.


maximum

double maximum
The maximal sample value (inclusive). This category is made of all values in the range minimum to maximum inclusive. If this category is an instance of GeophysicsCategory, then this field is the maximal geophysics value in this category. For qualitative categories, the geophysics value is one of NaN values.


range

NumberRange<T extends Number & Comparable<? super T>> range
The range of values [minimum..maximum]. May be computed only when first requested, or may be user-supplied (which is why it must be serialized).


transform

MathTransform1D transform
The math transform from sample to geophysics values (never null). If this category is an instance of GeophysicsCategory, then this transform is the inverse (as computed by MathTransform1D.inverse()), except for qualitative categories. Since Category.getSampleToGeophysics() returns null for qualitative categories, this difference is not visible to the user.

See Also:
GridSampleDimension.getScale(), GridSampleDimension.getOffset()

inverse

Category inverse
A reference to the GeophysicsCategory. If this category is already an instance of GeophysicsCategory, then inverse is a reference to the Category object that own it.


ARGB

int[] ARGB
Codes ARGB des couleurs de la catégorie. Les couleurs par défaut seront un gradient allant du noir au blanc opaque.

Class CoverageStack extends AbstractCoverage implements Serializable

serialVersionUID: -7100201963376146053L

Serialization Methods

readObject

private void readObject(ObjectInputStream in)
                 throws IOException,
                        ClassNotFoundException
Initializes fields after deserialization.

Throws:
IOException
ClassNotFoundException
Serialized Fields

elements

CoverageStack.Element[] elements
Coverage elements in this stack. Elements may be shared by more than one instances of CoverageStack.


sampleDimensions

SampleDimension[] sampleDimensions
The sample dimensions for this coverage, or null if unknown.


numSampleDimensions

int numSampleDimensions
The number of sample dimensions for this coverage, or 0 is unknow. Note: this attribute may be different than zero even if CoverageStack.sampleDimensions is null.


envelope

GeneralEnvelope envelope
The envelope for this coverage. This is the union of all elements envelopes.

See Also:
CoverageStack.getEnvelope(org.opengis.referencing.crs.CoordinateReferenceSystem, org.geotools.coverage.CoverageStack.Element[])

zDimension

int zDimension
The dimension of the z ordinate (the last value in coordinate points). This is always the coordinate reference system dimension minus 1.

Since:
2.3

zCRS

CoordinateReferenceSystem zCRS
The coordinate reference system for the z dimension, or null if unknown.


interpolationEnabled

boolean interpolationEnabled
true if interpolations are allowed.


lagTolerance

double lagTolerance
Maximal interval between the upper z-value of a coverage and the lower z-value of the next one. If a greater difference is found, we will consider that there is a hole in the data and evaluate(...) methods will returns NaN for z values in this hole.


listeners

IIOListeners listeners
List of objects to inform when image loading are trigged.

Class GridSampleDimension extends Object implements Serializable

serialVersionUID: 6026936545776852758L

Serialized Fields

inverse

GridSampleDimension inverse
A sample dimension wrapping the list of categories CategoryList.inverse. This object is constructed and returned by GridSampleDimension.geophysics(boolean). Constructed when first needed, but serialized anyway because it may be a user-supplied object.


categories

CategoryList categories
The category list for this sample dimension, or null if this sample dimension has no category. This field is read by SampleTranscoder only.


isGeophysics

boolean isGeophysics
true if all categories in this sample dimension have been already scaled to geophysics ranges. If true, then the GridSampleDimension.getSampleToGeophysics() method should returns an identity transform. Note that the opposite do not always hold: an identity transform doesn't means that all categories are geophysics. For example, some qualitative categories may map to some values differents than NaN.

Assertions:


hasQualitative

boolean hasQualitative
true if this sample dimension has at least one qualitative category. An arbitrary number of qualitative categories is allowed, providing their sample value ranges do not overlap. A sample dimension can have both qualitative and quantitative categories.


hasQuantitative

boolean hasQuantitative
true if this sample dimension has at least one quantitative category. An arbitrary number of quantitative categories is allowed, providing their sample value ranges do not overlap.

If sampleToGeophysics is non-null, then hasQuantitative must be true. However, the opposite do not hold in all cases: a true value doesn't means that sampleToGeophysics should be non-null.


sampleToGeophysics

MathTransform1D sampleToGeophysics
The sampleToGeophysics transform used by every quantitative Category, or null. This field may be null for two reasons: This field is used by GridSampleDimension.getOffset() and GridSampleDimension.getScale(). The GridSampleDimension.getSampleToGeophysics() method may also returns directly this value in some conditions.


description

InternationalString description
Decription for this sample dimension. Typically used as a way to perform a band select by using human comprehensible descriptions instead of just numbers. Web Coverage Service (WCS) can use this feature in order to perform band subsetting as directed from a user request.

Class OrdinateOutsideCoverageException extends PointOutsideCoverageException implements Serializable

serialVersionUID: -4718948524305632185L

Serialized Fields

dimension

int dimension
The dimension of the out-of-bounds ordinate.


envelope

Envelope envelope
The coverage envelope, or null if unknown.

Class SpatioTemporalCoverage3D extends AbstractCoverage implements Serializable

Serialized Fields

coverage

Coverage coverage
The wrapped coverage.


temporalCRS

DefaultTemporalCRS temporalCRS
The temporal coordinate system, as a Geotools implementation in order to gets the DefaultTemporalCRS.toDate(double) and DefaultTemporalCRS.toValue(java.util.Date) methods.


temporalDimension

int temporalDimension
The dimension of the temporal coordinate system. All other dimensions are expected to be the temporal ones.


xDimension

int xDimension
The dimension for x and y coordinates.


yDimension

int yDimension
The dimension for x and y coordinates.


coordinate

GeneralDirectPosition coordinate
The direct position to uses for evaluate(...) methods. This object is cached and reused for performance purpose. However, this caching sacrifies SpatioTemporalCoverage3D thread safety.

Class TransformedCoverage extends AbstractCoverage implements Serializable

Serialized Fields

coverage

Coverage coverage
The wrapped coverage.


toWrapped

MathTransform toWrapped
The transform from this coverage CRS to the wrapped coverage CRS.


position

GeneralDirectPosition position
The projected point.


Package org.geotools.coverage.grid

Class AbstractGridCoverage extends AbstractCoverage implements Serializable

serialVersionUID: 6476934258101450793L

Class Calculator2D extends GridCoverage2D implements Serializable

serialVersionUID: -6287856672249003253L

Serialized Fields

source

GridCoverage2D source
The source grid coverage which was specified at construction time (never null).

This field duplicate the value obtained by AbstractGridCoverage.getSources()(0) except if this coverage has been deserialized. The source is required in order to get the GridCoverage2D.view(org.geotools.coverage.grid.ViewType) method to work. Because the image contained in the source is the same one than in this Calculator2D, there is few cost in keeping it.

Class GeneralGridCoordinates extends Object implements Serializable

serialVersionUID: 8146318677770695383L

Serialized Fields

coordinates

int[] coordinates
The grid coordinates.

Class GeneralGridCoordinates.Immutable extends GeneralGridCoordinates implements Serializable

serialVersionUID: -7723383411061425866L

Class GeneralGridEnvelope extends Object implements Serializable

serialVersionUID: -1695224412095031712L

Serialized Fields

index

int[] index
Minimum and maximum grid ordinates. The first half contains minimum ordinates (inclusive), while the last half contains maximum ordinates (exclusive). Note that the later is the opposite of ISO specification. We store upper coordinates as exclusive values for implementation convenience.

Class GeneralGridGeometry extends Object implements Serializable

serialVersionUID: 124700383873732132L

Serialized Fields

gridRange

GridEnvelope gridRange
The valid coordinate range of a grid coverage, or null if none. The lowest valid grid coordinate is zero for BufferedImage, but may be non-zero for arbitrary RenderedImage. A grid with 512 cells can have a minimum coordinate of 0 and maximum of 512, with 511 as the highest valid index.

See Also:
RenderedImage.getMinX(), RenderedImage.getMinY(), RenderedImage.getWidth(), RenderedImage.getHeight()

envelope

GeneralEnvelope envelope
The envelope, which is usually the grid range transformed to real world coordinates. This envelope contains the coordinate reference system of "real world" coordinates.

This field should be considered as private because envelopes are mutable, and we want to make sure that envelopes are cloned before to be returned to the user. Only GridGeometry2D and GridCoverage2D access directly to this field (read only) for performance reason.

Since:
2.2

gridToCRS

MathTransform gridToCRS
The math transform (usually an affine transform), or null if none. This math transform maps pixel center to "real world" coordinate using the following line:
gridToCRS.transform(pixels, point);


cornerToCRS

MathTransform cornerToCRS
Same as GeneralGridGeometry.gridToCRS but from pixel corner instead of center. Will be computed only when first needed. Serialized because it may be a value specified explicitly at construction time, in which case it can be more accurate than a computed value.

Class GeneralGridRange extends GeneralGridEnvelope implements Serializable

serialVersionUID: 1452569710967224145L

Class GridCoordinates2D extends Point implements Serializable

serialVersionUID: -4583333545268906740L

Class GridCoverage2D extends AbstractGridCoverage implements Serializable

serialVersionUID: 667472989475027853L

Serialization Methods

readObject

private void readObject(ObjectInputStream in)
                 throws IOException,
                        ClassNotFoundException
Constructs the PlanarImage from the SerializableRenderedImage after deserialization.

Throws:
IOException
ClassNotFoundException

writeObject

private void writeObject(ObjectOutputStream out)
                  throws IOException
Serializes this grid coverage. Before serialization, a serializable rendered image is created if it was not already done.

Throws:
IOException
Serialized Fields

serializedImage

RenderedImage serializedImage
The serialized image, as an instance of SerializableRenderedImage. This image will be created only when first needed during serialization.


gridGeometry

GridGeometry2D gridGeometry
The grid geometry.


sampleDimensions

GridSampleDimension[] sampleDimensions
List of sample dimension information for the grid coverage. For a grid coverage, a sample dimension is a band. The sample dimension information include such things as description, data type of the value (bit, byte, integer...), the no data values, minimum and maximum values and a color table if one is associated with the dimension. A coverage must have at least one sample dimension.

The content of this array should never be modified.

Class GridCoverage2D.Renderable extends AbstractCoverage.Renderable implements Serializable

serialVersionUID: 4544636336787905450L

Class GridEnvelope2D extends Rectangle implements Serializable

serialVersionUID: -3370515914148690059L

Class GridGeometry2D extends GeneralGridGeometry implements Serializable

serialVersionUID: -3989363771504614419L

Serialized Fields

crs2D

CoordinateReferenceSystem crs2D
The two-dimensional part of the coordinate reference system.

See Also:
GridGeometry2D.getCoordinateReferenceSystem2D()

gridDimensionX

int gridDimensionX
Index of column (GridGeometry2D.gridDimensionX) and row (GridGeometry2D.gridDimensionY) ordinates in a grid point. They are the index of the first two dimensions with a span greater than 1 in the grid range. Their values are usually 0 and 1 respectively.

It is garanteed that GridGeometry2D.gridDimensionX < GridGeometry2D.gridDimensionY.


gridDimensionY

int gridDimensionY
Index of column (GridGeometry2D.gridDimensionX) and row (GridGeometry2D.gridDimensionY) ordinates in a grid point. They are the index of the first two dimensions with a span greater than 1 in the grid range. Their values are usually 0 and 1 respectively.

It is garanteed that GridGeometry2D.gridDimensionX < GridGeometry2D.gridDimensionY.


axisDimensionX

int axisDimensionX
The (GridGeometry2D.gridDimensionX, GridGeometry2D.gridDimensionY) dimensions in the envelope space. They are index of (x, y) ordinates in a direct position after the grid to CRS transform.

There is no garantee that GridGeometry2D.gridDimensionX maps to GridGeometry2D.axisDimensionX and GridGeometry2D.gridDimensionY maps to GridGeometry2D.axisDimensionY, since axis may be interchanged.

It is garanteed that GridGeometry2D.axisDimensionX < GridGeometry2D.axisDimensionY.


axisDimensionY

int axisDimensionY
The (GridGeometry2D.gridDimensionX, GridGeometry2D.gridDimensionY) dimensions in the envelope space. They are index of (x, y) ordinates in a direct position after the grid to CRS transform.

There is no garantee that GridGeometry2D.gridDimensionX maps to GridGeometry2D.axisDimensionX and GridGeometry2D.gridDimensionY maps to GridGeometry2D.axisDimensionY, since axis may be interchanged.

It is garanteed that GridGeometry2D.axisDimensionX < GridGeometry2D.axisDimensionY.


gridToCRS2D

MathTransform2D gridToCRS2D
A math transform mapping only two dimensions of gridToCRS. Is null if and only if GeneralGridGeometry.gridToCRS is null.


gridFromCRS2D

MathTransform2D gridFromCRS2D
The inverse of gridToCRS2D. Is null if and only if GridGeometry2D.gridToCRS2D is null.


cornerToCRS2D

MathTransform2D cornerToCRS2D
GridGeometry2D.gridToCRS2D cached in the PixelOrientation.UPPER_LEFT case. This field is serialized because it may be user-provided, in which case it is likely to be more accurate than what we would compute. If null, will be computed when first needed.

Class GridRange2D extends GridEnvelope2D implements Serializable

serialVersionUID: 6899195945793291045L

Class ImageGeometry extends Object implements Serializable

serialVersionUID: 1985363181119389264L

Serialized Fields

gridRange

GridRange2D gridRange
The grid range.


gridToCRS

AffineTransform2D gridToCRS
The grid to CRS affine transform.

Class Interpolator2D extends Calculator2D implements Serializable

serialVersionUID: 9028980295030908004L

Serialized Fields

toGrid

MathTransform2D toGrid
Transform from "real world" coordinates to grid coordinates. This transform maps coordinates to pixel centers.


interpolation

Interpolation interpolation
The interpolation method.


fallback

Interpolator2D fallback
Second interpolation method to use if this one failed. May be null if there is no fallback. By convention, this means that interpolation should fallback on super.evaluate(...) (i.e. nearest neighbor).


xmin

int xmin
Image bounds. Bounds have been reduced by Interpolation's padding.


ymin

int ymin
Image bounds. Bounds have been reduced by Interpolation's padding.


xmax

int xmax
Image bounds. Bounds have been reduced by Interpolation's padding.


ymax

int ymax
Image bounds. Bounds have been reduced by Interpolation's padding.


top

int top
Interpolation padding.


left

int left
Interpolation padding.


bounds

Rectangle bounds
The interpolation bounds. Interpolation will use pixel inside this rectangle. This rectangle is passed as an argument to RectIterFactory.

Class InvalidGridGeometryException extends IllegalStateException implements Serializable

serialVersionUID: -7386283388753448743L


Package org.geotools.coverage.grid.io.imageio.geotiff

Class GeoTiffException extends IOException implements Serializable

serialVersionUID: 1008533682021487024L

Serialized Fields

metadata

GeoTiffIIOMetadataDecoder metadata

geoKeys

GeoKeyEntry[] geoKeys

Package org.geotools.coverage.processing

Class AbstractOperation extends Object implements Serializable

serialVersionUID: -1441856042779942954L

Serialized Fields

descriptor

ParameterDescriptorGroup descriptor
The parameters descriptor.

Class AbstractStatisticsOperationJAI extends OperationJAI implements Serializable

Class BaseScaleOperationJAI extends OperationJAI implements Serializable

serialVersionUID: 1L

Class BilevelOperation extends OperationJAI implements Serializable

serialVersionUID: 8975871552152978976L

Class CannotCropException extends CoverageProcessingException implements Serializable

serialVersionUID: -4382377333378224973L

Class CannotReprojectException extends CoverageProcessingException implements Serializable

serialVersionUID: -8145425848361056027L

Class CannotScaleException extends CoverageProcessingException implements Serializable

serialVersionUID: 8644771885589352455L

Class ColorMap extends Object implements Serializable

serialVersionUID: 1688030908496323012L

Serialized Fields

colorMap

Map<K,V> colorMap
The colors to apply to categories. Keys are String objects. Values may be Color singletons or Color[] arrays.

The ColorMap.ANY_QUANTITATIVE_CATEGORY key is replaced by null in order to avoid confusion with user-specified category with the exact name.


colorRanges

Map<K,V> colorRanges
The range of values for quantitative categories. Values are NumberRange instances if the range is relative, or MeasurementRange if the range is geophysics.

The ColorMap.ANY_QUANTITATIVE_CATEGORY key is replaced by null in order to avoid confusion with user-specified category with the exact name.


resetUnspecifiedColors

boolean resetUnspecifiedColors
If true, the ARGB values corresponding to any category not specified in this color map will be reset to the color specified by the category. The default value is false.

Class CoverageProcessingException extends RuntimeException implements Serializable

serialVersionUID: -2199436135615396946L

Class FilterOperation extends OperationJAI implements Serializable

serialVersionUID: 7984379314515755769L

Class Operation2D extends AbstractOperation implements Serializable

serialVersionUID: 574096338873406394L

Class OperationJAI extends Operation2D implements Serializable

serialVersionUID: -5974520239347639965L

Serialized Fields

operation

OperationDescriptor operation
The JAI's operation descriptor.

Class RangeSpecifier extends Object implements Serializable

serialVersionUID: 8436500582161136302L

Serialized Fields

range

NumberRange<T extends Number & Comparable<? super T>> range
The target range, or null if none.


transform

MathTransform1D transform
The target "sample to geophysics" transform, or null if none.


unit

Unit<Q extends Quantity> unit
The target range units, or null if none.


colors

Color[] colors
The target colors, or null if none.


Package org.geotools.coverage.processing.operation

Class Absolute extends OperationJAI implements Serializable

serialVersionUID: 3723059532452772794L

Class AddConst extends OperationJAI implements Serializable

serialVersionUID: 5443686039059774671L

Class Convolve extends OperationJAI implements Serializable

serialVersionUID: -8324284100732653109L

Class Crop extends Operation2D implements Serializable

serialVersionUID: 4466072819239413456L

Class DivideByConst extends OperationJAI implements Serializable

serialVersionUID: -3723238033407316564L

Class Exp extends OperationJAI implements Serializable

serialVersionUID: 6136918309949539525L

Class Extrema extends AbstractStatisticsOperationJAI implements Serializable

serialVersionUID: 7731039381590398047L

Class FilteredSubsample extends BaseScaleOperationJAI implements Serializable

serialVersionUID: 652535074064952517L

Class GradientMagnitude extends OperationJAI implements Serializable

serialVersionUID: -1514713427236924048L

Class Histogram extends AbstractStatisticsOperationJAI implements Serializable

serialVersionUID: -4256576399698278701L

Class Interpolate extends Operation2D implements Serializable

serialVersionUID: 6742127682733620661L

Class Invert extends OperationJAI implements Serializable

serialVersionUID: 7297641092994880308L

Class Log extends OperationJAI implements Serializable

serialVersionUID: -3622176942444895367L

Class MaxFilter extends OperationJAI implements Serializable

serialVersionUID: 3368109980974496342L

Class MedianFilter extends OperationJAI implements Serializable

serialVersionUID: -8604321975842276962L

Class MinFilter extends OperationJAI implements Serializable

serialVersionUID: -45487721305059086L

Class MultiplyConst extends OperationJAI implements Serializable

serialVersionUID: -1077713495023498436L

Class NodataFilter extends FilterOperation implements Serializable

serialVersionUID: 6818008657792977519L

Class Recolor extends IndexColorOperation implements Serializable

Class Resample extends Operation2D implements Serializable

serialVersionUID: -2022393087647420577L

Class Rescale extends OperationJAI implements Serializable

serialVersionUID: -9150531690336265741L

Class Scale extends BaseScaleOperationJAI implements Serializable

serialVersionUID: -3212656385631097713L

Class SelectSampleDimension extends Operation2D implements Serializable

serialVersionUID: 6889502343896409135L

Class SubsampleAverage extends BaseScaleOperationJAI implements Serializable

serialVersionUID: 1L

Class SubtractConst extends OperationJAI implements Serializable

serialVersionUID: 279426577290256732L

Class SubtractFromConst extends OperationJAI implements Serializable

serialVersionUID: 6941277637814235474L


Package org.geotools.data

Class BatchFeatureEvent extends FeatureEvent implements Serializable

serialVersionUID: 3154238322369916486L

Serialized Fields

fids

WeakHashSet<E> fids
This is a weak hash set as we don't need to track changes on FeatureIds that are not being used by the client to track selection.

Class DataSourceException extends IOException implements Serializable

serialVersionUID: -602847953059978370L

Class DefaultServiceInfo extends Object implements Serializable

serialVersionUID: 7975308744804800859L

Serialized Fields

description

String description

keywords

Set<E> keywords

publisher

URI publisher

schema

URI schema

title

String title

source

URI source

Class FeatureEvent extends EventObject implements Serializable

serialVersionUID: 3154238322369916485L

Serialized Fields

type

FeatureEvent.Type type
Indicates one of Type.ADDED, Type.REMOVED, Type.CHANGED


bounds

ReferencedEnvelope bounds
Indicates the bounds in which the modification occurred.

This value is allowed to by null if this information is not known.


featureSource

FeatureSource<T extends FeatureType,F extends Feature> featureSource
The FeatureSource broadcasting the event.

Please note when several FeatureSources are operating on different Transactions this value will not always line up with original FeatureSource represented by Event.getSource().


filter

Filter filter
Filter used to indicate what content has changed.

This is often an Id filter.

Class FeatureLockException extends IOException implements Serializable

serialVersionUID: 1L

Serialized Fields

featureID

String featureID

Class SchemaNotFoundException extends IOException implements Serializable

serialVersionUID: 1L

Serialized Fields

typeName

String typeName

Package org.geotools.data.db2

Class DB2AutoIncrementFIDMapper extends AutoIncrementFIDMapper implements Serializable

Class DB2NullFIDMapper extends NullFIDMapper implements Serializable

Serialized Fields

currentFID

int currentFID

Package org.geotools.data.jdbc

Class FilterToSQLException extends Exception implements Serializable

serialVersionUID: -2394509611777950167L


Package org.geotools.data.jdbc.fidmapper

Class AbstractFIDMapper extends Object implements Serializable

Serialized Fields

autoIncrement

boolean[] autoIncrement

colDecimalDigits

int[] colDecimalDigits

colNames

String[] colNames

colSizes

int[] colSizes

colTypes

int[] colTypes

tableName

String tableName

tableSchemaName

String tableSchemaName

returnFIDColumnsAsAttributes

boolean returnFIDColumnsAsAttributes
Set if table FID columns are to be returned as business attributes.

Class AutoIncrementFIDMapper extends AbstractFIDMapper implements Serializable

serialVersionUID: 1L

Class BasicFIDMapper extends AbstractFIDMapper implements Serializable

serialVersionUID: 1L

Class MaxIncFIDMapper extends AbstractFIDMapper implements Serializable

serialVersionUID: 5719859796485477701L

Class MultiColumnFIDMapper extends AbstractFIDMapper implements Serializable

serialVersionUID: 1L

Class NullFIDMapper extends AbstractFIDMapper implements Serializable

serialVersionUID: 1L

Class TypedFIDMapper extends AbstractFIDMapper implements Serializable

serialVersionUID: 1L

Serialized Fields

featureTypeName

String featureTypeName

wrappedMapper

FIDMapper wrappedMapper

Package org.geotools.data.postgis.fidmapper

Class OIDFidMapper extends AbstractFIDMapper implements Serializable

serialVersionUID: 3257569520561763632L

Class PostGISAutoIncrementFIDMapper extends AutoIncrementFIDMapper implements Serializable

serialVersionUID: -6082930630426171079L

Serialized Fields

can_usepg_get_serial_sequence

boolean can_usepg_get_serial_sequence
Indicates that the pg_get_serial_sequence function exists, and works for this table


hasSerialSequence

boolean hasSerialSequence
Flag to indicate when we can't find the table's sequence


sequenceName

String sequenceName
The actual name of the sequence, if we have found it


Package org.geotools.data.shapefile.dbf

Class DbaseFileException extends DataSourceException implements Serializable

serialVersionUID: -6890880438911014652L


Package org.geotools.data.shapefile.shp

Class ShapefileException extends DataSourceException implements Serializable

serialVersionUID: -6523799964553991364L


Package org.geotools.data.wfs.protocol.wfs

Class WFSException extends IOException implements Serializable

Serialized Fields

msg

StringBuilder msg

Package org.geotools.data.wfs.v1_0_0

Class WFSSchemaFactory.WFSRootHandler extends RootHandler implements Serializable

Serialized Fields

se

WFSSchemaFactory.ServiceExceptionReportHandler se

Package org.geotools.factory

Class FactoryNotFoundException extends FactoryRegistryException implements Serializable

serialVersionUID: 7555229653402417318L

Class FactoryRegistryException extends RuntimeException implements Serializable

serialVersionUID: 8483095037433886648L

Class RecursiveSearchException extends FactoryRegistryException implements Serializable

serialVersionUID: -2028654588882874110L


Package org.geotools.feature

Class CollectionEvent extends EventObject implements Serializable

serialVersionUID: -1864190177730929948L

Serialized Fields

type

int type
Indicates one of FEATURES_ADDED, FEATURES_REMOVED, FEATURES_CHANGED


features

SimpleFeature[] features
Holds value of property features.

Class IllegalAttributeException extends IllegalAttributeException implements Serializable

Class SchemaException extends Exception implements Serializable

serialVersionUID: 5453903672192802976L


Package org.geotools.filter

Class FilterFactoryCreationException extends Exception implements Serializable

Class IllegalFilterException extends RuntimeException implements Serializable

serialVersionUID: 6991878877158220201L

Class MalformedFilterException extends Exception implements Serializable

Class SQLEncoderException extends Exception implements Serializable

serialVersionUID: -2394509611777950167L


Package org.geotools.filter.parser

Class ExpressionException extends ParseException implements Serializable

Serialized Fields

cause

Throwable cause

Class ParseException extends Exception implements Serializable

Serialized Fields

specialConstructor

boolean specialConstructor

currentToken

Token currentToken

expectedTokenSequences

int[][] expectedTokenSequences

tokenImage

String[] tokenImage

eol

String eol

Class TokenMgrError extends Error implements Serializable

Serialized Fields

errorCode

int errorCode

Package org.geotools.filter.text.cql2

Class BuildResultStack extends Object implements Serializable

Class CompilerFactory extends Object implements Serializable

Class CQLException extends ParseException implements Serializable

serialVersionUID: 8873756073711225699L

Serialized Fields

cause

Throwable cause

cqlSource

String cqlSource

currentToken

IToken currentToken

Class DurationUtil extends Object implements Serializable

Class ICompiler extends Object implements Serializable

Class IToken extends Object implements Serializable

Class PeriodNode extends Object implements Serializable

Class Result extends Object implements Serializable

Class TokenAdapter extends Object implements Serializable


Package org.geotools.gce.geotiff

Class GeoTiffException extends IOException implements Serializable

serialVersionUID: 1008533682021487024L

Serialized Fields

metadata

GeoTiffIIOMetadataDecoder metadata

geoKeys

GeoKeyEntry[] geoKeys

Package org.geotools.geometry

Class DirectPosition1D extends AbstractDirectPosition implements Serializable

serialVersionUID: 3235094562875693710L

Serialized Fields

crs

CoordinateReferenceSystem crs
The coordinate reference system for this position;


ordinate

double ordinate
The ordinate value.

Class DirectPosition2D extends Point2D.Double implements Serializable

serialVersionUID: 835130287438466996L

Serialization Methods

readObject

private void readObject(ObjectInputStream in)
                 throws IOException,
                        ClassNotFoundException
Read this object from the specified stream. This method is necessary because the super-class is not serializable.

Throws:
IOException
ClassNotFoundException

writeObject

private void writeObject(ObjectOutputStream out)
                  throws IOException
Write this object to the specified stream. This method is necessary because the super-class is not serializable.

Throws:
IOException
Serialized Fields

crs

CoordinateReferenceSystem crs
The coordinate reference system for this position;

Class GeneralDirectPosition extends AbstractDirectPosition implements Serializable

serialVersionUID: 9071833698385715524L

Serialized Fields

ordinates

double[] ordinates
The ordinates of the direct position.


crs

CoordinateReferenceSystem crs
The coordinate reference system for this position, or null.

Class GeneralEnvelope extends AbstractEnvelope implements Serializable

serialVersionUID: 1752330560227688940L

Serialized Fields

ordinates

double[] ordinates
Minimum and maximum ordinate values. The first half contains minimum ordinates, while the last half contains maximum ordinates. This layout is convenient for the creation of lower and upper corner direct positions.

Consider this reference as final; it is modified by GeneralEnvelope.clone() only.


crs

CoordinateReferenceSystem crs
The coordinate reference system, or null.

Class TransformedDirectPosition extends GeneralDirectPosition implements Serializable

serialVersionUID: -3988283183934950437L

Serialized Fields

factory

CoordinateOperationFactory factory
The factory to use for creating new coordinate operation.


defaultCRS

CoordinateReferenceSystem defaultCRS
The default source CRS. To be used only when the user invoked TransformedDirectPosition.transform(org.opengis.geometry.DirectPosition) with a position without associated CoordinateReferenceSystem. May be null if the default CRS is assumed equals to this position CRS.


Package org.geotools.geometry.jts

Class ReferencedEnvelope extends Envelope implements Serializable

serialVersionUID: -3188702602373537163L

Serialized Fields

crs

CoordinateReferenceSystem crs
The coordinate reference system, or null.

Class TransformedShape extends AffineTransform implements Serializable

Serialized Fields

shape

Shape shape
The wrapped shape.


point

Point2D.Double point
A temporary point.


rectangle

Rectangle2D.Double rectangle
A temporary rectangle.


Package org.geotools.gml

Class GMLException extends Exception implements Serializable


Package org.geotools.gml3

Class Curve extends MultiLineString implements Serializable

Class MultiCurve extends GeometryCollection implements Serializable

Class MultiSurface extends MultiPolygon implements Serializable


Package org.geotools.graph.path

Class Cycle extends Walk implements Serializable

Class Path extends Walk implements Serializable

Class Walk extends ArrayList implements Serializable

Serialized Fields

m_edges

List<E> m_edges

Package org.geotools.graph.structure.basic

Class BasicDirectedEdge extends BasicGraphable implements Serializable

Serialized Fields

m_in

DirectedNode m_in
in node


m_out

DirectedNode m_out
out node

Class BasicDirectedGraph extends BasicGraph implements Serializable

Class BasicDirectedNode extends BasicGraphable implements Serializable

Serialization Methods

readObject

private void readObject(ObjectInputStream in)
                 throws IOException,
                        ClassNotFoundException
Overides the default deserialization operation. The edge adjacency lists of a BasicDirectedNode is not written out when the node is serialized so they must be recreated upon deserialization.

Throws:
IOException
ClassNotFoundException

Class BasicEdge extends BasicGraphable implements Serializable

Serialized Fields

m_nodeA

Node m_nodeA
A node


m_nodeB

Node m_nodeB
B node

Class BasicGraph extends Object implements Serializable

Class BasicGraphable extends Object implements Serializable

Serialized Fields

m_obj

Object m_obj
underlying object of component


m_visited

boolean m_visited
Flag to indicate wether the component has been visited


m_nvisited

int m_nvisited
A counter to track how many times a component has been visited


m_id

int m_id
Id for component.

Class BasicNode extends BasicGraphable implements Serializable

Serialization Methods

readObject

private void readObject(ObjectInputStream in)
                 throws IOException,
                        ClassNotFoundException
Overides the default deserialization operation. The edge adjacency list of a BasicNode is not written out when the node is serialized so it must be recreated upon deserialization.

Throws:
IOException
ClassNotFoundException

Package org.geotools.graph.structure.line

Class BasicDirectedXYNode extends BasicDirectedNode implements Serializable

Class BasicXYNode extends BasicNode implements Serializable

Class OptDirectedXYNode extends OptDirectedNode implements Serializable

Serialized Fields

m_x

double m_x
x value of coordinate


m_y

double m_y
y value of coordinate

Class OptXYNode extends OptNode implements Serializable

Serialized Fields

m_x

double m_x
x value of coordinate


m_y

double m_y
y value of coordinate


Package org.geotools.graph.structure.opt

Class OptDirectedEdge extends OptGraphable implements Serializable

Serialized Fields

m_in

OptDirectedNode m_in
in node


m_out

OptDirectedNode m_out
out node

Class OptDirectedNode extends OptGraphable implements Serializable

Serialization Methods

readObject

private void readObject(ObjectInputStream in)
                 throws IOException,
                        ClassNotFoundException
Overrides the default deserialization operation. Since edge adjacency lists of Nodes are not written out upon serialization, they must be recreated upon deserialization.

Throws:
IOException
ClassNotFoundException

writeObject

private void writeObject(ObjectOutputStream out)
                  throws IOException
Overrides the default serialization operation. Since edge adjacency lists of Nodes are not written out upon serialization, all the information needed to recreate them must be written to the object stream as well. Since the edge list is not written out, and the node does not store its degree explicitly, it must be written to the output stream.

Throws:
IOException
ClassNotFoundException

Class OptEdge extends OptGraphable implements Serializable

Serialized Fields

m_nodeA

OptNode m_nodeA
a node


m_nodeB

OptNode m_nodeB
b node

Class OptGraphable extends Object implements Serializable

Serialized Fields

m_visited

boolean m_visited
visited flag


m_count

byte m_count
counter

Class OptNode extends OptGraphable implements Serializable

Serialization Methods

readObject

private void readObject(ObjectInputStream in)
                 throws IOException,
                        ClassNotFoundException
Overrides the default deserialization operation. Since edge adjacency lists of Nodes are not written out upon serialization, they must be recreated upon deserialization.

Throws:
IOException
ClassNotFoundException

writeObject

private void writeObject(ObjectOutputStream out)
                  throws IOException
Overrides the default serialization operation. Since edge adjacency lists of Nodes are not written out upon serialization, all the information needed to recreate them must be written to the object stream as well. Since the edge list is not written out, and the node does not store its degree explicitly, it must be written to the output stream.

Throws:
IOException
ClassNotFoundException
Serialized Fields

m_edges

Edge[] m_edges
edge adjacency list


Package org.geotools.graph.util

Class IndexedStack extends Stack implements Serializable

Serialized Fields

m_index

HashMap<K,V> m_index

Class MultiMap extends Object implements Serializable

Serialized Fields

m_map

Map<K,V> m_map

m_collectionClass

Class<T> m_collectionClass

Class ParseErrorHandler extends DefaultHandler implements Serializable

Serialized Fields

m_parseErrors

ArrayList<E> m_parseErrors

Class SimpleFileFilter extends FileFilter implements Serializable

Serialized Fields

m_ext

String m_ext

m_desc

String m_desc

Package org.geotools.graph.util.delaunay

Class DelaunayEdge extends BasicEdge implements Serializable

Serialized Fields

faceA

Triangle faceA

faceB

Triangle faceB

Class DelaunayNode extends BasicXYNode implements Serializable

Serialized Fields

feature

SimpleFeature feature

Class GraphViewer extends JPanel implements Serializable

Serialized Fields

graph

Graph graph

nodes

Collection<E> nodes

minX

double minX

minY

double minY

xScaling

int xScaling

yScaling

int yScaling

xOffset

int xOffset

yOffset

int yOffset

colorEdges

boolean colorEdges

nodeColors

Color[] nodeColors

shortEdges

Vector<E> shortEdges

longEdges

Vector<E> longEdges

otherEdges

Vector<E> otherEdges

Package org.geotools.gui.swing

Class About extends JPanel implements Serializable

Serialized Fields

updater

About.ThreadList updater
Thread qui aura la charge de faire des mises à jour en arrière-plan. Ce champ sera null s'il n'y en a pas.


resources

Vocabulary resources
The localized resources to use.

Class DisjointLists extends JPanel implements Serializable

Serialized Fields

left

JList left
The list on the left side. This is the list that contains the element selectable by the user.


right

JList right
The list on the right side. This list is initially empty.


autoSort

boolean autoSort
true if elements should be automatically sorted.

Class FormatChooser extends JPanel implements Serializable

Serialized Fields

format

Format format
The format to configure by this FormatChooser.


value

Object value
A sample value for the "preview" text.


choices

JComboBox choices
The panel in which to edit the pattern.


preview

JLabel preview
The preview text. This is the value formated using format.

Class LoggingPanel extends JPanel implements Serializable

Serialized Fields

model

LoggingTableModel model
The model for this component.


table

JTable table
The table for displaying logging messages.


levelValues

int[] levelValues
The levels for colors enumerated in levelColors. This array must be in increasing order. Logging messages of level levelValues[i] or higher will be displayed with foreground color levelColors[i*2] and background color levelColors[i*2+1].

See Also:
Level.intValue(), LoggingPanel.getForeground(LogRecord), LoggingPanel.getBackground(LogRecord)

levelColors

List<E> levelColors
Pairs of foreground and background colors to use for displaying logging messages. Logging messages of level levelValues[i] or higher will be displayed with foreground color levelColors[i*2] and background color levelColors[i*2+1].

See Also:
LoggingPanel.getForeground(LogRecord), LoggingPanel.getBackground(LogRecord)

logger

Logger logger
The logger specified at construction time, or null if none.

Class ParameterEditor extends JPanel implements Serializable

Serialized Fields

editors

Map<K,V> editors
The set of component editors created up to date.


cards

Container cards
The properties panel for parameters. The content for this panel depends on the selected item, but usually includes the following:


description

JLabel description
The label for parameter or image description. Usually displayed on top of parameter editor.


value

Object value
The current value in the process of being edited. This object is usually an instance of Number, KernelJAI, LookupTableJAI or some other parameter object.

See Also:
ParameterEditor.setParameterValue(java.lang.Object)

editor

Component editor
The editor widget currently in use.

See Also:
ParameterEditor.setParameterValue(java.lang.Object), ParameterEditor.getEditor()

model

ParameterEditor.Editor model
The editor model currently in use. This is often the model used by the editor widget.

Class ZoomPane extends JComponent implements Serializable

Serialized Fields

mouseSelectionTracker

MouseListener mouseSelectionTracker
Object in charge of drawing a box representing the user's selection. We retain a reference to this object in order to be able to register it and extract it at will from the list of objects interested in being notified of the mouse movements.


zoom

AffineTransform zoom
Affine transform containing zoom factors, translations and rotations. During the painting of a component, this affine transform should be combined with a call to Graphics2D.transform(zoom).


zoomIsReset

boolean zoomIsReset
Indicates whether the zoom is the result of a ZoomPane.reset() operation.


type

int type
Types of zoom permitted. This field should be a combination of the constants ZoomPane.SCALE_X, ZoomPane.SCALE_Y, ZoomPane.TRANSLATE_X, ZoomPane.TRANSLATE_Y, ZoomPane.ROTATE, ZoomPane.RESET and ZoomPane.DEFAULT_ZOOM.


fillPanel

boolean fillPanel
Strategy to follow in order to calculate the initial affine transform. The value true indicates that the content should fill the entire panel, even if it means losing some of the edges. The value false indicates, on the contrary, that we should display the entire contents, even if it means leaving blank spaces in the panel.


visibleArea

Rectangle2D visibleArea
Rectangle representing the logical coordinates of the visible region. This information is used to keep the same region when the size or position of the component changes. Initially, this rectangle is empty. It will only stop being empty if ZoomPane.reset() is called and ZoomPane.getPreferredArea() and ZoomPane.getZoomableBounds() have both returned valid coordinates.

See Also:
ZoomPane.getVisibleArea(), ZoomPane.setVisibleArea(java.awt.geom.Rectangle2D)

preferredArea

Rectangle2D preferredArea
Rectangle representing the logical coordinates of the region to display initially, the first time that the window is displayed. The value null indicates a call to ZoomPane.getArea().

See Also:
ZoomPane.getPreferredArea(), ZoomPane.setPreferredArea(java.awt.geom.Rectangle2D)

paintingWhileAdjusting

boolean paintingWhileAdjusting
Indicates if this ZoomPane object should be repainted when the user adjusts the scrollbars. The default value is false, which means that ZoomPane will wait until the user has released the scrollbar before repainting the component.

See Also:
ZoomPane.isPaintingWhileAdjusting(), ZoomPane.setPaintingWhileAdjusting(boolean)

magnifierEnabled

boolean magnifierEnabled
Indicates whether the user is authorised to display the magnifying glass. The default value is true.


magnifierPower

double magnifierPower
Magnification factor inside the magnifying glass. This factor must be greater than 1.


magnifierGlass

Paint magnifierGlass
Colour with which to tint magnifying glass.


magnifierBorder

Paint magnifierBorder
Colour of the magnifying glass's border.


Package org.geotools.gui.swing.event

Class ZoomChangeEvent extends EventObject implements Serializable

Serialized Fields

change

AffineTransform change
An affine transform indicating the zoom change. If oldZoom and newZoom are the affine transforms before and after the change respectively, then the following relation must hold (within the limits of rounding error): newZoom = oldZoom.concatenate(change)


Package org.geotools.gui.swing.image

Class ColorRamp extends JComponent implements Serializable

Serialized Fields

graduation

Graduation graduation
The graduation to write over the color ramp.


units

String units
Graduation units. This is constructed from Graduation.getUnit() and cached for faster rendering.


colors

Color[] colors
The colors to paint (never null).


labelVisibles

boolean labelVisibles
true if tick label must be display.


autoForeground

boolean autoForeground
true if tick label can be display with an automatic color. The automatic color will be white or black depending the background color.


horizontal

boolean horizontal
true if the color bar should be drawn horizontally, or false if it should be drawn vertically.


ui

ColorRamp.UI ui
The ComponentUI object for computing preferred size, drawn the component and handle some events.

Class GradientKernelEditor extends JComponent implements Serializable

Serialized Fields

kernelH

KernelEditor kernelH
The horizontal kernel editor.


kernelV

KernelEditor kernelV
The vertical kernel editor.

Class ImagePane extends ZoomPane implements Serializable

Serialized Fields

renderedSize

int renderedSize
The default size for rendered image produced by a RenderableImage. This is also the maximum size for a RenderedImage; bigger image will be scaled down using JAI's "Scale" operation for faster rendering.


renderable

RenderableImage renderable
The renderable image, or null if none. If non-null, then the ImagePane.run() method will transform this renderable image into a rendered one when first requested. Once the image is rendered, this field is set to null.


rendered

RenderedImage rendered
The rendered image, or null if none. This image may be explicitly set by ImagePane.setImage(RenderedImage), or computed by ImagePane.run().


running

boolean running
true if the ImagePane.run() method has been invoked for the current image. This field is used in order to avoid to start more than one thread for the same ImagePane.renderable image.

Class ImageProperties extends JPanel implements Serializable

Serialized Fields

operationName

JLabel operationName
The operation name, or the image class name if the image is not an instance of OperationNode.


operationDescription

JLabel operationDescription
The operation description.


operationVersion

JLabel operationVersion
The operation vendor and version.


imageSize

JLabel imageSize
The text area for image size.


tileSize

JLabel tileSize
The text area for tile size.


dataType

JLabel dataType
The text area for sample type (e.g. "8 bits unsigned integer".


sampleModel

JLabel sampleModel
The text area for the sample model.


colorModel

JLabel colorModel
The text area for the color model.


colorRamp

ColorRamp colorRamp
The color bar for IndexColorModel.


properties

ImageProperties.Table properties
The table model for image's properties.


samples

ImageSampleValues samples
The table for sample values.


viewer

ImagePane viewer
The viewer for an image quick look.

Class ImageSampleValues extends JPanel implements Serializable

Serialized Fields

table

JTable table
The table which contains sample values.


renderer

ImageSampleValues.CellRenderer renderer
The cell renderer for sample values.


band

SpinnerNumberModel band
The model for band selection.


comments

JLabel comments
An empty component for now. May contains geographic coordinates in a future version. This is the only component in the "status bar" with a variable width.


current

ImageSampleValues.CurrentColor current
The color for the selected cell.

Class ImageTableModel extends AbstractTableModel implements Serializable

serialVersionUID: -408603520054548181L

Serialization Methods

readObject

private void readObject(ObjectInputStream in)
                 throws IOException,
                        ClassNotFoundException
Recomputes transient fields after deserializations.

Throws:
IOException
ClassNotFoundException
Serialized Fields

image

RenderedImage image
The image to display.


format

NumberFormat format
The format to use for formatting sample values.


titleFormat

NumberFormat titleFormat
The format to use for formatting line and column labels.


band

int band
The band to show.

Class ImageTableModel.RowHeaders extends AbstractTableModel implements Serializable

serialVersionUID: 5162324745024331522L

Class KernelEditor extends JComponent implements Serializable

Serialized Fields

model

KernelEditor.Model model
The matrix coefficient as a table.


categorySelector

JComboBox categorySelector
The list of available filter's categories.


kernelSelector

JComboBox kernelSelector
The list of available kernels.


widthSelector

JSpinner widthSelector
The matrix width.


heightSelector

JSpinner heightSelector
The matrix height.

Class OperationTreeBrowser extends JPanel implements Serializable

Serialized Fields

imageProperties

ImageProperties imageProperties
The image properties panel. Will be constructed only when first needed, and the added to the card layout with the IMAGE name.


parameterEditor

ParameterEditor parameterEditor
The parameter properties panel. Will be constructed only when first needed, and the added to the card layout with the PARAMETER name.


cards

Container cards
The properties panel. The content for this panel depends on the selected tree item, but usually includes the following:

Class RegisteredOperationBrowser extends JPanel implements Serializable

Serialized Fields

description

JLabel description
The text area for operation's description.


version

JLabel version
The text area for the version and vendor.


Package org.geotools.gui.swing.referencing

Class AuthorityCodesComboBox extends JComponent implements Serializable

Serialized Fields

factory

AuthorityFactory factory
The authority factory responsible for creating objects from a list of codes.


codeList

CodeList codeList
The list of authority codes, as a combo box model.


type

Class<T> type
The type of CRS object to includes in the list.


list

JComboBox list
The list of CRS objects.


search

JTextField search
The text field for searching item.


searchOrList

JPanel searchOrList
The AuthorityCodesComboBox.search or AuthorityCodesComboBox.list field.


cards

CardLayout cards
The card layout showing either AuthorityCodesComboBox.list or AuthorityCodesComboBox.search.


showProperties

JButton showProperties
The button to press for showing properties.


properties

PropertiesSheet properties
Info about the currently selected item.


propertiesWindow

Component propertiesWindow
The window that contains AuthorityCodesComboBox.properties.

Class CoordinateChooser extends JPanel implements Serializable

Serialized Fields

areaPanel

JComponent areaPanel
The three mean panels in this dialog box: geographic area, time and preferred resolution.


timePanel

JComponent timePanel
The three mean panels in this dialog box: geographic area, time and preferred resolution.


resoPanel

JComponent resoPanel
The three mean panels in this dialog box: geographic area, time and preferred resolution.


timezone

JComboBox timezone
Liste de choix dans laquelle l'utilisateur choisira le fuseau horaire de ses dates.


tmin

JSpinner tmin
Dates de début et de fin de la plage de temps demandée par l'utilisateur. Ces dates sont gérées par un modèle SpinnerDateModel.


tmax

JSpinner tmax
Dates de début et de fin de la plage de temps demandée par l'utilisateur. Ces dates sont gérées par un modèle SpinnerDateModel.


xmin

JSpinner xmin
Longitudes et latitudes minimales et maximales demandées par l'utilisateur. Ces coordonnées sont gérées par un modèle SpinnerNumberModel.


xmax

JSpinner xmax
Longitudes et latitudes minimales et maximales demandées par l'utilisateur. Ces coordonnées sont gérées par un modèle SpinnerNumberModel.


ymin

JSpinner ymin
Longitudes et latitudes minimales et maximales demandées par l'utilisateur. Ces coordonnées sont gérées par un modèle SpinnerNumberModel.


ymax

JSpinner ymax
Longitudes et latitudes minimales et maximales demandées par l'utilisateur. Ces coordonnées sont gérées par un modèle SpinnerNumberModel.


xres

JSpinner xres
Résolution (en minutes de longitudes et de latitudes) demandée par l'utilisateur. Ces résolution sont gérées par un modèle SpinnerNumberModel.


yres

JSpinner yres
Résolution (en minutes de longitudes et de latitudes) demandée par l'utilisateur. Ces résolution sont gérées par un modèle SpinnerNumberModel.


radioBestRes

AbstractButton radioBestRes
Bouton radio pour sélectioner la meilleure résolution possible.


radioPrefRes

AbstractButton radioPrefRes
Bouton radio pour sélectioner la résolution spécifiée.


accessory

JComponent accessory
Composante facultative à afficher à la droite du paneau CoordinateChooser.

Class CoordinateTableModel extends AbstractTableModel implements Serializable

Serialized Fields

crs

CoordinateReferenceSystem crs
The CRS for all coordinates in this table. This is specified by the user at construction time.


columnNames

String[] columnNames
The columns table names. They are inferred from the table CRS specified at construction time.


positions

List<E> positions
The direct positions to display in the table.


unmodifiablePositions

List<E> unmodifiablePositions
An unmodifiable view of the positions list. This is the view returned by public accessors. We do not allow addition or removal of positions through this list because such changes would not invoke the proper fire method.


validArea

GeneralEnvelope validArea
The CRS valid area.


toWGS84

TransformedDirectPosition toWGS84
For transformation frop the table CRS to WGS84.

Class CoordinateTableModel.CellRenderer extends DefaultTableCellRenderer implements Serializable

Serialized Fields

foreground

Color foreground
The default text and background color.


background

Color background
The default text and background color.


invalidForeground

Color invalidForeground
The text and background color for invalid coordinates.


invalidBackground

Color invalidBackground
The text and background color for invalid coordinates.

Class PropertiesSheet extends JComponent implements Serializable

Serialized Fields

tabs

JTabbedPane tabs
Provides different view of the CRS object (properties, WKT, etc.).


wktArea

JTextArea wktArea
The Well Known Text area.


Package org.geotools.gui.swing.table

Class FeatureTableModel extends AbstractTableModel implements Serializable

Serialized Fields

featureTable

FeatureCollection<T extends FeatureType,F extends Feature> featureTable
Holds the feature table that will be represented by this model.


Package org.geotools.gui.swing.tree

Class DefaultMutableTreeNode extends DefaultMutableTreeNode implements Serializable

serialVersionUID: -8782548896062360341L

Class NamedTreeNode extends DefaultMutableTreeNode implements Serializable

serialVersionUID: -5052321314347001298L

Serialized Fields

name

String name
The node label to be returned by NamedTreeNode.toString().


Package org.geotools.image

Class ImageDimension extends Dimension implements Serializable

serialVersionUID: -4349573462196081362L

Serialized Fields

numBands

int numBands
The number of bands in the image or raster.


dataType

int dataType
The image data type.


Package org.geotools.image.io

Class IIOListeners extends Object implements Serializable

serialVersionUID: 6944397966242054247L

Serialized Fields

listeners

EventListenerList listeners
List of listeners.


Package org.geotools.image.jai

Class CombineDescriptor extends OperationDescriptorImpl implements Serializable

Class HysteresisDescriptor extends OperationDescriptorImpl implements Serializable

Class NodataFilterDescriptor extends OperationDescriptorImpl implements Serializable


Package org.geotools.image.palette

Class ColorReductionDescriptor extends OperationDescriptorImpl implements Serializable

serialVersionUID: -8859576263333814317L


Package org.geotools.index

Class LockTimeoutException extends Exception implements Serializable

Class TreeException extends IOException implements Serializable

serialVersionUID: 1988241322009839486L

Class UnsupportedFilterException extends Exception implements Serializable

serialVersionUID: 3292904738782996000L


Package org.geotools.index.quadtree

Class StoreException extends Exception implements Serializable

serialVersionUID: -3356954193373344773L


Package org.geotools.index.rtree.cachefs

Class NodeCache extends LinkedHashMap implements Serializable

Serialized Fields

maxElements

int maxElements

Package org.geotools.io

Class ContentFormatException extends IOException implements Serializable

serialVersionUID: 6152194019351374599L

Class LineFormat extends Format implements Serializable

serialVersionUID: 1663380990689494113L

Serialized Fields

count

int count
Number of valid data in the LineFormat.data array. This is the number of data found last time LineFormat.setLine(String) has been invoked.


data

Object[] data
Data read last time LineFormat.setLine(String) has been invoked. Those data are returned by methods like LineFormat.getValues(float[]).


format

Format[] format
Array of formats to use for parsing a line. Each format object in this array match one column. For example data[4] will be parsed with format[4]. If the LineFormat.data array is longer than LineFormat.format, then the last format is reused for all remaining columns.


position

ParsePosition position
The ParsePosition used for specifying the substring to parse.


limits

int[] limits
Index of the the first character parsed in each column. For example index[0] contains the index of the first character read for data[0], etc. This array length must be equals to LineFormat.data.length + 1. The last element will be the line length.


line

String line
The line specified in the last call to LineFormat.setLine(String).


Package org.geotools.map.event

Class MapBoundsEvent extends EventObject implements Serializable

Serialized Fields

type

int type
Holds value of property type.


oldCoordinateReferenceSystem

CoordinateReferenceSystem oldCoordinateReferenceSystem
Holds value of property oldCoordinateReferenceSystem.


oldAreaOfInterest

Envelope oldAreaOfInterest
Holds value of property oldAreaOfInterest.

Class MapLayerEvent extends EventObject implements Serializable

Serialized Fields

reason

int reason
The reason for the change.

Class MapLayerListEvent extends EventObject implements Serializable

Serialized Fields

layer

MapLayer layer
Holds value of property layer.


fromIndex

int fromIndex
Holds value of property fromIndex.


toIndex

int toIndex
Holds value of property toIndex.


mapLayerEvent

MapLayerEvent mapLayerEvent
Holds value of property mapLayerEvent.


Package org.geotools.math

Class Complex extends Object implements Serializable

serialVersionUID: -8143196508298758583L

Serialized Fields

real

double real
The real part of the complex number.


imag

double imag
The imaginary part of the complex number.

Class Fraction extends Number implements Serializable

serialVersionUID: -4501644254763471216L

Serialized Fields

numerator

int numerator
The numerator.


denominator

int denominator
The denominator.

Class Line extends Object implements Serializable

serialVersionUID: 2185952238314399110L

Serialized Fields

slope

double slope
The slope for this line.


y0

double y0
The y value at x==0.


x0

double x0
Value of x at y==0. This value is used for vertical lines.

Class Plane extends Object implements Serializable

serialVersionUID: 2956201711131316723L

Serialized Fields

c

double c
The c coefficient for this plane. This coefficient appears in the place equation c+cx*x+cy*y.


cx

double cx
The cx coefficient for this plane. This coefficient appears in the place equation c+cx*x+cy*y.


cy

double cy
The cy coefficient for this plane. This coefficient appears in the place equation c+cx*x+cy*y.

Class Polynom extends Object implements Serializable

serialVersionUID: 6825019711186108990L

Serialized Fields

c

double[] c
The coefficients for this polynom.

Class Statistics extends Object implements Serializable

serialVersionUID: -22884277805533726L

Serialized Fields

min

double min
Valeur minimale qui aie été transmise à la méthode Statistics.add(double). Lors de la construction, ce champs est initialisé à NaN.


max

double max
Valeur maximale qui aie été transmise à la méthode Statistics.add(double). Lors de la construction, ce champs est initialisé à NaN.


sum

double sum
Somme de toutes les valeurs qui ont été transmises à la méthode Statistics.add(double). Lors de la construction, ce champs est initialisé à 0.


sum2

double sum2
Somme des carrés de toutes les valeurs qui ont été transmises à la méthode Statistics.add(double). Lors de la construction, ce champs est initialisé à 0.


n

int n
Nombre de données autres que NaN qui ont été transmises à la méthode Statistics.add(double). Lors de la construction, ce champs est initialisé à 0.


nNaN

int nNaN
Nombre de données égales à NaN qui ont été transmises à la méthode Statistics.add(double). Les NaN sont ingorés lors du calcul des statistiques, mais on les compte quand même au passage. Lors de la construction ce champs est initialisé à 0.

Class Statistics.Delta extends Statistics implements Serializable

serialVersionUID: 3464306833883333219L

Serialized Fields

delta

Statistics delta
Statistics about the differences between consecutive sample values.


last

double last
Last value given to an add method as a double, or NaN if none.


lastAsLong

long lastAsLong
Last value given to an add method as a long, or 0 if none.


Package org.geotools.measure

Class Angle extends Object implements Serializable

serialVersionUID: 1158747349433104534L

Serialized Fields

theta

double theta
Angle value in degres.

Class AngleFormat extends Format implements Serializable

serialVersionUID: 4320403817210439764L

Serialization Methods

readObject

private void readObject(ObjectInputStream in)
                 throws IOException,
                        ClassNotFoundException
Restore fields after deserialization.

Throws:
IOException
ClassNotFoundException
Serialized Fields

width0

int width0
Nombre minimal d'espaces que doivent occuper les parties entières des degrés (0), minutes (1) et secondes (2). Le champs widthDecimal indique la largeur fixe que doit avoir la partie décimale. Il s'appliquera au dernier champs non-zero dans width0..2.


width1

int width1
Nombre minimal d'espaces que doivent occuper les parties entières des degrés (0), minutes (1) et secondes (2). Le champs widthDecimal indique la largeur fixe que doit avoir la partie décimale. Il s'appliquera au dernier champs non-zero dans width0..2.


width2

int width2
Nombre minimal d'espaces que doivent occuper les parties entières des degrés (0), minutes (1) et secondes (2). Le champs widthDecimal indique la largeur fixe que doit avoir la partie décimale. Il s'appliquera au dernier champs non-zero dans width0..2.


widthDecimal

int widthDecimal
Nombre minimal d'espaces que doivent occuper les parties entières des degrés (0), minutes (1) et secondes (2). Le champs widthDecimal indique la largeur fixe que doit avoir la partie décimale. Il s'appliquera au dernier champs non-zero dans width0..2.


prefix

String prefix
Caractères à insérer au début (prefix) et à la suite des degrés, minutes et secondes (suffix0..2). Ces champs doivent être null s'il n'y a rien à insérer.


suffix0

String suffix0
Caractères à insérer au début (prefix) et à la suite des degrés, minutes et secondes (suffix0..2). Ces champs doivent être null s'il n'y a rien à insérer.


suffix1

String suffix1
Caractères à insérer au début (prefix) et à la suite des degrés, minutes et secondes (suffix0..2). Ces champs doivent être null s'il n'y a rien à insérer.


suffix2

String suffix2
Caractères à insérer au début (prefix) et à la suite des degrés, minutes et secondes (suffix0..2). Ces champs doivent être null s'il n'y a rien à insérer.


decimalSeparator

boolean decimalSeparator
Indique s'il faut utiliser le séparateur décimal pour séparer la partie entière de la partie fractionnaire. La valeur false indique que les parties entières et fractionnaires doivent être écrites ensembles (par exemple 34867 pour 34.867). La valeur par défaut est true.


numberFormat

DecimalFormat numberFormat
Format à utiliser pour écrire les nombres (degrés, minutes ou secondes) à l'intérieur de l'écriture d'un angle.

Class CoordinateFormat extends Format implements Serializable

serialVersionUID: 8235685097881260737L

Serialized Fields

crs

CoordinateReferenceSystem crs
The output coordinate reference system. May be null.


separator

String separator
The separator between each coordinate values to be formatted.


formats

Format[] formats
The formats to use for formatting. This array's length must be equals to the coordinate system's dimension. This array is never null.


types

byte[] types
The type for each value in the formats array. Types are: 0=number, 1=longitude, 2=latitude, 3=other angle, 4=date, 5=ellapsed time. This array is never null.


epochs

long[] epochs
The time epochs. Non-null only if at least one ordinate is a date.


toMillis

UnitConverter[] toMillis
Conversions from temporal axis units to milliseconds. Non-null only if at least one ordinate is a date.


dummy

FieldPosition dummy
Dummy field position.


locale

Locale locale
The locale for formatting coordinates and numbers.

Class Latitude extends Angle implements Serializable

serialVersionUID: -4496748683919618976L

Class Longitude extends Angle implements Serializable

serialVersionUID: -8614900608052762636L

Class Measure extends Number implements Serializable

serialVersionUID: 6917234039472328164L

Serialized Fields

value

double value
The scalar value.


unit

Unit<Q extends Quantity> unit
The unit.


Package org.geotools.metadata

Class InvalidMetadataException extends IllegalStateException implements Serializable

serialVersionUID: 3219759595538181102L

Class UnmodifiableMetadataException extends UnsupportedOperationException implements Serializable

serialVersionUID: -1885135341334523675L


Package org.geotools.metadata.iso

Class ApplicationSchemaInformationImpl extends MetadataEntity implements Serializable

serialVersionUID: -3109191272905767382L

Serialized Fields

name

Citation name
Name of the application schema used.


schemaLanguage

String schemaLanguage
Identification of the schema language used.


constraintLanguage

String constraintLanguage
Formal language used in Application Schema.


schemaAscii

URI schemaAscii
Full application schema given as an ASCII file.


graphicsFile

URI graphicsFile
Full application schema given as a graphics file.


softwareDevelopmentFile

URI softwareDevelopmentFile
Full application schema given as a software development file.


softwareDevelopmentFileFormat

String softwareDevelopmentFileFormat
Software dependent format used for the application schema software dependent file.


featureCatalogueSupplement

SpatialAttributeSupplement featureCatalogueSupplement
Information about the spatial attributes in the application schema for the feature types.

Class ExtendedElementInformationImpl extends MetadataEntity implements Serializable

serialVersionUID: -935396252908733907L

Serialized Fields

name

String name
Name of the extended metadata element.


shortName

String shortName
Short form suitable for use in an implementation method such as XML or SGML.


domainCode

Integer domainCode
Three digit code assigned to the extended element. Non-null only if the data type is code list element.


definition

InternationalString definition
Definition of the extended element.


obligation

Obligation obligation
Obligation of the extended element.


condition

InternationalString condition
Condition under which the extended element is mandatory. Non-null value only if the obligation is conditional.


dataType

Datatype dataType
Code which identifies the kind of value provided in the extended element.


maximumOccurrence

Integer maximumOccurrence
Maximum occurrence of the extended element. Returns null if it doesn't apply, for example if the data type is enumeration, code list or code list element.


domainValue

InternationalString domainValue
Valid values that can be assigned to the extended element. Returns null if it doesn't apply, for example if the data type is enumeration, code list or code list element.


parentEntity

Collection<E> parentEntity
Name of the metadata entity(s) under which this extended metadata element may appear. The name(s) may be standard metadata element(s) or other extended metadata element(s).


rule

InternationalString rule
Specifies how the extended element relates to other existing elements and entities.


rationales

Collection<E> rationales
Reason for creating the extended element.


sources

Collection<E> sources
Name of the person or organization creating the extended element.

Class FeatureCatalogueDescriptionImpl extends ContentInformationImpl implements Serializable

serialVersionUID: -5361236546997056467L

Serialized Fields

compliant

Boolean compliant
Indication of whether or not the cited feature catalogue complies with ISO 19110.


language

Collection<E> language
Language(s) used within the catalogue


includeWithDataset

Boolean includeWithDataset
Indication of whether or not the feature catalogue is included with the dataset.


featureTypes

Collection<E> featureTypes
Subset of feature types from cited feature catalogue occurring in dataset.


featureCatalogueCitations

Collection<E> featureCatalogueCitations
Complete bibliographic reference to one or more external feature catalogues.

Class FeatureTypeListImpl extends MetadataEntity implements Serializable

serialVersionUID: 5417914796207743856L

Serialized Fields

spatialObject

String spatialObject
Instance of a type defined in the spatial schema.


spatialSchemaName

String spatialSchemaName
Name of the spatial schema used.

Class IdentifierImpl extends MetadataEntity implements Serializable

serialVersionUID: 7459062382170865919L

Serialized Fields

code

String code
Alphanumeric value identifying an instance in the namespace.


version

String version
Identifier of the version of the associated code space or code, as specified by the code space or code authority. This version is included only when the code uses versions. When appropriate, the edition is identified by the effective date, coded using ISO 8601 date format.


authority

Citation authority
Organization or party responsible for definition and maintenance of the code.

Class MetadataEntity extends ModifiableMetadata implements Serializable

serialVersionUID: 5730550742604669102L

Class MetadataExtensionInformationImpl extends MetadataEntity implements Serializable

serialVersionUID: 573866936088674519L

Serialized Fields

extensionOnLineResource

OnLineResource extensionOnLineResource
Information about on-line sources containing the community profile name and the extended metadata elements. Information for all new metadata elements.


extendedElementInformation

Collection<E> extendedElementInformation
Provides information about a new metadata element, not found in ISO 19115, which is required to describe geographic data.

Class MetaDataImpl extends MetadataEntity implements Serializable

serialVersionUID: -5600409558876701144L

Serialized Fields

fileIdentifier

String fileIdentifier
Unique identifier for this metadata file, or null if none.


language

Locale language
Language used for documenting metadata.


locales

Collection<E> locales
Information about an alternatively used localized character strings for linguistic extensions.


characterSet

CharacterSet characterSet
Full name of the character coding standard used for the metadata set.


parentIdentifier

String parentIdentifier
File identifier of the metadata to which this metadata is a subset (child).


hierarchyLevels

Collection<E> hierarchyLevels
Scope to which the metadata applies.


hierarchyLevelNames

Collection<E> hierarchyLevelNames
Name of the hierarchy levels for which the metadata is provided.


contacts

Collection<E> contacts
Parties responsible for the metadata information.


dataSetUri

String dataSetUri
Uniformed Resource Identifier (URI) of the dataset to which the metadata applies.


dateStamp

long dateStamp
Date that the metadata was created, in milliseconds ellapsed since January 1st, 1970. If not defined, then then value is Long.MIN_VALUE.


metadataStandardName

String metadataStandardName
Name of the metadata standard (including profile name) used.


metadataStandardVersion

String metadataStandardVersion
Version (profile) of the metadata standard used.


spatialRepresentationInfo

Collection<E> spatialRepresentationInfo
Digital representation of spatial information in the dataset.


referenceSystemInfo

Collection<E> referenceSystemInfo
Description of the spatial and temporal reference systems used in the dataset.


metadataExtensionInfo

Collection<E> metadataExtensionInfo
Information describing metadata extensions.


identificationInfo

Collection<E> identificationInfo
Basic information about the resource(s) to which the metadata applies.


contentInfo

Collection<E> contentInfo
Provides information about the feature catalogue and describes the coverage and image data characteristics.


distributionInfo

Distribution distributionInfo
Provides information about the distributor of and options for obtaining the resource(s).


dataQualityInfo

Collection<E> dataQualityInfo
Provides overall assessment of quality of a resource(s).


portrayalCatalogueInfo

Collection<E> portrayalCatalogueInfo
Provides information about the catalogue of rules defined for the portrayal of a resource(s).


metadataConstraints

Collection<E> metadataConstraints
Provides restrictions on the access and use of data.


applicationSchemaInfo

Collection<E> applicationSchemaInfo
Provides information about the conceptual schema of a dataset.


metadataMaintenance

MaintenanceInformation metadataMaintenance
Provides information about the frequency of metadata updates, and the scope of those updates.

Class PortrayalCatalogueReferenceImpl extends MetadataEntity implements Serializable

serialVersionUID: -3095277682987563157L

Serialized Fields

portrayalCatalogueCitations

Collection<E> portrayalCatalogueCitations
Bibliographic reference to the portrayal catalogue cited.

Class SpatialAttributeSupplementImpl extends MetadataEntity implements Serializable

serialVersionUID: 273337004694210422L

Serialized Fields

featureTypeList

Collection<E> featureTypeList
Provides information about the list of feature types with the same spatial representation.


Package org.geotools.metadata.iso.citation

Class AddressImpl extends MetadataEntity implements Serializable

serialVersionUID: 2278687294173262546L

Serialized Fields

administrativeArea

InternationalString administrativeArea
State, province of the location.


city

InternationalString city
The city of the location


country

InternationalString country
Country of the physical address.


postalCode

String postalCode
ZIP or other postal code.


deliveryPoints

Collection<E> deliveryPoints
Address line for the location (as described in ISO 11180, Annex A).


electronicMailAddresses

Collection<E> electronicMailAddresses
Address of the electronic mailbox of the responsible organization or individual.

Class CitationDateImpl extends MetadataEntity implements Serializable

serialVersionUID: -2884791484254008454L

Serialized Fields

date

long date
Reference date for the cited resource in millisecondes ellapsed sine January 1st, 1970, or Long.MIN_VALUE if none.


dateType

DateType dateType
Event used for reference date.

Class CitationImpl extends MetadataEntity implements Serializable

serialVersionUID: -4415559967618358778L

Serialized Fields

title

InternationalString title
Name by which the cited resource is known.


alternateTitles

Collection<E> alternateTitles
Short name or other language name by which the cited information is known. Example: "DCW" as an alternative title for "Digital Chart of the World.


dates

Collection<E> dates
Reference date for the cited resource.


edition

InternationalString edition
Version of the cited resource.


editionDate

long editionDate
Date of the edition in millisecondes ellapsed sine January 1st, 1970, or Long.MIN_VALUE if none.


identifiers

Collection<E> identifiers
Unique identifier for the resource. Example: Universal Product Code (UPC), National Stock Number (NSN).


citedResponsibleParties

Collection<E> citedResponsibleParties
Name and position information for an individual or organization that is responsible for the resource. Returns an empty string if there is none.


presentationForm

Collection<E> presentationForm
Mode in which the resource is represented, or an empty string if none.


series

Series series
Information about the series, or aggregate dataset, of which the dataset is a part. May be null if none.


otherCitationDetails

InternationalString otherCitationDetails
Other information required to complete the citation that is not recorded elsewhere. May be null if none.


collectiveTitle

InternationalString collectiveTitle
Common title with holdings note. Note: title identifies elements of a series collectively, combined with information about what volumes are available at the source cited. May be null if there is no title.


ISBN

String ISBN
International Standard Book Number, or null if none.


ISSN

String ISSN
International Standard Serial Number, or null if none.

Class ContactImpl extends MetadataEntity implements Serializable

serialVersionUID: 3283637180253117382L

Serialized Fields

contactInstructions

InternationalString contactInstructions
Supplemental instructions on how or when to contact the individual or organization.


hoursOfService

InternationalString hoursOfService
Time period (including time zone) when individuals can contact the organization or individual.


onLineResource

OnLineResource onLineResource
On-line information that can be used to contact the individual or organization.


address

Address address
Physical and email address at which the organization or individual may be contacted.


phone

Telephone phone
Telephone numbers at which the organization or individual may be contacted.

Class OnLineResourceImpl extends MetadataEntity implements Serializable

serialVersionUID: 5412370008274334799L

Serialized Fields

applicationProfile

String applicationProfile
Name of an application profile that can be used with the online resource.


description

InternationalString description
Detailed text description of what the online resource is/does.


function

OnLineFunction function
Code for function performed by the online resource.


linkage

URI linkage
Location (address) for on-line access using a Uniform Resource Locator address or similar addressing scheme such as http://www.statkart.no/isotc211.


name

String name
Name of the online resources.

Class ResponsiblePartyImpl extends MetadataEntity implements Serializable

serialVersionUID: -2477962229031486552L

Serialized Fields

individualName

String individualName
Name of the responsible person- surname, given name, title separated by a delimiter.


organisationName

InternationalString organisationName
Name of the responsible organization.


positionName

InternationalString positionName
Role or position of the responsible person


contactInfo

Contact contactInfo
Address of the responsible party.


role

Role role
Function performed by the responsible party.

Class SeriesImpl extends MetadataEntity implements Serializable

serialVersionUID: 2784101441023323052L

Serialized Fields

name

InternationalString name
Name of the series, or aggregate dataset, of which the dataset is a part.


issueIdentification

String issueIdentification
Information identifying the issue of the series.


page

String page
Details on which pages of the publication the article was published.

Class TelephoneImpl extends MetadataEntity implements Serializable

serialVersionUID: 4920157673337669241L

Serialized Fields

voices

Collection<E> voices
Telephone numbers by which individuals can speak to the responsible organization or individual.


facsimiles

Collection<E> facsimiles
Telephone numbers of a facsimile machine for the responsible organization or individual.


Package org.geotools.metadata.iso.constraint

Class ConstraintsImpl extends MetadataEntity implements Serializable

serialVersionUID: 7197823876215294777L

Serialized Fields

useLimitation

Collection<E> useLimitation
Limitation affecting the fitness for use of the resource. Example, "not to be used for navigation".

Class LegalConstraintsImpl extends ConstraintsImpl implements Serializable

serialVersionUID: -2891061818279024901L

Serialized Fields

accessConstraints

Collection<E> accessConstraints
Access constraints applied to assure the protection of privacy or intellectual property, and any special restrictions or limitations on obtaining the resource.


useConstraints

Collection<E> useConstraints
Constraints applied to assure the protection of privacy or intellectual property, and any special restrictions or limitations or warnings on using the resource.


otherConstraints

Collection<E> otherConstraints
Other restrictions and legal prerequisites for accessing and using the resource. This method should returns a non-empty value only if access constraints or use constraints declares other restrictions.

Class SecurityConstraintsImpl extends ConstraintsImpl implements Serializable

serialVersionUID: 6412833018607679734L

Serialized Fields

classification

Classification classification
Name of the handling restrictions on the resource.


userNote

InternationalString userNote
Explanation of the application of the legal constraints or other restrictions and legal prerequisites for obtaining and using the resource.


classificationSystem

InternationalString classificationSystem
Name of the classification system.


handlingDescription

InternationalString handlingDescription
Additional information about the restrictions on handling the resource.


Package org.geotools.metadata.iso.content

Class BandImpl extends RangeDimensionImpl implements Serializable

serialVersionUID: -2302918545469034653L

Serialized Fields

maxValue

Double maxValue
Longest wavelength that the sensor is capable of collecting within a designated band.


minValue

Double minValue
Shortest wavelength that the sensor is capable of collecting within a designated band.


units

Unit<Q extends Quantity> units
Units in which sensor wavelengths are expressed. Should be non-null if min value or max value are provided.


peakResponse

Double peakResponse
Wavelength at which the response is the highest. null if unspecified.


bitsPerValue

Integer bitsPerValue
Maximum number of significant bits in the uncompressed representation for the value in each band of each pixel. null if unspecified.


toneGradation

Integer toneGradation
Number of discrete numerical values in the grid data. null if unspecified.


scaleFactor

Double scaleFactor
Scale factor which has been applied to the cell value. null if unspecified.


offset

Double offset
The physical value corresponding to a cell value of zero. null if unspecified.

Class ContentInformationImpl extends MetadataEntity implements Serializable

serialVersionUID: -1609535650982322560L

Class CoverageDescriptionImpl extends ContentInformationImpl implements Serializable

serialVersionUID: -326050615789333559L

Serialized Fields

attributeDescription

RecordType attributeDescription
Description of the attribute described by the measurement value.


contentType

CoverageContentType contentType
Type of information represented by the cell value.


dimensions

Collection<E> dimensions
Information on the dimensions of the cell measurement value.

Class FeatureCatalogueDescriptionImpl extends ContentInformationImpl implements Serializable

serialVersionUID: 1984922846251567908L

Serialized Fields

compliant

Boolean compliant
Indication of whether or not the cited feature catalogue complies with ISO 19110.


languages

Collection<E> languages
Language(s) used within the catalogue


includeWithDataset

boolean includeWithDataset
Indication of whether or not the feature catalogue is included with the dataset.


featureTypes

Collection<E> featureTypes
Subset of feature types from cited feature catalogue occurring in dataset.


featureCatalogueCitations

Collection<E> featureCatalogueCitations
Complete bibliographic reference to one or more external feature catalogues.

Class ImageDescriptionImpl extends CoverageDescriptionImpl implements Serializable

serialVersionUID: -6168624828802439062L

Serialized Fields

illuminationElevationAngle

Double illuminationElevationAngle
Illumination elevation measured in degrees clockwise from the target plane at intersection of the optical line of sight with the Earth’s surface. For images from a scanning device, refer to the centre pixel of the image.


illuminationAzimuthAngle

Double illuminationAzimuthAngle
Illumination azimuth measured in degrees clockwise from true north at the time the image is taken. For images from a scanning device, refer to the centre pixel of the image.


imagingCondition

ImagingCondition imagingCondition
Conditions affected the image.


imageQualityCode

Identifier imageQualityCode
Specifies the image quality.


cloudCoverPercentage

Double cloudCoverPercentage
Area of the dataset obscured by clouds, expressed as a percentage of the spatial extent.


processingLevelCode

Identifier processingLevelCode
Image distributor’s code that identifies the level of radiometric and geometric processing that has been applied.


compressionGenerationQuantity

Integer compressionGenerationQuantity
Count of the number the number of lossy compression cycles performed on the image. null if the information is not provided.


triangulationIndicator

Boolean triangulationIndicator
Indication of whether or not triangulation has been performed upon the image. null if the information is not provided.


radiometricCalibrationDataAvailable

Boolean radiometricCalibrationDataAvailable
Indication of whether or not the radiometric calibration information for generating the radiometrically calibrated standard data product is available.


cameraCalibrationInformationAvailable

Boolean cameraCalibrationInformationAvailable
Indication of whether or not constants are available which allow for camera calibration corrections.


filmDistortionInformationAvailable

Boolean filmDistortionInformationAvailable
Indication of whether or not Calibration Reseau information is available.


lensDistortionInformationAvailable

Boolean lensDistortionInformationAvailable
Indication of whether or not lens aberration correction information is available.

Class RangeDimensionImpl extends MetadataEntity implements Serializable

serialVersionUID: 4365956866782010460L

Serialized Fields

sequenceIdentifier

MemberName sequenceIdentifier
Number that uniquely identifies instances of bands of wavelengths on which a sensor operates.


descriptor

InternationalString descriptor
Description of the range of a cell measurement value.


Package org.geotools.metadata.iso.distribution

Class DigitalTransferOptionsImpl extends MetadataEntity implements Serializable

serialVersionUID: -1533064478468754337L

Serialized Fields

unitsOfDistribution

InternationalString unitsOfDistribution
Tiles, layers, geographic areas, etc., in which data is available.


transferSize

Double transferSize
Estimated size of a unit in the specified transfer format, expressed in megabytes. The transfer size is > 0.0. Returns null if the transfer size is unknown.


onLines

Collection<E> onLines
Information about online sources from which the resource can be obtained.


offLines

Medium offLines
Information about offline media on which the resource can be obtained.

Class DistributionImpl extends MetadataEntity implements Serializable

serialVersionUID: -5899590027802365131L

Serialized Fields

distributionFormats

Collection<E> distributionFormats
Provides a description of the format of the data to be distributed.


distributors

Collection<E> distributors
Provides information about the distributor.


transferOptions

Collection<E> transferOptions
Provides information about technical means and media by which a resource is obtained from the distributor.

Class DistributorImpl extends MetadataEntity implements Serializable

serialVersionUID: 7142984376823483766L

Serialized Fields

distributorContact

ResponsibleParty distributorContact
Party from whom the resource may be obtained. This list need not be exhaustive.


distributionOrderProcesses

Collection<E> distributionOrderProcesses
Provides information about how the resource may be obtained, and related instructions and fee information.


distributorFormats

Collection<E> distributorFormats
Provides information about the format used by the distributor.


distributorTransferOptions

Collection<E> distributorTransferOptions
Provides information about the technical means and media used by the distributor.

Class FormatImpl extends MetadataEntity implements Serializable

serialVersionUID: 6498897239493553607L

Serialized Fields

name

InternationalString name
Name of the data transfer format(s).


version

InternationalString version
Version of the format (date, number, etc.).


amendmentNumber

InternationalString amendmentNumber
Amendment number of the format version.


specification

InternationalString specification
Name of a subset, profile, or product specification of the format.


fileDecompressionTechnique

InternationalString fileDecompressionTechnique
Recommendations of algorithms or processes that can be applied to read or expand resources to which compression techniques have been applied.


formatDistributors

Collection<E> formatDistributors
Provides information about the distributor’s format.

Class MediumImpl extends MetadataEntity implements Serializable

serialVersionUID: -2838122926367921673L

Serialized Fields

name

MediumName name
Name of the medium on which the resource can be received.


densities

Collection<E> densities
Density at which the data is recorded. Returns null if unknown. If non-null, then the number should be greater than zero.


densityUnits

Unit<Q extends Quantity> densityUnits
Units of measure for the recording density.


volumes

Integer volumes
Number of items in the media identified. Returns null if unknown.


mediumFormats

Collection<E> mediumFormats
Methods used to write to the medium.


mediumNote

InternationalString mediumNote
Description of other limitations or requirements for using the medium.

Class StandardOrderProcessImpl extends MetadataEntity implements Serializable

serialVersionUID: -6503378937452728631L

Serialized Fields

fees

InternationalString fees
Fees and terms for retrieving the resource. Include monetary units (as specified in ISO 4217).


plannedAvailableDateTime

long plannedAvailableDateTime
Date and time when the dataset will be available, in milliseconds ellapsed since January 1st, 1970.


orderingInstructions

InternationalString orderingInstructions
General instructions, terms and services provided by the distributor.


turnaround

InternationalString turnaround
Typical turnaround time for the filling of an order.


Package org.geotools.metadata.iso.extent

Class BoundingPolygonImpl extends GeographicExtentImpl implements Serializable

serialVersionUID: 8174011874910887918L

Serialized Fields

polygons

Collection<E> polygons
The sets of points defining the bounding polygon.

Class ExtentImpl extends MetadataEntity implements Serializable

serialVersionUID: 7812213837337326257L

Serialized Fields

description

InternationalString description
Returns the spatial and temporal extent for the referring object.


geographicElements

Collection<E> geographicElements
Provides geographic component of the extent of the referring object


temporalElements

Collection<E> temporalElements
Provides temporal component of the extent of the referring object


verticalElements

Collection<E> verticalElements
Provides vertical component of the extent of the referring object

Class GeographicBoundingBoxImpl extends GeographicExtentImpl implements Serializable

serialVersionUID: -3278089380004172514L

Serialized Fields

westBoundLongitude

double westBoundLongitude
The western-most coordinate of the limit of the dataset extent. The value is expressed in longitude in decimal degrees (positive east).


eastBoundLongitude

double eastBoundLongitude
The eastern-most coordinate of the limit of the dataset extent. The value is expressed in longitude in decimal degrees (positive east).


southBoundLatitude

double southBoundLatitude
The southern-most coordinate of the limit of the dataset extent. The value is expressed in latitude in decimal degrees (positive north).


northBoundLatitude

double northBoundLatitude
The northern-most, coordinate of the limit of the dataset extent. The value is expressed in latitude in decimal degrees (positive north).

Class GeographicDescriptionImpl extends GeographicExtentImpl implements Serializable

serialVersionUID: 7250161161099782176L

Serialized Fields

geographicIdentifier

Identifier geographicIdentifier
The identifier used to represent a geographic area.

Class GeographicExtentImpl extends MetadataEntity implements Serializable

serialVersionUID: -8844015895495563161L

Serialized Fields

inclusion

Boolean inclusion
Indication of whether the bounding polygon encompasses an area covered by the data (inclusion) or an area where data is not present (exclusion).

Class SpatialTemporalExtentImpl extends TemporalExtentImpl implements Serializable

serialVersionUID: 821702768255546660L

Serialized Fields

spatialExtent

Collection<E> spatialExtent
The spatial extent component of composite spatial and temporal extent.

Class TemporalExtentImpl extends MetadataEntity implements Serializable

serialVersionUID: 3668140516657118045L

Serialized Fields

startTime

long startTime
The start date and time for the content of the dataset, in milliseconds ellapsed since January 1st, 1970. A value of Long.MIN_VALUE means that this attribute is not set.


endTime

long endTime
The end date and time for the content of the dataset, in milliseconds ellapsed since January 1st, 1970. A value of Long.MIN_VALUE means that this attribute is not set.


extent

TemporalPrimitive extent
The date and time for the content of the dataset.

Class VerticalExtentImpl extends MetadataEntity implements Serializable

serialVersionUID: -3214554246909844079L

Serialized Fields

minimumValue

Double minimumValue
The lowest vertical extent contained in the dataset.


maximumValue

Double maximumValue
The highest vertical extent contained in the dataset.


verticalCRS

VerticalCRS verticalCRS
Provides information about the vertical coordinate reference system to which the maximum and minimum elevation values are measured. The CRS identification includes unit of measure.


Package org.geotools.metadata.iso.identification

Class BrowseGraphicImpl extends MetadataEntity implements Serializable

serialVersionUID: 1715873406472953616L

Serialized Fields

applicationSchemaInformation

URI applicationSchemaInformation
Name of the file that contains a graphic that provides an illustration of the dataset.


fileName

URI fileName
Name of the file that contains a graphic that provides an illustration of the dataset.


fileDescription

InternationalString fileDescription
Text description of the illustration.


fileType

String fileType
Format in which the illustration is encoded. Examples: CGM, EPS, GIF, JPEG, PBM, PS, TIFF, XWD.

Class DataIdentificationImpl extends IdentificationImpl implements Serializable

serialVersionUID: -4418520352804939785L

Serialized Fields

spatialRepresentationTypes

Collection<E> spatialRepresentationTypes
Method used to spatially represent geographic information.


spatialResolutions

Collection<E> spatialResolutions
Factor which provides a general understanding of the density of spatial data in the dataset.


language

Collection<E> language
Language(s) used within the dataset.


characterSets

Collection<E> characterSets
Full name of the character coding standard used for the dataset.


topicCategories

Collection<E> topicCategories
Main theme(s) of the datset.


environmentDescription

InternationalString environmentDescription
Description of the dataset in the producer’s processing environment, including items such as the software, the computer operating system, file name, and the dataset size


extent

Collection<E> extent
Additional extent information including the bounding polygon, vertical, and temporal extent of the dataset.


supplementalInformation

InternationalString supplementalInformation
Any other descriptive information about the dataset.

Class IdentificationImpl extends MetadataEntity implements Serializable

serialVersionUID: -3715084806249419137L

Serialized Fields

citation

Citation citation
Citation data for the resource(s).


abstracts

InternationalString abstracts
Brief narrative summary of the content of the resource(s).


purpose

InternationalString purpose
Summary of the intentions with which the resource(s) was developed.


credits

Collection<E> credits
Recognition of those who contributed to the resource(s).


status

Collection<E> status
Status of the resource(s).


pointOfContacts

Collection<E> pointOfContacts
Identification of, and means of communication with, person(s) and organizations(s) associated with the resource(s).


resourceMaintenance

Collection<E> resourceMaintenance
Provides information about the frequency of resource updates, and the scope of those updates.


graphicOverviews

Collection<E> graphicOverviews
Provides a graphic that illustrates the resource(s) (should include a legend for the graphic).


resourceFormat

Collection<E> resourceFormat
Provides a description of the format of the resource(s).


descriptiveKeywords

Collection<E> descriptiveKeywords
Provides category keywords, their type, and reference source.


resourceSpecificUsages

Collection<E> resourceSpecificUsages
Provides basic information about specific application(s) for which the resource(s) has/have been or is being used by different users.


resourceConstraints

Collection<E> resourceConstraints
Provides information about constraints which apply to the resource(s).


aggregationInfo

Collection<E> aggregationInfo
Provides aggregate dataset information.

Class KeywordsImpl extends MetadataEntity implements Serializable

serialVersionUID: 48691634443678266L

Serialized Fields

keywords

Collection<E> keywords
Commonly used word(s) or formalised word(s) or phrase(s) used to describe the subject.


type

KeywordType type
Subject matter used to group similar keywords.


thesaurusName

Citation thesaurusName
Name of the formally registered thesaurus or a similar authoritative source of keywords.

Class RepresentativeFractionImpl extends Number implements Serializable

serialVersionUID: 7228422109144637537L

Serialized Fields

denominator

long denominator
The number below the line in a vulgar fraction.

Class ResolutionImpl extends MetadataEntity implements Serializable

serialVersionUID: -4644465057871958482L

Serialized Fields

equivalentScale

RepresentativeFraction equivalentScale
Level of detail expressed as the scale of a comparable hardcopy map or chart. This value should be between 0 and 1. Only one of equivalent scale and ground sample distance may be provided.


distance

Double distance
Ground sample distance. Only one of equivalent scale and ground sample distance may be provided.

Class ServiceIdentificationImpl extends IdentificationImpl implements Serializable

serialVersionUID: -8337161132057617851L

Class UsageImpl extends MetadataEntity implements Serializable

serialVersionUID: 4059324536168287490L

Serialized Fields

specificUsage

InternationalString specificUsage
Brief description of the resource and/or resource series usage.


usageDate

long usageDate
Date and time of the first use or range of uses of the resource and/or resource series. Values are milliseconds ellapsed since January 1st, 1970, or Long.MIN_VALUE if this value is not set.


userDeterminedLimitations

InternationalString userDeterminedLimitations
Applications, determined by the user for which the resource and/or resource series is not suitable.


userContactInfo

Collection<E> userContactInfo
Identification of and means of communicating with person(s) and organization(s) using the resource(s).


Package org.geotools.metadata.iso.lineage

Class LineageImpl extends MetadataEntity implements Serializable

serialVersionUID: 3351230301999744987L

Serialized Fields

statement

InternationalString statement
General explanation of the data producer’s knowledge about the lineage of a dataset. Should be provided only if scope level is dataset or series.


processSteps

Collection<E> processSteps
Information about an event in the creation process for the data specified by the scope.


sources

Collection<E> sources
Information about the source data used in creating the data specified by the scope.

Class ProcessStepImpl extends MetadataEntity implements Serializable

serialVersionUID: 4629429337326490722L

Serialized Fields

description

InternationalString description
Description of the event, including related parameters or tolerances.


rationale

InternationalString rationale
Requirement or purpose for the process step.


date

long date
Date and time or range of date and time on or over which the process step occurred, in milliseconds ellapsed since January 1st, 1970. If there is no such date, then this field is set to the special value Long.MIN_VALUE.


processors

Collection<E> processors
Identification of, and means of communication with, person(s) and organization(s) associated with the process step.


sources

Collection<E> sources
Information about the source data used in creating the data specified by the scope.

Class SourceImpl extends MetadataEntity implements Serializable

serialVersionUID: 2660914446466438044L

Serialized Fields

description

InternationalString description
Detailed description of the level of the source data.


scaleDenominator

RepresentativeFraction scaleDenominator
Denominator of the representative fraction on a source map.


sourceReferenceSystem

ReferenceSystem sourceReferenceSystem
Spatial reference system used by the source data.


sourceCitation

Citation sourceCitation
Recommended reference to be used for the source data.


sourceExtents

Collection<E> sourceExtents
Information about the spatial, vertical and temporal extent of the source data.


sourceSteps

Collection<E> sourceSteps
Information about an event in the creation process for the source data.


Package org.geotools.metadata.iso.maintenance

Class MaintenanceInformationImpl extends MetadataEntity implements Serializable

serialVersionUID: 8523463344581266776L

Serialized Fields

maintenanceAndUpdateFrequency

MaintenanceFrequency maintenanceAndUpdateFrequency
Frequency with which changes and additions are made to the resource after the initial resource is completed.


dateOfNextUpdate

long dateOfNextUpdate
Scheduled revision date for resource, in milliseconds ellapsed since January 1st, 1970. If there is no such date, then this field is set to the special value Long.MIN_VALUE.


userDefinedMaintenanceFrequency

PeriodDuration userDefinedMaintenanceFrequency
Maintenance period other than those defined, in milliseconds.


updateScopes

Collection<E> updateScopes
Scope of data to which maintenance is applied.


updateScopeDescriptions

Collection<E> updateScopeDescriptions
Additional information about the range or extent of the resource.


maintenanceNotes

Collection<E> maintenanceNotes
Information regarding specific requirements for maintaining the resource.


contacts

Collection<E> contacts
Identification of, and means of communicating with, person(s) and organization(s) with responsibility for maintaining the metadata

Class ScopeDescriptionImpl extends MetadataEntity implements Serializable

serialVersionUID: -5671299759930976286L

Serialized Fields

attributes

Set<E> attributes
The attributes to which the information applies.


features

Set<E> features
The features to which the information applies.


featureInstances

Set<E> featureInstances
The feature instances to which the information applies.


attributeInstances

Set<E> attributeInstances
The attribute instances to which the information applies.


dataset

String dataset
Dataset to which the information applies.


other

String other
Class of information that does not fall into the other categories to which the information applies.


Package org.geotools.metadata.iso.quality

Class AbsoluteExternalPositionalAccuracyImpl extends PositionalAccuracyImpl implements Serializable

serialVersionUID: 4116627805950579738L

Class AccuracyOfATimeMeasurementImpl extends TemporalAccuracyImpl implements Serializable

serialVersionUID: -7934234071852119486L

Class CompletenessCommissionImpl extends CompletenessImpl implements Serializable

serialVersionUID: 1565144822249562765L

Class CompletenessImpl extends ElementImpl implements Serializable

serialVersionUID: -7893993264874215741L

Class CompletenessOmissionImpl extends CompletenessImpl implements Serializable

serialVersionUID: 6614084398532053054L

Class ConceptualConsistencyImpl extends LogicalConsistencyImpl implements Serializable

serialVersionUID: 7143342570712197486L

Class ConformanceResultImpl extends ResultImpl implements Serializable

serialVersionUID: 6429932577869033286L

Serialized Fields

specification

Citation specification
Citation of product specification or user requirement against which data is being evaluated.


explanation

InternationalString explanation
Explanation of the meaning of conformance for this result.


pass

boolean pass
Indication of the conformance result.

Class DataQualityImpl extends MetadataEntity implements Serializable

serialVersionUID: 7964896551368382214L

Serialized Fields

scope

Scope scope
The specific data to which the data quality information applies.


reports

Collection<E> reports
Quantitative quality information for the data specified by the scope. Should be provided only if scope level is dataset.


lineage

Lineage lineage
Non-quantitative quality information about the lineage of the data specified by the scope. Should be provided only if scope level is dataset.

Class DomainConsistencyImpl extends LogicalConsistencyImpl implements Serializable

serialVersionUID: -358082990944183859L

Class ElementImpl extends MetadataEntity implements Serializable

serialVersionUID: -3542504624077298894L

Serialized Fields

namesOfMeasure

Collection<E> namesOfMeasure
Name of the test applied to the data.


measureIdentification

Identifier measureIdentification
Code identifying a registered standard procedure, or null if none.


measureDescription

InternationalString measureDescription
Description of the measure being determined.


evaluationMethodType

EvaluationMethodType evaluationMethodType
Type of method used to evaluate quality of the dataset, or null if unspecified.


evaluationMethodDescription

InternationalString evaluationMethodDescription
Description of the evaluation method.


evaluationProcedure

Citation evaluationProcedure
Reference to the procedure information, or null if none.


date1

long date1
Date or range of dates on which a data quality measure was applied. The array length is 1 for a single date, or 2 for a range. Returns null if this information is not available.


date2

long date2
Date or range of dates on which a data quality measure was applied. The array length is 1 for a single date, or 2 for a range. Returns null if this information is not available.


results

Collection<E> results
Value (or set of values) obtained from applying a data quality measure or the out come of evaluating the obtained value (or set of values) against a specified acceptable conformance quality level.

Class FormatConsistencyImpl extends LogicalConsistencyImpl implements Serializable

serialVersionUID: -1204766930140154729L

Class GriddedDataPositionalAccuracyImpl extends PositionalAccuracyImpl implements Serializable

serialVersionUID: -3852184823135498458L

Class LogicalConsistencyImpl extends ElementImpl implements Serializable

serialVersionUID: -2470752876057569947L

Class NonQuantitativeAttributeAccuracyImpl extends ThematicAccuracyImpl implements Serializable

serialVersionUID: 2659617465862554345L

Class PositionalAccuracyImpl extends ElementImpl implements Serializable

serialVersionUID: 6043381860937480828L

Class QuantitativeAttributeAccuracyImpl extends ThematicAccuracyImpl implements Serializable

serialVersionUID: 7030401943270178746L

Class QuantitativeResultImpl extends ResultImpl implements Serializable

serialVersionUID: 1230713599561236060L

Serialized Fields

values

List<E> values
Quantitative value or values, content determined by the evaluation procedure used.


valueType

RecordType valueType
Value type for reporting a data quality result, or null if none.


valueUnit

Unit<Q extends Quantity> valueUnit
Value unit for reporting a data quality result, or null if none.


errorStatistic

InternationalString errorStatistic
Statistical method used to determine the value, or null if none.

Class RelativeInternalPositionalAccuracyImpl extends PositionalAccuracyImpl implements Serializable

serialVersionUID: -8216355887797408106L

Class ResultImpl extends MetadataEntity implements Serializable

serialVersionUID: 2961355780515174732L

Class ScopeImpl extends MetadataEntity implements Serializable

serialVersionUID: -8021256328527422972L

Serialized Fields

level

ScopeCode level
Hierarchical level of the data specified by the scope.


extent

Extent extent
Information about the spatial, vertical and temporal extent of the data specified by the scope.


levelDescription

Collection<E> levelDescription
Detailed description about the level of the data specified by the scope.

Class TemporalAccuracyImpl extends ElementImpl implements Serializable

serialVersionUID: 4525353962603986621L

Class TemporalConsistencyImpl extends TemporalAccuracyImpl implements Serializable

serialVersionUID: -2549290466982699190L

Class TemporalValidityImpl extends TemporalAccuracyImpl implements Serializable

serialVersionUID: 2866684429712027839L

Class ThematicAccuracyImpl extends ElementImpl implements Serializable

serialVersionUID: -781072634778767137L

Class ThematicClassificationCorrectnessImpl extends ThematicAccuracyImpl implements Serializable

serialVersionUID: -5484398738783800915L

Class TopologicalConsistencyImpl extends LogicalConsistencyImpl implements Serializable

serialVersionUID: -255014076679068944L


Package org.geotools.metadata.iso.spatial

Class DimensionImpl extends MetadataEntity implements Serializable

serialVersionUID: -2572515000574007266L

Serialized Fields

dimensionName

DimensionNameType dimensionName
Name of the axis.


dimensionSize

Integer dimensionSize
Number of elements along the axis.


resolution

Double resolution
Degree of detail in the grid dataset.

Class GeometricObjectsImpl extends MetadataEntity implements Serializable

serialVersionUID: 8755950031078638313L

Serialized Fields

geometricObjectType

GeometricObjectType geometricObjectType
Total number of the point or vector object type occurring in the dataset.


geometricObjectCount

Integer geometricObjectCount
Total number of the point or vector object type occurring in the dataset.

Class GeorectifiedImpl extends GridSpatialRepresentationImpl implements Serializable

serialVersionUID: 5875851898471237138L

Serialized Fields

checkPointAvailable

boolean checkPointAvailable
Indication of whether or not geographic position points are available to test the accuracy of the georeferenced grid data.


checkPointDescription

InternationalString checkPointDescription
Description of geographic position points used to test the accuracy of the georeferenced grid data.


cornerPoints

List<E> cornerPoints
Earth location in the coordinate system defined by the Spatial Reference System and the grid coordinate of the cells at opposite ends of grid coverage along two diagonals in the grid spatial dimensions. There are four corner points in a georectified grid; at least two corner points along one diagonal are required.


centerPoint

Point centerPoint
Earth location in the coordinate system defined by the Spatial Reference System and the grid coordinate of the cell halfway between opposite ends of the grid in the spatial dimensions.


pointInPixel

PixelOrientation pointInPixel
Point in a pixel corresponding to the Earth location of the pixel.


transformationDimensionDescription

InternationalString transformationDimensionDescription
Description of the information about which grid dimensions are the spatial dimensions.


transformationDimensionMapping

Collection<E> transformationDimensionMapping
Information about which grid dimensions are the spatial dimensions.

Class GeoreferenceableImpl extends GridSpatialRepresentationImpl implements Serializable

serialVersionUID: 5203270142818028946L

Serialized Fields

controlPointAvailable

boolean controlPointAvailable
Indication of whether or not control point(s) exists.


orientationParameterAvailable

boolean orientationParameterAvailable
Indication of whether or not orientation parameters are available.


orientationParameterDescription

InternationalString orientationParameterDescription
Description of parameters used to describe sensor orientation.


georeferencedParameters

Record georeferencedParameters
Terms which support grid data georeferencing.


parameterCitation

Collection<E> parameterCitation
Reference providing description of the parameters.

Class GridSpatialRepresentationImpl extends SpatialRepresentationImpl implements Serializable

serialVersionUID: -8400572307442433979L

Serialized Fields

numberOfDimensions

Integer numberOfDimensions
Number of independent spatial-temporal axes.


axisDimensionsProperties

List<E> axisDimensionsProperties
Information about spatial-temporal axis properties.


cellGeometry

CellGeometry cellGeometry
Identification of grid data as point or cell.


transformationParameterAvailable

boolean transformationParameterAvailable
Indication of whether or not parameters for transformation exists.

Class PixelTranslation extends Object implements Serializable

serialVersionUID: 2616596940766158984L

Serialized Fields

orientation

PixelOrientation orientation
The pixel orientation for this translation.


dx

double dx
The translation among the x axis relative to pixel center. The value is typically in the [-0.5 .. +0.5] range.


dy

double dy
The translation among the y axis relative to pixel center. The value is typically in the [-0.5 .. +0.5] range.

Class SpatialRepresentationImpl extends MetadataEntity implements Serializable

serialVersionUID: 1443170876207840116L

Class VectorSpatialRepresentationImpl extends SpatialRepresentationImpl implements Serializable

serialVersionUID: 5643234643524810592L

Serialized Fields

topologyLevel

TopologyLevel topologyLevel
Code which identifies the degree of complexity of the spatial relationships.


geometricObjects

Collection<E> geometricObjects
Information about the geometric objects used in the dataset.


Package org.geotools.metadata.sql

Class MetadataException extends RuntimeException implements Serializable

serialVersionUID: -7156617726114815455L


Package org.geotools.ows

Class ServiceException extends SAXException implements Serializable

Serialized Fields

code

String code

locator

String locator

next

ServiceException next

Package org.geotools.parameter

Class AbstractParameter extends Formattable implements Serializable

serialVersionUID: 8458179223988766398L

Serialized Fields

descriptor

GeneralParameterDescriptor descriptor
The abstract definition of this parameter or group of parameters.

Class AbstractParameterDescriptor extends AbstractIdentifiedObject implements Serializable

serialVersionUID: -2630644278783845276L

Serialized Fields

minimumOccurs

int minimumOccurs
The minimum number of times that values for this parameter group or parameter are required.

Class DefaultParameterDescriptor extends AbstractParameterDescriptor implements Serializable

serialVersionUID: -295668622297737705L

Serialized Fields

valueClass

Class<T> valueClass
The class that describe the type of the parameter. This is the value class that the user specified at construction time.


validValues

Set<E> validValues
A immutable, finite set of valid values (usually from a {linkplain org.opengis.util.CodeList code list}) or null if it doesn't apply. This set is immutable.


defaultValue

Object defaultValue
The default value for the parameter, or null.


minimum

Comparable<T> minimum
The minimum parameter value, or null.


maximum

Comparable<T> maximum
The maximum parameter value, or null.


unit

Unit<Q extends Quantity> unit
The unit for default, minimum and maximum values, or null.

Class DefaultParameterDescriptorGroup extends AbstractParameterDescriptor implements Serializable

serialVersionUID: -4613190550542423839L

Serialized Fields

maximumOccurs

int maximumOccurs
The maximum number of times that values for this parameter group or parameter are required.


parameters

GeneralParameterDescriptor[] parameters
The parameter descriptors for this group.

Class FloatParameter extends AbstractParameter implements Serializable

serialVersionUID: 9027797654033417816L

Serialized Fields

value

double value
The value.

Class ImagingParameterDescriptors extends DefaultParameterDescriptorGroup implements Serializable

serialVersionUID: 2127050865911951239L

Serialized Fields

registryMode

String registryMode
The registry mode, usually "rendered". This field is null if ImagingParameterDescriptors.operation is null.


operation

RegistryElementDescriptor operation
The JAI's operation descriptor, or null if none. This is usually an instance of OperationDescriptor, but this is not strictly required.


descriptor

ParameterListDescriptor descriptor
The Java Advanced Imaging parameter descriptor. If ImagingParameterDescriptors.operation is non-null, then this attribute is defined by RegistryElementDescriptor.getParameterListDescriptor(java.lang.String).

Class ImagingParameters extends AbstractParameter implements Serializable

serialVersionUID: 1378692626023992530L

Serialized Fields

parameters

ParameterList parameters
The JAI's parameter list. This is also the backing store for this parameter value group: all "ordinary" parameters (i.e. not including sources) are actually stored in this list.

If the JAI descriptor is an instance of OperationDescriptor, then this parameter list is also an instance of ParameterBlockJAI. The sources must be handled separatly, because the source type for a JAI operator (typically RenderedImage) is not the same than the source type for a coverage operation (typically org.opengis.coverage.GridCoverage).


values

List<E> values
The wrappers around each elements in ImagingParameters.parameters as an immutable list. Will be created by ImagingParameters.createElements() only when first needed. Note that while this list may be immutable, elements in this list stay modifiable. The goal is to allows the following idiom:
 values().get(i).setValue(myValue);
 

Class MatrixParameterDescriptors extends DefaultParameterDescriptorGroup implements Serializable

serialVersionUID: -7386537348359343836L

Serialized Fields

parameters

ParameterDescriptor<T>[] parameters
The cached descriptors for each elements in a matrix. Descriptors do not depends on matrix element values. Consequently, the same descriptors can be reused for all MatrixParameters instances.


numRow

ParameterDescriptor<T> numRow
The descriptor for the "num_row" parameter.


numCol

ParameterDescriptor<T> numCol
The descriptor for the "num_col" parameter.


prefix

String prefix
The prefix to insert in front of parameter name for each matrix elements.


separator

char separator
The separator between the row and the column index in parameter names.

Class MatrixParameters extends ParameterGroup implements Serializable

serialVersionUID: -7747712999115044943L

Serialized Fields

matrixValues

ParameterValue<T>[][] matrixValues
The parameter values. Will be constructed only when first requested.


numRow

ParameterValue<T> numRow
The value for the MatrixParameterDescriptors.numRow parameter. Consider this field as final. It is not only for MatrixParameters.clone() implementation.


numCol

ParameterValue<T> numCol
The value for the MatrixParameterDescriptors.numCol parameter. Consider this field as final. It is not only for MatrixParameters.clone() implementation.

Class Parameter extends AbstractParameter implements Serializable

serialVersionUID: -5837826787089486776L

Serialized Fields

value

Object value
The value.


unit

Unit<Q extends Quantity> unit
The unit of measure for the value, or null if it doesn't apply.

Class ParameterGroup extends AbstractParameter implements Serializable

serialVersionUID: -1985309386356545126L

Serialized Fields

values

ArrayList<E> values
The parameter values for this group. Note: consider as final. This field is not final only in order to allows ParameterGroup.clone() to work.


Package org.geotools.referencing

Class AbstractIdentifiedObject extends Formattable implements Serializable

serialVersionUID: -5173281694258483264L

Serialized Fields

name

ReferenceIdentifier name
The name for this object or code. Should never be null.


alias

Collection<E> alias
An alternative name by which this object is identified.


identifiers

Set<E> identifiers
An identifier which references elsewhere the object's defining information. Alternatively an identifier by which this object can be referenced.


remarks

InternationalString remarks
Comments on or information about this object, or null if none.

Class AbstractReferenceSystem extends AbstractIdentifiedObject implements Serializable

serialVersionUID: 3337659819553899435L

Serialized Fields

domainOfValidity

Extent domainOfValidity
Area for which the (coordinate) reference system is valid.


scope

InternationalString scope
Description of domain of usage, or limitations of usage, for which this (coordinate) reference system object is valid.

Class NamedIdentifier extends Object implements Serializable

serialVersionUID: 8474731565582774497L

Serialized Fields

code

String code
Identifier code or name, optionally from a controlled list or pattern defined by a code space.


codespace

String codespace
Name or identifier of the person or organization responsible for namespace.


authority

Citation authority
Organization or party responsible for definition and maintenance of the code space or code.


version

String version
Identifier of the version of the associated code space or code, as specified by the code space or code authority. This version is included only when the code uses versions. When appropriate, the edition is identified by the effective date, coded using ISO 8601 date format.


remarks

InternationalString remarks
Comments on or information about this identifier, or null if none.


name

GenericName name
The name of this identifier as a generic name. If null, will be constructed only when first needed. This field is serialized (instead of being recreated after deserialization) because it may be a user-supplied value.


Package org.geotools.referencing.crs

Class AbstractCRS extends AbstractReferenceSystem implements Serializable

serialVersionUID: -7433284548909530047L

Serialized Fields

coordinateSystem

CoordinateSystem coordinateSystem
The coordinate system.

Class AbstractDerivedCRS extends AbstractSingleCRS implements Serializable

serialVersionUID: -175151161496419854L

Serialized Fields

baseCRS

CoordinateReferenceSystem baseCRS
The base coordinate reference system.


conversionFromBase

Conversion conversionFromBase
The conversion from the base CRS to this CRS.

Class AbstractSingleCRS extends AbstractCRS implements Serializable

serialVersionUID: 1815712797774273L

Serialized Fields

datum

Datum datum
The datum.

Class DefaultCompoundCRS extends AbstractCRS implements Serializable

serialVersionUID: -2656710314586929286L

Serialization Methods

readObject

private void readObject(ObjectInputStream in)
                 throws IOException,
                        ClassNotFoundException
Computes the single CRS on deserialization.

Throws:
IOException
ClassNotFoundException
Serialized Fields

crs

List<E> crs
The coordinate reference systems in this compound CRS. May actually be a list of SingleCRS.

Class DefaultDerivedCRS extends AbstractDerivedCRS implements Serializable

serialVersionUID: -8149602276542469876L

Class DefaultEngineeringCRS extends AbstractSingleCRS implements Serializable

serialVersionUID: 6695541732063382701L

Class DefaultGeocentricCRS extends AbstractSingleCRS implements Serializable

serialVersionUID: 6784642848287659827L

Class DefaultGeographicCRS extends AbstractSingleCRS implements Serializable

serialVersionUID: 861224913438092335L

Class DefaultImageCRS extends AbstractSingleCRS implements Serializable

serialVersionUID: 7312452786096397847L

Class DefaultProjectedCRS extends AbstractDerivedCRS implements Serializable

serialVersionUID: -4502680112031773028L

Class DefaultTemporalCRS extends AbstractSingleCRS implements Serializable

serialVersionUID: 3000119849197222007L

Class DefaultVerticalCRS extends AbstractSingleCRS implements Serializable

serialVersionUID: 3565878468719941800L


Package org.geotools.referencing.cs

Class AbstractCS extends AbstractIdentifiedObject implements Serializable

serialVersionUID: 6757665252533744744L

Serialized Fields

axis

CoordinateSystemAxis[] axis
The axis for this coordinate system at the specified dimension.

Class DefaultAffineCS extends AbstractCS implements Serializable

serialVersionUID: 7977674229369042440L

Class DefaultCartesianCS extends DefaultAffineCS implements Serializable

serialVersionUID: -6182037957705712945L

Class DefaultCompoundCS extends AbstractCS implements Serializable

serialVersionUID: -5726410275278843372L

Serialized Fields

cs

CoordinateSystem[] cs
The coordinate systems.

Class DefaultCoordinateSystemAxis extends AbstractIdentifiedObject implements Serializable

serialVersionUID: -7883614853277827689L

Serialized Fields

abbreviation

String abbreviation
The abbreviation used for this coordinate system axes. This abbreviation is also used to identify the ordinates in coordinate tuple. Examples are "X" and "Y".


direction

AxisDirection direction
Direction of this coordinate system axis. In the case of Cartesian projected coordinates, this is the direction of this coordinate system axis locally.


unit

Unit<Q extends Quantity> unit
The unit of measure used for this coordinate system axis.


minimum

double minimum
Minimal and maximal value for this axis.


maximum

double maximum
Minimal and maximal value for this axis.


rangeMeaning

RangeMeaning rangeMeaning
The range meaning for this axis.

Class DefaultCylindricalCS extends AbstractCS implements Serializable

serialVersionUID: -8290402732390917907L

Class DefaultEllipsoidalCS extends AbstractCS implements Serializable

serialVersionUID: -1452492488902329211L

Class DefaultLinearCS extends AbstractCS implements Serializable

serialVersionUID: -6890723478287625763L

Class DefaultPolarCS extends AbstractCS implements Serializable

serialVersionUID: 3960197260975470951L

Class DefaultSphericalCS extends AbstractCS implements Serializable

serialVersionUID: 196295996465774477L

Class DefaultTimeCS extends AbstractCS implements Serializable

serialVersionUID: 5222911412381303989L

Class DefaultUserDefinedCS extends AbstractCS implements Serializable

serialVersionUID: -4904091898305706316L

Class DefaultVerticalCS extends AbstractCS implements Serializable

serialVersionUID: 1201155778896630499L


Package org.geotools.referencing.datum

Class AbstractDatum extends AbstractIdentifiedObject implements Serializable

serialVersionUID: -4894180465652474930L

Serialized Fields

anchorPoint

InternationalString anchorPoint
Description, possibly including coordinates, of the point or points used to anchor the datum to the Earth. Also known as the "origin", especially for Engineering and Image Datums.


realizationEpoch

long realizationEpoch
The time after which this datum definition is valid. This time may be precise (e.g. 1997 for IRTF97) or merely a year (e.g. 1983 for NAD83). If the time is not defined, then the value is Long.MIN_VALUE.


domainOfValidity

Extent domainOfValidity
Area or region in which this datum object is valid.


scope

InternationalString scope
Description of domain of usage, or limitations of usage, for which this datum object is valid.

Class BursaWolfParameters extends Formattable implements Serializable

serialVersionUID: 754825592343010900L

Serialized Fields

dx

double dx
Bursa Wolf shift in meters.


dy

double dy
Bursa Wolf shift in meters.


dz

double dz
Bursa Wolf shift in meters.


ex

double ex
Bursa Wolf rotation in arc seconds.


ey

double ey
Bursa Wolf rotation in arc seconds.


ez

double ez
Bursa Wolf rotation in arc seconds.


ppm

double ppm
Bursa Wolf scaling in parts per million.


targetDatum

GeodeticDatum targetDatum
The target datum for this parameters.

Class DefaultEllipsoid extends AbstractIdentifiedObject implements Serializable

serialVersionUID: -1149451543954764081L

Serialized Fields

semiMajorAxis

double semiMajorAxis
The equatorial radius.

See Also:
DefaultEllipsoid.getSemiMajorAxis()

semiMinorAxis

double semiMinorAxis
The polar radius.

See Also:
DefaultEllipsoid.getSemiMinorAxis()

inverseFlattening

double inverseFlattening
The inverse of the flattening value, or Double.POSITIVE_INFINITY if the ellipsoid is a sphere.

See Also:
DefaultEllipsoid.getInverseFlattening()

ivfDefinitive

boolean ivfDefinitive
Tells if the Inverse Flattening definitive for this ellipsoid.

See Also:
DefaultEllipsoid.isIvfDefinitive()

unit

Unit<Q extends Quantity> unit
The units of the semi-major and semi-minor axis values.

Class DefaultEngineeringDatum extends AbstractDatum implements Serializable

serialVersionUID: 1498304918725248637L

Class DefaultGeodeticDatum extends AbstractDatum implements Serializable

serialVersionUID: 8832100095648302943L

Serialized Fields

ellipsoid

Ellipsoid ellipsoid
The ellipsoid.


primeMeridian

PrimeMeridian primeMeridian
The prime meridian.


bursaWolf

BursaWolfParameters[] bursaWolf
Bursa Wolf parameters for datum shifts, or null if none.

Class DefaultImageDatum extends AbstractDatum implements Serializable

serialVersionUID: -4304193511244150936L

Serialized Fields

pixelInCell

PixelInCell pixelInCell
Specification of the way the image grid is associated with the image data attributes.

Class DefaultPrimeMeridian extends AbstractIdentifiedObject implements Serializable

serialVersionUID: 541978454643213305L

Serialized Fields

greenwichLongitude

double greenwichLongitude
Longitude of the prime meridian measured from the Greenwich meridian, positive eastward.


angularUnit

Unit<Q extends Quantity> angularUnit
The angular unit of the Greenwich longitude.

Class DefaultTemporalDatum extends AbstractDatum implements Serializable

serialVersionUID: 3357241732140076884L

Serialized Fields

origin

long origin
The date and time origin of this temporal datum.

Class DefaultVerticalDatum extends AbstractDatum implements Serializable

serialVersionUID: 380347456670516572L

Serialized Fields

type

VerticalDatumType type
The type of this vertical datum. Default is "geoidal".


Package org.geotools.referencing.factory

Class BackingStoreException extends RuntimeException implements Serializable

serialVersionUID: 4257200758051575441L

Class FactoryNotFoundException extends FactoryException implements Serializable

serialVersionUID: -661925454228937249L

Class IdentifiedObjectSet extends AbstractSet implements Serializable

serialVersionUID: -4221260663706882719L

Serialization Methods

writeReplace

protected Object writeReplace()
                       throws ObjectStreamException
Returns a serializable copy of this set. This method is invoked automatically during serialization. The serialised set of identified objects is disconnected from the underlying factory.

Throws:
ObjectStreamException
Serialized Fields

objects

Map<K,V> objects
The map of object codes (keys), and the actual identified objects (values) when it has been created. Each entry has a null value until the corresponding object is created.


factory

AuthorityFactory factory
The factory to use for creating identified objects when first needed.


Package org.geotools.referencing.factory.epsg

Class AccessDataSource extends DataSource implements Serializable

serialVersionUID: 5425165051212823860L


Package org.geotools.referencing.operation

Class AbstractCoordinateOperation extends AbstractIdentifiedObject implements Serializable

serialVersionUID: 1237358357729193885L

Serialized Fields

sourceCRS

CoordinateReferenceSystem sourceCRS
The source CRS, or null if not available.


targetCRS

CoordinateReferenceSystem targetCRS
The target CRS, or null if not available.


operationVersion

String operationVersion
Version of the coordinate transformation (i.e., instantiation due to the stochastic nature of the parameters).


coordinateOperationAccuracy

Collection<E> coordinateOperationAccuracy
Estimate(s) of the impact of this operation on point accuracy, or null if none.


domainOfValidity

Extent domainOfValidity
Area in which this operation is valid, or null if not available.


scope

InternationalString scope
Description of domain of usage, or limitations of usage, for which this operation is valid.


transform

MathTransform transform
Transform from positions in the source coordinate reference system to positions in the target coordinate reference system.

Class DefaultConcatenatedOperation extends AbstractCoordinateOperation implements Serializable

serialVersionUID: 4199619838029045700L

Serialized Fields

operations

List<E> operations
The sequence of operations.

Class DefaultConicProjection extends DefaultProjection implements Serializable

serialVersionUID: -8717453834398763963L

Class DefaultConversion extends DefaultOperation implements Serializable

serialVersionUID: -2148164324805562793L

Class DefaultCylindricalProjection extends DefaultProjection implements Serializable

serialVersionUID: -969486613826553580L

Class DefaultOperation extends DefaultSingleOperation implements Serializable

serialVersionUID: -8923365753849532179L

Serialized Fields

method

OperationMethod method
The operation method.

Class DefaultOperationMethod extends AbstractIdentifiedObject implements Serializable

serialVersionUID: -98032729598205972L

Serialized Fields

formula

InternationalString formula
Formula(s) or procedure used by this operation method. This may be a reference to a publication. Note that the operation method may not be analytic, in which case this attribute references or contains the procedure, not an analytic formula.


sourceDimensions

int sourceDimensions
Number of dimensions in the source CRS of this operation method.


targetDimensions

int targetDimensions
Number of dimensions in the target CRS of this operation method.


parameters

ParameterDescriptorGroup parameters
The set of parameters, or null if none.

Class DefaultPassThroughOperation extends DefaultSingleOperation implements Serializable

serialVersionUID: 4308173919747248695L

Serialized Fields

operation

Operation operation
The operation to apply on the subset of a coordinate tuple.

Class DefaultPlanarProjection extends DefaultProjection implements Serializable

serialVersionUID: 8171256287775067736L

Class DefaultProjection extends DefaultConversion implements Serializable

serialVersionUID: -7176751851369816864L

Class DefaultSingleOperation extends AbstractCoordinateOperation implements Serializable

serialVersionUID: 672935231344137185L

Class DefaultTransformation extends DefaultOperation implements Serializable

serialVersionUID: -7486704846151648971L

Class DefiningConversion extends DefaultConversion implements Serializable

serialVersionUID: 7399026512478064721L

Serialized Fields

parameters

ParameterValueGroup parameters
The parameter values.

Class MathTransformProvider extends DefaultOperationMethod implements Serializable

serialVersionUID: 7530475536803158473L

Class MathTransformProvider.Delegate extends MathTransformProxy implements Serializable

serialVersionUID: -3942740060970730790L

Serialized Fields

method

OperationMethod method
The provider for the transform.

Class TransformPathNotFoundException extends TransformException implements Serializable

serialVersionUID: 5072333160296464925L


Package org.geotools.referencing.operation.builder

Class MappedPosition extends Object implements Serializable

serialVersionUID: 3262172371858749543L

Serialized Fields

source

DirectPosition source
The source position.


target

DirectPosition target
The target position.


accuracy

double accuracy
An estimation of mapping accuracy in units of target CRS axis, or Double.NaN if unknow.


comments

String comments
Optionnal comments attached to this mapping, or null if none.

Class MissingInfoException extends FactoryException implements Serializable

serialVersionUID: -3128525157353302290L

Class TriangulationException extends RuntimeException implements Serializable

serialVersionUID: -3134565178815225915L


Package org.geotools.referencing.operation.matrix

Class AffineTransform2D extends AffineTransform implements Serializable

serialVersionUID: -9104194268576601386L

Class GeneralMatrix extends GMatrix implements Serializable

serialVersionUID: 8447482612423035360L

Class Matrix1 extends Object implements Serializable

serialVersionUID: -4829171016106097031L

Serialized Fields

m00

double m00
The only element in this matrix.

Class Matrix2 extends Object implements Serializable

serialVersionUID: 7116561372481474290L

Serialized Fields

m00

double m00
The first matrix element in the first row.


m01

double m01
The second matrix element in the first row.


m10

double m10
The first matrix element in the second row.


m11

double m11
The second matrix element in the second row.

Class Matrix3 extends Matrix3d implements Serializable

serialVersionUID: 8902061778871586611L

Class Matrix4 extends Matrix4d implements Serializable

serialVersionUID: 5685762518066856310L

Class XAffineTransform extends AffineTransform implements Serializable

serialVersionUID: 5215291166450556451L


Package org.geotools.referencing.operation.projection

Class AlbersEqualArea extends MapProjection implements Serializable

serialVersionUID: -3024658742514888646L

Serialized Fields

n

double n
Constants used by the spherical and elliptical Albers projection.


c

double c
Constants used by the spherical and elliptical Albers projection.


rho0

double rho0
Constants used by the spherical and elliptical Albers projection.


ec

double ec
An error condition indicating iteration will not converge for the inverse ellipse. See Snyder (14-20)


phi1

double phi1
Standards parallel 1 in radians, for AlbersEqualArea.getParameterValues() implementation.


phi2

double phi2
Standards parallel 2 in radians, for AlbersEqualArea.getParameterValues() implementation.

Class AlbersEqualArea.Provider extends MapProjection.AbstractProvider implements Serializable

serialVersionUID: -7489679528438418778L

Class EquatorialOrthographic extends ObliqueOrthographic implements Serializable

serialVersionUID: 1093901743907259987L

Class EquatorialStereographic extends StereographicUSGS implements Serializable

serialVersionUID: -5098015759558831875L

Class EquidistantCylindrical extends MapProjection implements Serializable

serialVersionUID: -848975059471102069L

Serialized Fields

cosStandardParallel

double cosStandardParallel
Cosinus of the "standard_parallel_1" parameter.


standardParallel

double standardParallel
Standard parallel parameter. Set to 0° for the PlateCarree case.

Class EquidistantCylindrical.Provider extends MapProjection.AbstractProvider implements Serializable

serialVersionUID: -278288251842178001L

Class HotineObliqueMercator extends ObliqueMercator implements Serializable

serialVersionUID: 7376814731765422533L

Class HotineObliqueMercator.Provider extends ObliqueMercator.Provider implements Serializable

serialVersionUID: 5822488360988630419L

Class HotineObliqueMercator.Provider_TwoPoint extends ObliqueMercator.Provider_TwoPoint implements Serializable

serialVersionUID: -3104452416276842816L

Class Krovak extends MapProjection implements Serializable

serialVersionUID: -8359105634355342212L

Serialized Fields

azimuth

double azimuth
Azimuth of the centre line passing through the centre of the projection. This is equals to the co-latitude of the cone axis at point of intersection with the ellipsoid.


pseudoStandardParallel

double pseudoStandardParallel
Latitude of pseudo standard parallel.


sinAzim

double sinAzim
Useful variables calculated from parameters defined by user.


cosAzim

double cosAzim
Useful variables calculated from parameters defined by user.


n

double n
Useful variables calculated from parameters defined by user.


tanS2

double tanS2
Useful variables calculated from parameters defined by user.


alfa

double alfa
Useful variables calculated from parameters defined by user.


hae

double hae
Useful variables calculated from parameters defined by user.


k1

double k1
Useful variables calculated from parameters defined by user.


ka

double ka
Useful variables calculated from parameters defined by user.


ro0

double ro0
Useful variables calculated from parameters defined by user.


rop

double rop
Useful variables calculated from parameters defined by user.

Class Krovak.Provider extends MapProjection.AbstractProvider implements Serializable

serialVersionUID: -278392856661204734L

Class LambertAzimuthalEqualArea extends MapProjection implements Serializable

serialVersionUID: 1639914708790574760L

Serialized Fields

mode

int mode
The projection mode for this particular instance.


sinb1

double sinb1
Constant parameters.


cosb1

double cosb1
Constant parameters.


xmf

double xmf
Constant parameters.


ymf

double ymf
Constant parameters.


mmf

double mmf
Constant parameters.


qp

double qp
Constant parameters.


dd

double dd
Constant parameters.


rq

double rq
Constant parameters.


APA0

double APA0
Coefficients for authalic latitude.


APA1

double APA1
Coefficients for authalic latitude.


APA2

double APA2
Coefficients for authalic latitude.

Class LambertAzimuthalEqualArea.Provider extends MapProjection.AbstractProvider implements Serializable

serialVersionUID: 3877793025552244132L

Class LambertConformal extends MapProjection implements Serializable

serialVersionUID: 1275881689637308614L

Serialized Fields

phi1

double phi1
Standards parallel 1 in radians, for LambertConformal.getParameterValues() implementation.


phi2

double phi2
Standards parallel 2 in radians, for LambertConformal.getParameterValues() implementation.


n

double n
Internal variables for computation.


F

double F
Internal variables for computation.


rho0

double rho0
Internal variables for computation.


belgium

boolean belgium
true for Belgium 2SP.

Class LambertConformal1SP extends LambertConformal implements Serializable

serialVersionUID: 149783452790829983L

Class LambertConformal1SP.Provider extends MapProjection.AbstractProvider implements Serializable

serialVersionUID: -4243116402872545772L

Class LambertConformal2SP extends LambertConformal implements Serializable

serialVersionUID: 7184350446186057405L

Class LambertConformal2SP.Provider extends MapProjection.AbstractProvider implements Serializable

serialVersionUID: 3240860802816724947L

Class LambertConformalBelgium extends LambertConformal implements Serializable

serialVersionUID: -3441696724046319189L

Class LambertConformalBelgium.Provider extends MapProjection.AbstractProvider implements Serializable

serialVersionUID: -6388030784088639876L

Class LambertConformalESRI extends LambertConformal implements Serializable

serialVersionUID: 4868426927607852118L

Class LambertConformalESRI.Provider extends MapProjection.AbstractProvider implements Serializable

serialVersionUID: -560511707695966609L

Class MapProjection extends AbstractMathTransform implements Serializable

serialVersionUID: -406751619777246914L

Serialized Fields

excentricity

double excentricity
Ellipsoid excentricity, equals to sqrt(MapProjection.excentricitySquared). Value 0 means that the ellipsoid is spherical.

See Also:
MapProjection.excentricitySquared, MapProjection.isSpherical

excentricitySquared

double excentricitySquared
The square of excentricity: e² = (a²-b²)/a² where e is the excentricity, a is the semi major axis length and b is the semi minor axis length.

See Also:
MapProjection.excentricity, MapProjection.semiMajor, MapProjection.semiMinor, MapProjection.isSpherical

isSpherical

boolean isSpherical
true if this projection is spherical. Spherical model has identical semi major and semi minor axis length, and an excentricity zero.

See Also:
MapProjection.excentricity, MapProjection.semiMajor, MapProjection.semiMinor

semiMajor

double semiMajor
Length of semi-major axis, in metres. This is named 'a' or 'R' (Radius in spherical cases) in Snyder.

See Also:
MapProjection.excentricity, MapProjection.semiMinor

semiMinor

double semiMinor
Length of semi-minor axis, in metres. This is named 'b' in Snyder.

See Also:
MapProjection.excentricity, MapProjection.semiMajor

centralMeridian

double centralMeridian
Central longitude in radians. Default value is 0, the Greenwich meridian. This is called 'lambda0' in Snyder.

Consider this field as final. It is not final only because some classes need to modify it at construction time.


latitudeOfOrigin

double latitudeOfOrigin
Latitude of origin in radians. Default value is 0, the equator. This is called 'phi0' in Snyder.

Consider this field as final. It is not final only because some classes need to modify it at construction time.


scaleFactor

double scaleFactor
The scale factor. Default value is 1. Named 'k' in Snyder.

Consider this field as final. It is not final only because some classes need to modify it at construction time.


falseEasting

double falseEasting
False easting, in metres. Default value is 0.


falseNorthing

double falseNorthing
False northing, in metres. Default value is 0.


globalScale

double globalScale
Global scale factor. Default value globalScale is equal to MapProjection.semiMajor×MapProjection.scaleFactor.

Consider this field as final. It is not final only because some classes need to modify it at construction time.

Class MapProjection.AbstractProvider extends MathTransformProvider implements Serializable

serialVersionUID: 6280666068007678702L

Class Mercator extends MapProjection implements Serializable

serialVersionUID: 6146741819833248649L

Serialized Fields

standardParallel

double standardParallel
Standard Parallel used for the Mercator2SP case. Set to Double.NaN for the Mercator1SP case.

Class Mercator1SP extends Mercator implements Serializable

serialVersionUID: 8391549772210490073L

Class Mercator1SP.Provider extends MapProjection.AbstractProvider implements Serializable

serialVersionUID: -5886510621481710072L

Class Mercator2SP extends Mercator implements Serializable

serialVersionUID: -5693375873386007245L

Class Mercator2SP.Provider extends MapProjection.AbstractProvider implements Serializable

serialVersionUID: 6356028352681135786L

Class NewZealandMapGrid extends MapProjection implements Serializable

serialVersionUID: 8394817836243729133L

Class NewZealandMapGrid.Provider extends MapProjection.AbstractProvider implements Serializable

serialVersionUID: -7716733400419275656L

Class ObliqueMercator extends MapProjection implements Serializable

serialVersionUID: 5382294977124711214L

Serialized Fields

latitudeOfCentre

double latitudeOfCentre
Latitude of the projection centre. This is similar to the MapProjection.latitudeOfOrigin, but the latitude of origin is the Earth equator on aposphere for the oblique mercator.


longitudeOfCentre

double longitudeOfCentre
Longitude of the projection centre. This is NOT equal to the MapProjection.centralMeridian, which is the meridian where the central line intersects the Earth equator on aposphere.

This parameter applies to the "azimuth" case only. It is set to NaN for the "two points" case.


azimuth

double azimuth
The azimuth of the central line passing throught the centre of the projection, in radians.


rectifiedGridAngle

double rectifiedGridAngle
The rectified bearing of the central line, in radians. This is equals to the ObliqueMercator.azimuth if the "rectified_grid_angle" parameter value is not set.


latitudeOf1stPoint

double latitudeOf1stPoint
The latitude of the 1st point used to specify the central line, in radians.

This parameter applies to the "two points" case only. It is set to NaN for the "azimuth" case.


longitudeOf1stPoint

double longitudeOf1stPoint
The longitude of the 1st point used to specify the central line, in radians.

This parameter applies to the "two points" case only. It is set to NaN for the "azimuth" case.


latitudeOf2ndPoint

double latitudeOf2ndPoint
The latitude of the 2nd point used to specify the central line, in radians.

This parameter applies to the "two points" case only. It is set to NaN for the "azimuth" case.


longitudeOf2ndPoint

double longitudeOf2ndPoint
The longitude of the 2nd point used to specify the central line, in radians.

This parameter applies to the "two points" case only. It is set to NaN for the "azimuth" case.


B

double B
Constants used in the transformation.


A

double A
Constants used in the transformation.


E

double E
Constants used in the transformation.


ArB

double ArB
Convenience values equal to ObliqueMercator.A / ObliqueMercator.B, ObliqueMercator.A×ObliqueMercator.B, and ObliqueMercator.B / ObliqueMercator.A.


AB

double AB
Convenience values equal to ObliqueMercator.A / ObliqueMercator.B, ObliqueMercator.A×ObliqueMercator.B, and ObliqueMercator.B / ObliqueMercator.A.


BrA

double BrA
Convenience values equal to ObliqueMercator.A / ObliqueMercator.B, ObliqueMercator.A×ObliqueMercator.B, and ObliqueMercator.B / ObliqueMercator.A.


v_pole_n

double v_pole_n
v values when the input latitude is a pole.


v_pole_s

double v_pole_s
v values when the input latitude is a pole.


singamma0

double singamma0
Sine and Cosine values for gamma0 (the angle between the meridian and central line at the intersection between the central line and the Earth equator on aposphere).


cosgamma0

double cosgamma0
Sine and Cosine values for gamma0 (the angle between the meridian and central line at the intersection between the central line and the Earth equator on aposphere).


sinrot

double sinrot
Sine and Cosine values for the rotation between (U,V) and (X,Y) coordinate systems


cosrot

double cosrot
Sine and Cosine values for the rotation between (U,V) and (X,Y) coordinate systems


u_c

double u_c
u value (in (U,V) coordinate system) of the central point. Used in the oblique mercator case. The v value of the central point is 0.0.


twoPoint

boolean twoPoint
true if using two points on the central line to specify the azimuth.

Class ObliqueMercator.Provider extends MapProjection.AbstractProvider implements Serializable

serialVersionUID: 201776686002266891L

Class ObliqueMercator.Provider_TwoPoint extends ObliqueMercator.Provider implements Serializable

serialVersionUID: 7124258885016543889L

Class ObliqueOrthographic extends Orthographic implements Serializable

serialVersionUID: -2306183438166607066L

Serialized Fields

sinphi0

double sinphi0
The sine of the MapProjection.latitudeOfOrigin.


cosphi0

double cosphi0
The cosine of the MapProjection.latitudeOfOrigin.

Class ObliqueStereographic extends StereographicUSGS implements Serializable

serialVersionUID: -1454098847621943639L

Serialized Fields

C

double C

K

double K

ratexp

double ratexp

phic0

double phic0

cosc0

double cosc0

sinc0

double sinc0

R2

double R2

Class ObliqueStereographic.Provider extends Stereographic.Provider implements Serializable

serialVersionUID: 6505988910141381354L

Class Orthographic extends MapProjection implements Serializable

serialVersionUID: -6489939032996419868L

Class Orthographic.Provider extends MapProjection.AbstractProvider implements Serializable

serialVersionUID: 3180410512573499562L

Class PlateCarree extends EquidistantCylindrical implements Serializable

serialVersionUID: -6041146276958636165L

Class PlateCarree.Provider extends MapProjection.AbstractProvider implements Serializable

serialVersionUID: 8535645757318203345L

Class PointOutsideEnvelopeException extends ProjectionException implements Serializable

serialVersionUID: -4384490413772200352L

Class PolarOrthographic extends Orthographic implements Serializable

serialVersionUID: 3281503361127178484L

Serialized Fields

northPole

boolean northPole
true if this projection is for the north pole, or false if it is for the south pole.

Class PolarStereographic extends Stereographic implements Serializable

serialVersionUID: -6635298308431138524L

Serialized Fields

k0

double k0
A constant used in the transformations. This is not equal to the MapProjection.scaleFactor.


standardParallel

double standardParallel
Latitude of true scale, in radians (a.k.a. {@code "standard_parallel_1").


southPole

boolean southPole
true if this projection is for the south pole, or false if it is for the north pole.


poleForced

boolean poleForced
true if PolarStereographic.southPole was forced, or false if it was auto-detected.

Class PolarStereographic.ProviderA extends Stereographic.Provider implements Serializable

serialVersionUID: 9124091259039220308L

Class PolarStereographic.ProviderB extends Stereographic.Provider implements Serializable

serialVersionUID: 5188231050523249971L

Class PolarStereographic.ProviderNorth extends Stereographic.Provider implements Serializable

serialVersionUID: 657493908431273866L

Class PolarStereographic.ProviderSouth extends Stereographic.Provider implements Serializable

serialVersionUID: 6537800238416448564L

Class ProjectionException extends TransformException implements Serializable

serialVersionUID: 3031350727691500915L

Class Stereographic extends MapProjection implements Serializable

serialVersionUID: -176731870235252852L

Serialized Fields

descriptor

ParameterDescriptorGroup descriptor
The parameter descriptor group to be returned by Stereographic.getParameterDescriptors().

Class Stereographic.Provider extends MapProjection.AbstractProvider implements Serializable

serialVersionUID: 1243300263948365065L

Class TransverseMercator extends MapProjection implements Serializable

Serialized Fields

esp

double esp
A derived quantity of excentricity, computed by e'² = (a²-b²)/b² = es/(1-es) where a is the semi-major axis length and b is the semi-minor axis length.


ml0

double ml0
Meridian distance at the latitudeOfOrigin. Used for calculations for the ellipsoid.


en0

double en0
Constant needed for the mlfn method. Setup at construction time.


en1

double en1
Constant needed for the mlfn method. Setup at construction time.


en2

double en2
Constant needed for the mlfn method. Setup at construction time.


en3

double en3
Constant needed for the mlfn method. Setup at construction time.


en4

double en4
Constant needed for the mlfn method. Setup at construction time.

Class TransverseMercator.Provider extends MapProjection.AbstractProvider implements Serializable

Class TransverseMercator.Provider_SouthOrientated extends TransverseMercator.Provider implements Serializable


Package org.geotools.referencing.operation.transform

Class AbstractMathTransform.Inverse extends AbstractMathTransform implements Serializable

serialVersionUID: 3528274816628012283L

Class AffineTransform2D extends XAffineTransform implements Serializable

serialVersionUID: -5299837898367149069L

Class ConcatenatedTransform extends AbstractMathTransform implements Serializable

serialVersionUID: 5772066656987558634L

Serialized Fields

transform1

MathTransform transform1
The first math transform.


transform2

MathTransform transform2
The second math transform.


inverse

ConcatenatedTransform inverse
The inverse transform. This field will be computed only when needed. But it is serialized in order to avoid rounding error if the inverse transform is serialized instead of the original one.

Class EarthGravitationalModel.Provider extends MathTransformProvider implements Serializable

Class ExponentialTransform1D extends AbstractMathTransform implements Serializable

serialVersionUID: 5331178990358868947L

Serialized Fields

base

double base
The base to be raised to a power.


lnBase

double lnBase
Natural logarithm of ExponentialTransform1D.base.


scale

double scale
The scale value to be multiplied.


inverse

MathTransform1D inverse
The inverse of this transform. Created only when first needed. Serialized in order to avoid rounding error if this transform is actually the one which was created from the inverse.

Class ExponentialTransform1D.Provider extends MathTransformProvider implements Serializable

serialVersionUID: -5838840021166379987L

Class GeocentricTransform extends AbstractMathTransform implements Serializable

serialVersionUID: -3352045463953828140L

Serialized Fields

a

double a
Semi-major axis of ellipsoid in meters.


b

double b
Semi-minor axis of ellipsoid in meters.


a2

double a2
Square of semi-major axis (a²).


b2

double b2
Square of semi-minor axis (b²).


e2

double e2
Eccentricity squared.


ep2

double ep2
2nd eccentricity squared.


hasHeight

boolean hasHeight
true if geographic coordinates include an ellipsoidal height (i.e. are 3-D), or false if they are strictly 2-D.

Class GeocentricTransform.Provider extends MathTransformProvider implements Serializable

serialVersionUID: 7043216580786030251L

Class GeocentricTransform.ProviderInverse extends GeocentricTransform.Provider implements Serializable

serialVersionUID: -7356791540110076789L

Class GeocentricTranslation extends ProjectiveTransform implements Serializable

serialVersionUID: -168669443433018655L

Serialized Fields

descriptor

ParameterDescriptorGroup descriptor
The parameter descriptor group.

Class GeocentricTranslation.Provider extends MathTransformProvider implements Serializable

serialVersionUID: -7160250630666911608L

Class GeocentricTranslation.ProviderFrameRotation extends GeocentricTranslation.ProviderSevenParam implements Serializable

serialVersionUID: 5513675854809530038L

Class GeocentricTranslation.ProviderSevenParam extends GeocentricTranslation.Provider implements Serializable

serialVersionUID: -6398226638364450229L

Class IdentityTransform extends AbstractMathTransform implements Serializable

serialVersionUID: -5339040282922138164L

Serialized Fields

dimension

int dimension
The input and output dimension.

Class LinearTransform1D extends AbstractMathTransform implements Serializable

serialVersionUID: -7595037195668813000L

Serialized Fields

scale

double scale
The value which is multiplied to input values.


offset

double offset
The value to add to input values.

Class LogarithmicTransform1D extends AbstractMathTransform implements Serializable

serialVersionUID: 1535101265352133948L

Serialized Fields

base

double base
The base of the logarithm.


lnBase

double lnBase
Natural logarithm of LogarithmicTransform1D.base.


offset

double offset
The offset to add to the logarithm.


inverse

MathTransform1D inverse
The inverse of this transform. Created only when first needed. Serialized in order to avoid rounding error if this transform is actually the one which was created from the inverse.

Class LogarithmicTransform1D.Provider extends MathTransformProvider implements Serializable

serialVersionUID: -7235097164208708484L

Class MathTransformProxy extends Object implements Serializable

serialVersionUID: 8844242705205498128L

Serialized Fields

transform

MathTransform transform
The math transform on which to delegate the work.

Class MolodenskiTransform extends AbstractMathTransform implements Serializable

serialVersionUID: 7536566033885338422L

Serialized Fields

abridged

boolean abridged
true for the abridged formula, or false for the complete version.


source3D

boolean source3D
true for a 3D transformation, or false for a 2D transformation.


target3D

boolean target3D
true for a 3D transformation, or false for a 2D transformation.


dx

double dx
X,Y,Z shift in meters.


dy

double dy
X,Y,Z shift in meters.


dz

double dz
X,Y,Z shift in meters.


a

double a
Semi-major (a) semi-minor (b/) radius in meters.


b

double b
Semi-major (a) semi-minor (b/) radius in meters.


da

double da
Difference in the semi-major (da = target a - source a) and semi-minor (db = target b - source b) axes of the target and source ellipsoids.


db

double db
Difference in the semi-major (da = target a - source a) and semi-minor (db = target b - source b) axes of the target and source ellipsoids.


df

double df
Difference between the flattenings (df = target f - source f) of the target and source ellipsoids.


b_a

double b_a
Ratio of the Semi-major (a) semi-minor (b/) axis values (a_b = a/b and b_a = b/a).


a_b

double a_b
Ratio of the Semi-major (a) semi-minor (b/) axis values (a_b = a/b and b_a = b/a).


daa

double daa
Some more constants (daa = da*a and da_a = da/a).


da_a

double da_a
Some more constants (daa = da*a and da_a = da/a).


e2

double e2
The square of excentricity of the ellipsoid: e² = (a²-b²)/a² where a is the semi-major axis length and b is the semi-minor axis length.


adf

double adf
Defined as (a*df) + (f*da).

Class MolodenskiTransform.Provider extends MathTransformProvider implements Serializable

serialVersionUID: -5332126871499059030L

Class MolodenskiTransform.ProviderAbridged extends MolodenskiTransform.Provider implements Serializable

serialVersionUID: 9148242601566635131L

Class NADCONTransform extends AbstractMathTransform implements Serializable

serialVersionUID: -4707304160205218546L

Serialized Fields

latGridName

String latGridName
Latitude grid shift file names. Output in WKT.


longGridName

String longGridName
Longitude grid shift file names. Output in WKT.


xmin

double xmin
The minimum longitude value covered by this grid (decimal degrees)


ymin

double ymin
The minimum latitude value covered by this grid (decimal degrees)


xmax

double xmax
The maximum longitude value covered by this grid (decimal degrees)


ymax

double ymax
The maximum latitude value covered by this grid (decimal degrees)


dx

double dx
The difference between longitude grid points (decimal degrees)


dy

double dy
The difference between latitude grid points (decimal degrees)


gridShift

LocalizationGrid gridShift
Longitude and latitude grid shift values. Values are organized from low to high longitude (low x index to high) and low to high latitude (low y index to high).


gridShiftTransform

MathTransform gridShiftTransform
The NADCONTransform.gridShift values as a LocalizationGridTransform2D. Used for interpolating shift values.

Class NADCONTransform.Provider extends MathTransformProvider implements Serializable

serialVersionUID: -4707304160205218546L

Class PassThroughTransform extends AbstractMathTransform implements Serializable

serialVersionUID: -1673997634240223449L

Serialized Fields

firstAffectedOrdinate

int firstAffectedOrdinate
Index of the first affected ordinate.


numTrailingOrdinates

int numTrailingOrdinates
Number of unaffected ordinates after the affected ones. Always 0 when used through the strict OpenGIS API.


subTransform

MathTransform subTransform
The sub transform.

See Also:
PassThroughTransform.getSubTransform()

inverse

PassThroughTransform inverse
The inverse transform. This field will be computed only when needed. But it is serialized in order to avoid rounding error.

Class ProjectiveTransform extends AbstractMathTransform implements Serializable

serialVersionUID: -2104496465933824935L

Serialized Fields

numRow

int numRow
The number of rows.


numCol

int numCol
The number of columns.


elt

double[] elt
Elements of the matrix. Column indice vary fastest.

Class ProjectiveTransform.ProviderAffine extends MathTransformProvider implements Serializable

serialVersionUID: 649555815622129472L

Class ProjectiveTransform.ProviderLongitudeRotation extends MathTransformProvider implements Serializable

serialVersionUID: -2104496465933824935L

Class WarpTransform2D extends AbstractMathTransform implements Serializable

serialVersionUID: -7949539694656719923L

Serialized Fields

warp

Warp warp
The warp object. Transformations will be applied using the warpPoint method or something equivalent.


inverse

WarpTransform2D inverse
The inverse math transform.

Class WarpTransform2D.Provider extends MathTransformProvider implements Serializable

serialVersionUID: -7949539694656719923L


Package org.geotools.referencing.piecewise

Class DefaultDomainElement1D extends Object implements Serializable

serialVersionUID: -2520449231656622013L

Serialized Fields

name

InternationalString name
The domain element name.

UML property:
name="name"

inputMinimum

double inputMinimum
The minimal sample value (inclusive). This domain element is made of all values in the range inputMinimum to inputMaximum inclusive.

UML property:
name="inputMinimum"

inputMaximum

double inputMaximum
The maximal sample value (inclusive). This domain element is made of all values in the range inputMinimum to inputMaximum inclusive.

UML property:
name="inputMaximum"

range

NumberRange<T extends Number & Comparable<? super T>> range
The range of values [inputMinimum..maximum] . May be computed only when first requested, or may be user-supplied .

UML property:
name="range"

inputMinimumInf

boolean inputMinimumInf
Is lower input bound infinite?


inputMaximumInf

boolean inputMaximumInf
Is uper input bound infinite?


inputMaximumNaN

boolean inputMaximumNaN
Is upper input bound NaN?

UML property:
name="inputMaximumNaN"

inputMinimumNaN

boolean inputMinimumNaN
Is lower input bound NaN?

UML property:
name="inputMinimumNaN"

hashCode

int hashCode

Class DefaultLinearPiecewiseTransform1DElement extends DefaultPiecewiseTransform1DElement implements Serializable

serialVersionUID: 4026834241134908025L

Serialized Fields

outputMaximum

double outputMaximum
UML property:
name="outputMaximum"

outputMinimum

double outputMinimum
UML property:
name="outputMinimum"

outputRange

NumberRange<T extends Number & Comparable<? super T>> outputRange
UML property:
name="outputRange"

outputMinimumNaN

boolean outputMinimumNaN
UML property:
name="outputMinimumNaN"

outputMaximumNaN

boolean outputMaximumNaN
UML property:
name="outputMaximumNaN"

outputMinimumInfinite

boolean outputMinimumInfinite
UML property:
name="outputMinimumInfinite"

outputMaximumInfinite

boolean outputMaximumInfinite
UML property:
name="outputMaximumInfinite"

Class DefaultPiecewiseTransform1DElement extends DefaultDomainElement1D implements Serializable

serialVersionUID: 7422178060824402864L

Serialized Fields

transform

MathTransform1D transform
The math transform

UML property:
name="transform"

inverse

MathTransform1D inverse
Inverse MathTransform1D


hashCode

int hashCode

Package org.geotools.referencing.wkt

Class AbstractParser extends Format implements Serializable

Serialized Fields

symbols

Symbols symbols
The symbols to use for parsing WKT.


numberFormat

NumberFormat numberFormat
The object to use for parsing numbers.

Class MathTransformParser extends AbstractParser implements Serializable

Serialized Fields

mtFactory

MathTransformFactory mtFactory
The factory to use for creating math transforms.


classification

String classification
The classification of the last math transform or projection parsed, or null if none.


lastMethod

OperationMethod lastMethod
The method for the last math transform passed, or null if none.

See Also:
MathTransformParser.getOperationMethod()

Class Parser extends MathTransformParser implements Serializable

serialVersionUID: -144097689843465085L

Serialized Fields

datumFactory

DatumFactory datumFactory
The factory to use for creating datum.


csFactory

CSFactory csFactory
The factory to use for creating coordinate systems.


crsFactory

CRSFactory crsFactory
The factory to use for creating coordinate reference systems.


directions

Map<K,V> directions
The list of axis directions from their name.

Class Preprocessor extends Format implements Serializable

Serialized Fields

parser

Format parser
The WKT parser, usually a Parser object.


definitions

Map<K,V> definitions
The set of objects defined by calls to Preprocessor.addDefinition(java.lang.String, java.lang.String).

Class UnformattableObjectException extends UnsupportedOperationException implements Serializable

Serialized Fields

unformattable

Class<T> unformattable
The type of the object that can't be formatted.


Package org.geotools.renderer.lite.gridcoverage2d

Class LinearColorMapElement extends DefaultLinearPiecewiseTransform1DElement implements Serializable

serialVersionUID: 2216106857184603629L

Serialized Fields

colors

Color[] colors
Color s associated to this ColorMapTransformElement .

UML property:
name="colors"

hashCode

int hashCode

Package org.geotools.styling

Class StyleFactoryCreationException extends Exception implements Serializable

serialVersionUID: -1809128211848169317L


Package org.geotools.text.filter

Class FilterBuilderException extends CQLException implements Serializable

serialVersionUID: -8027243686579409436L


Package org.geotools.util

Class CheckedArrayList extends ArrayList<E> implements Serializable

serialVersionUID: -587331971085094268L

Serialized Fields

type

Class<T> type
The element type.

Class CheckedHashMap extends LinkedHashMap<K,V> implements Serializable

serialVersionUID: -7777695267921872849L

Serialized Fields

keyType

Class<T> keyType
The class type for keys.


valueType

Class<T> valueType
The class type for values.

Class CheckedHashSet extends LinkedHashSet<E> implements Serializable

serialVersionUID: -9014541457174735097L

Serialized Fields

type

Class<T> type
The element type.

Class DateRange extends Range<Date> implements Serializable

serialVersionUID: -6400011350250757942L

Class DerivedMap extends AbstractMap<K,V> implements Serializable

serialVersionUID: -6994867383669885934L

Serialized Fields

base

Map<K,V> base
The base map whose keys are derived from.

See Also:
DerivedMap.baseToDerived(BK), DerivedMap.derivedToBase(K)

keyType

Class<T> keyType
The derived key type.

Class DerivedSet extends AbstractSet<E> implements Serializable

serialVersionUID: -4662336508586424581L

Serialized Fields

base

Set<E> base
The base set whose values are derived from.

See Also:
DerivedSet.baseToDerived(B), DerivedSet.derivedToBase(E)

derivedType

Class<T> derivedType
The derived type.

Class DisjointSet extends AbstractSet<E> implements Serializable

serialVersionUID: -7933552571588598563L

Serialized Fields

map

Map<K,V> map
The underlying map. add and remove operations on this set are translated into Map operations as below:

Adding a new element to this Set:

  • Puts the corresponding key-value pair in the underlying Map, where:
    • the key is the element to add;
    • the value is this DisjointSet.
    If an other value was mapped to the key, the old value is discarted. This is equivalents to removing the element from an other DisjointSet prior to add it to this set (in other words, moving the element).

Removing an element from this Set:

  • If the element is not an existing key in the underlying map, nothing is done.
  • Otherwise, if the element is a key mapping a different value than this DisjointSet, then the element is assumed to belongs to an other DisjointSet and nothing is done.
  • Otherwise, puts the key-value pair with the trash value in the underlying Map. This is equivalent to moving the element from this set to the "trash" set. Note that if the operation is applied on the "trash" set itself or if this set doesn't have a trash (trash==null), then the element is effectively removed from the underlying map.


trash

DisjointSet<E> trash
The set where to move removed elements, or null if there is none.

Class FrequencySortedSet extends AbstractSet<E> implements Serializable

serialVersionUID: 6034102231354388179L

Serialized Fields

count

Map<K,V> count
The frequency of occurence for each element. We must use a linked hash map instead of an ordinary hash map because we want to preserve insertion order for elements that occur at the same frequency.


order

int order
+1 if the element should be sorted in the usual order, or -1 if the elements should be sorted in reverse order (most frequent element first).

Class GenericName extends Object implements Serializable

serialVersionUID: 8685047583179337259L

Class GrowableInternationalString extends AbstractInternationalString implements Serializable

serialVersionUID: 5760033376627376937L

Serialization Methods

readObject

private void readObject(ObjectInputStream in)
                 throws IOException,
                        ClassNotFoundException
Canonicalize the locales after deserialization.

Throws:
IOException
ClassNotFoundException
Serialized Fields

localMap

Map<K,V> localMap
The string values in different locales (never null). Keys are Locale objects and values are Strings.

Class IntegerList extends AbstractList<Integer> implements Serializable

serialVersionUID: 1241962316404811189L

Serialized Fields

values

long[] values
The packed values. We use the long type instead of int on the basis that 64 bits machines are becoming more and more common.


bitCount

int bitCount
The bit count for values.


mask

int mask
The mask computed as (1 << bitCount) - 1.


size

int size
The list size. Initially 0.

Class KeySortedList extends AbstractSequentialList<V> implements Serializable

serialVersionUID: 6969483179756527012L

Serialized Fields

map

SortedMap<K,V> map
The sorted map of key-list of values pairs.

Class LocalName extends GenericName implements Serializable

serialVersionUID: -5627125375582385822L

Serialized Fields

asScopedName

ScopedName asScopedName
The view of this object as a scoped name.


name

CharSequence name
The name, either as a String or an InternationalString.

Class LRULinkedHashMap extends LinkedHashMap<K,V> implements Serializable

serialVersionUID: -6668885347230182669L

Serialized Fields

maximumSize

int maximumSize
Maximum number of entries for this LRU map.

Class MapEntry extends Object implements Serializable

serialVersionUID: 8627698052283756776L

Serialized Fields

key

Object key
The key.


value

Object value
The value.

Class MeasurementRange extends NumberRange<T extends Number & Comparable<? super T>> implements Serializable

serialVersionUID: 3980319420337513745L

Serialized Fields

units

Unit<Q extends Quantity> units
The units of measurement, or null if unknown.

Class MemberNameImpl extends LocalName implements Serializable

serialVersionUID: 6188284973982058318L

Serialized Fields

typeName

TypeName typeName
The type of the data associated with the record member.

Class NumberRange extends Range<T extends Number & Comparable<? super T>> implements Serializable

serialVersionUID: -818167965963008231L

Class Range extends Object implements Serializable

serialVersionUID: -5393896130562660517L

Serialized Fields

elementClass

Class<T> elementClass
The class of elements.


minValue

Comparable<T> minValue
The minimal and maximal value.


maxValue

Comparable<T> maxValue
The minimal and maximal value.


isMinIncluded

boolean isMinIncluded
Whatever the minimal or maximum value is included.


isMaxIncluded

boolean isMaxIncluded
Whatever the minimal or maximum value is included.

Class RangeSet extends AbstractSet<Range<T extends Comparable<? super T>>> implements Serializable

serialVersionUID: 2439002271813328080L

Serialized Fields

elementClass

Class<T> elementClass
The element class of ranges.


relaxedClass

Class<T> relaxedClass
Identical to elementClass except if the later is a Number subclass. In the later case, this field is set to Number.class.


arrayElementClass

Class<T> arrayElementClass
Identical to elementClass except if the later is the wrapper of some primitive type. In the later case this field is set to that primitive type. This is the type to be used in arrays.


arrayElementCode

byte arrayElementCode
The primitive type, as one of DOUBLE, FLOAT, LONG, INTEGER, SHORT, BYTE, CHARACTER or OTHER enumeration.


array

Object array
Tableau d'intervalles. Il peut s'agir d'un tableau d'un des types primitifs du Java (par exemple int[] ou float[]), ou d'un tableau de type Comparable[]. Les éléments de ce tableau doivent obligatoirement être en ordre strictement croissant et sans doublon.

La longueur de ce tableau est le double du nombre d'intervalles. Il aurait été plus efficace d'utiliser une variable séparée (pour ne pas être obligé d'agrandir ce tableau à chaque ajout d'un intervalle), mais malheureusement le J2SE 1.4 ne nous fournit pas de méthode Arrays.binarySearch qui nous permettent de spécifier les limites du tableau (voir RFE #4306897 à http://developer.java.sun.com/developer/bugParade/bugs/4306897.html).


modCount

int modCount
Compte le nombre de modifications apportées au tableau des intervalles. Ce comptage sert à vérifier si une modification survient pendant qu'un itérateur balayait les intervalles.


isPrimitive

boolean isPrimitive
true if and only if the element class represents a primitive type. This is equivalents to primitiveType.isPrimitive() and is computed once for ever for performance reason.


useClassChanger

boolean useClassChanger
true if we should invoke ClassChanger.toNumber(java.lang.Comparable) before to store a value into the array. It will be the case if the array array contains primitive elements and the type type is not the corresponding wrapper.


isNumeric

boolean isNumeric
true if instances of NumberRange should be created instead of Range.

Class ResourceInternationalString extends AbstractInternationalString implements Serializable

serialVersionUID: 6339944890723487336L

Serialized Fields

resources

String resources
The name of the resource bundle from which to fetch the string.


key

String key
The key for the resource to fetch.

Class ScopedName extends GenericName implements Serializable

serialVersionUID: -7664125655784137729L

Serialized Fields

scope

GenericName scope
The scope of this variable (also know as the "tail").


separator

char separator
The separator character.


name

LocalName name
The head as a local name.

Class SimpleInternationalString extends AbstractInternationalString implements Serializable

serialVersionUID: 3543963804501667578L

Serialization Methods

readObject

private void readObject(ObjectInputStream in)
                 throws IOException,
                        ClassNotFoundException
Read the string. This is required since AbstractInternationalString.defaultValue is not serialized.

Throws:
IOException
ClassNotFoundException

writeObject

private void writeObject(ObjectOutputStream out)
                  throws IOException
Write the string. This is required since AbstractInternationalString.defaultValue is not serialized.

Throws:
IOException

Class UnsupportedImplementationException extends UnsupportedOperationException implements Serializable

serialVersionUID: -649050339146622730L

Class Version extends Object implements Serializable

serialVersionUID: -6793384507333713770L

Serialized Fields

version

String version
The version in string form, with leading and trailing spaces removed.


Package org.geotools.util.logging

Class LoggedFormat extends Format implements Serializable

serialVersionUID: 4578880360344271325L

Serialized Fields

format

Format format
The wrapped format.


type

Class<T> type
The expected type for the parsed values.


level

Level level
The level to use for the messages to be logged.


logger

String logger
The logger where to log warnings, or null if none.

See Also:
LoggedFormat.setLogger(java.lang.String)

className

String className
The class to declare in as the warning emitter, or null if none.

See Also:
LoggedFormat.setCaller(java.lang.Class, java.lang.String)

methodName

String methodName
The method to declare in as the warning emitter, or null if none.

See Also:
LoggedFormat.setCaller(java.lang.Class, java.lang.String)

Package org.geotools.validation.xml

Class ValidationException extends Exception implements Serializable


Package org.geotools.xml

Class OptionalComponentParameter extends BasicComponentParameter implements Serializable

Class XMLElementHandler extends Object implements Serializable

Class XSIElementHandler extends Object implements Serializable


Package org.geotools.xml.filter

Class UnsupportedFilterException extends RuntimeException implements Serializable

serialVersionUID: 1522023598004933175L


Package org.geotools.xml.gml

Class FCBuffer.StopException extends SAXException implements Serializable


Package org.geotools.xml.handlers

Class ComplexElementHandler extends XMLElementHandler implements Serializable

Serialized Fields

type

ComplexType type

elem

Element elem

text

String text

attr

Attributes attr

elements

List<E> elements

value

Object value

ehf

ElementHandlerFactory ehf

Class DocumentHandler extends XMLElementHandler implements Serializable

Serialized Fields

xeh

XMLElementHandler xeh

ehf

ElementHandlerFactory ehf

Class IgnoreHandler extends XMLElementHandler implements Serializable

Serialized Fields

elem

Element elem

Class SimpleElementHandler extends XMLElementHandler implements Serializable

Serialized Fields

type

SimpleType type

elem

Element elem

text

String text

value

Object value

attr

Attributes attr

Package org.geotools.xml.handlers.xsi

Class AllHandler extends ElementGroupingHandler implements Serializable

Serialized Fields

id

String id

minOccurs

int minOccurs

maxOccurs

int maxOccurs

elements

List<E> elements

cache

AllHandler.DefaultAll cache

Class AnyAttributeHandler extends XSIElementHandler implements Serializable

Serialized Fields

namespace

String namespace

Class AnyHandler extends ElementGroupingHandler implements Serializable

Serialized Fields

id

String id

namespace

URI namespace

minOccurs

int minOccurs

maxOccurs

int maxOccurs

cache

AnyHandler.DefaultAny cache

Class AttributeGroupHandler extends XSIElementHandler implements Serializable

Serialized Fields

id

String id

name

String name

ref

String ref

anyAttribute

AnyAttributeHandler anyAttribute

attrDecs

List<E> attrDecs

hashCodeOffset

int hashCodeOffset

cache

AttributeGroup cache

Class AttributeHandler extends XSIElementHandler implements Serializable

Serialized Fields

id

String id

name

String name

type

String type

ref

String ref

def

String def

fixed

String fixed

use

int use

simpleType

SimpleTypeHandler simpleType

hashCodeOffset

int hashCodeOffset

cache

Attribute cache

Class ChoiceHandler extends ElementGroupingHandler implements Serializable

Serialized Fields

id

String id

minOccurs

int minOccurs

maxOccurs

int maxOccurs

children

List<E> children

cache

ChoiceHandler.DefaultChoice cache

Class ComplexContentHandler extends XSIElementHandler implements Serializable

Serialized Fields

id

String id

mixed

String mixed

child

Object child

Class ComplexTypeHandler extends XSIElementHandler implements Serializable

serialVersionUID: -2001189506633342497L

Serialized Fields

id

String id

name

String name

abstracT

boolean abstracT

mixed

boolean mixed

block

int block

finaL

int finaL

attrDecs

List<E> attrDecs

anyAttribute

AnyAttributeHandler anyAttribute

child

Object child

hashCodeOffset

int hashCodeOffset

cache

ComplexType cache

Class ElementGroupingHandler extends XSIElementHandler implements Serializable

Class ElementTypeHandler extends ElementGroupingHandler implements Serializable

Serialized Fields

id

String id

name

String name

type

String type

ref

String ref

defaulT

String defaulT

fixed

String fixed

substitutionGroup

String substitutionGroup

maxOccurs

int maxOccurs

minOccurs

int minOccurs

finaL

int finaL

block

int block

form

boolean form

abstracT

boolean abstracT

nillable

boolean nillable

child

Object child

hashCodeOffset

int hashCodeOffset

cache

ElementTypeHandler.DefaultElement cache

Class ExtensionHandler extends XSIElementHandler implements Serializable

Serialized Fields

base

String base

child

Object child

attributeDec

List<E> attributeDec

Class FacetHandler extends XSIElementHandler implements Serializable

Serialized Fields

value

String value

Class FieldHandler extends XSIElementHandler implements Serializable

Serialized Fields

id

String id

xpath

String xpath

Class GroupHandler extends ElementGroupingHandler implements Serializable

Serialized Fields

id

String id

name

String name

ref

String ref

maxOccurs

int maxOccurs

minOccurs

int minOccurs

child

ElementGroupingHandler child

hashCodeOffset

int hashCodeOffset

cache

GroupHandler.DefaultGroup cache

Class IgnoreHandler extends XSIElementHandler implements Serializable

Class ImportHandler extends XSIElementHandler implements Serializable

Serialized Fields

namespace

URI namespace

schemaLocation

URI schemaLocation

hashCodeOffset

int hashCodeOffset

Class IncludeHandler extends XSIElementHandler implements Serializable

Serialized Fields

schemaLocation

String schemaLocation

hashCodeOffset

int hashCodeOffset

Class KeyHandler extends XSIElementHandler implements Serializable

Serialized Fields

id

String id

name

String name

selector

SelectorHandler selector

fields

List<E> fields

Class KeyrefHandler extends XSIElementHandler implements Serializable

Serialized Fields

id

String id

name

String name

refer

String refer

selector

SelectorHandler selector

fields

List<E> fields

Class ListHandler extends XSIElementHandler implements Serializable

Serialized Fields

id

String id

itemType

String itemType

simpleType

SimpleTypeHandler simpleType

Class RedefineHandler extends XSIElementHandler implements Serializable

Serialized Fields

id

String id

schemaLocation

String schemaLocation

simpleTypes

List<E> simpleTypes

complexTypes

List<E> complexTypes

groups

List<E> groups

attributeGroups

List<E> attributeGroups

hashCodeOffset

int hashCodeOffset

Class RestrictionHandler extends XSIElementHandler implements Serializable

Serialized Fields

id

String id

base

String base

child

Object child

constraints

List<E> constraints

attrDecs

List<E> attrDecs

anyAttribute

AnyAttributeHandler anyAttribute

Class RootHandler extends XSIElementHandler implements Serializable

Serialized Fields

schema

SchemaHandler schema

uri

URI uri

Class SchemaHandler extends XSIElementHandler implements Serializable

Serialized Fields

id

String id

prefix

String prefix

targetNamespace

URI targetNamespace

version

String version

elementFormDefault

boolean elementFormDefault

attributeFormDefault

boolean attributeFormDefault

finalDefault

int finalDefault

blockDefault

int blockDefault

includes

List<E> includes

imports

List<E> imports

redefines

List<E> redefines

attributes

List<E> attributes

attributeGroups

List<E> attributeGroups

complexTypes

List<E> complexTypes

elements

List<E> elements

groups

List<E> groups

simpleTypes

List<E> simpleTypes

uri

URI uri

schema

Schema schema

prefixCache

HashMap<K,V> prefixCache

Class SelectorHandler extends XSIElementHandler implements Serializable

Serialized Fields

id

String id

xpath

String xpath

Class SequenceHandler extends ElementGroupingHandler implements Serializable

Serialized Fields

id

String id

maxOccurs

int maxOccurs

minOccurs

int minOccurs

children

List<E> children

cache

SequenceHandler.DefaultSequence cache

Class SimpleContentHandler extends XSIElementHandler implements Serializable

Serialized Fields

child

Object child

Class SimpleTypeHandler extends XSIElementHandler implements Serializable

Serialized Fields

id

String id

name

String name

finaL

int finaL

child

XSIElementHandler child

hashCodeOffset

int hashCodeOffset

cache

SimpleType cache

Class UnionHandler extends XSIElementHandler implements Serializable

Serialized Fields

id

String id

memberTypes

String memberTypes

simpleTypes

List<E> simpleTypes

Class UniqueHandler extends XSIElementHandler implements Serializable

Serialized Fields

id

String id

xpath

String xpath

selector

SelectorHandler selector

fields

List<E> fields

Package org.geotools.xml.impl

Class Duration extends Object implements Serializable

serialVersionUID: 3257001055736117303L

Serialized Fields

isNegative

boolean isNegative

years

int years

months

int months

days

int days

hours

int hours

minutes

int minutes

seconds

int seconds

millis

long millis

Class XsDateFormat extends XsDateTimeFormat implements Serializable

Class XsDateTimeFormat extends Format implements Serializable

Serialized Fields

parseDate

boolean parseDate

parseTime

boolean parseTime

Class XsTimeFormat extends XsDateTimeFormat implements Serializable


Package org.geotools.xml.impl.jxpath

Class FeaturePointer extends NodePointer implements Serializable

Serialized Fields

name

QName name
The name of hte node.


feature

SimpleFeature feature
The underlying feature

Class FeaturePropertyPointer extends NodePointer implements Serializable

Serialized Fields

feature

SimpleFeature feature
the feature


parent

FeaturePointer parent
The parent pointer


index

int index
the indedx of hte property being pointed at

Class FeatureTypeAttributePointer extends NodePointer implements Serializable

Serialized Fields

featureType

SimpleFeatureType featureType
the feature type


parent

FeatureTypePointer parent
The parent pointer


index

int index
the indedx of hte property being pointed at

Class FeatureTypePointer extends NodePointer implements Serializable

Serialized Fields

name

QName name
The name of hte node.


featureType

SimpleFeatureType featureType
The underlying feature type



Copyright © 1996-2009 Geotools. All Rights Reserved.