| java.lang.Object org.geotools.coverage.grid.LookupTableFactory
LookupTableFactory | final class LookupTableFactory (Code) | | A factory for
LookupTableJAI objects built from an array of
MathTransform1D .
This factory is used internally by
GridCoverage.createGeophysics .
since: 2.1 version: $Id: LookupTableFactory.java 23120 2006-11-29 16:44:07Z desruisseaux $ author: Martin Desruisseaux |
Method Summary | |
public static LookupTableJAI | create(int sourceType, int targetType, MathTransform1D[] transforms) Gets a lookup factory
Parameters: sourceType - The source data type. | public boolean | equals(Object other) Compare the specified object with this key for equality. | public int | hashCode() Returns a hash code value for this key. |
create | public static LookupTableJAI create(int sourceType, int targetType, MathTransform1D[] transforms) throws TransformException(Code) | | Gets a lookup factory
Parameters: sourceType - The source data type. Should be one of DataBuffer constants. Parameters: targetType - The target data type. Should be one of DataBuffer constants. Parameters: transforms - The math transforms to apply. The lookup table, or null if this method can't build a lookuptable for the supplied parameters. throws: TransformException - if a transformation failed. |
equals | public boolean equals(Object other)(Code) | | Compare the specified object with this key for equality. This is for internal use by
LookupTableFactory and is public only as an implementation side effect.
|
hashCode | public int hashCode()(Code) | | Returns a hash code value for this key. This is for internal use by
LookupTableFactory and is public only as an implementation side effect.
|
|
|