org.opengis.gc
Interface GC_ParameterInfo

All Known Implementing Classes:
GC_ParameterInfo_Impl

public interface GC_ParameterInfo

Provides information for the parameters required for grid coverage processing operations and grid exchange. This information includes such information as the name of the parameter, parameter description, parameter type etc.

Since:
1.00
Version:
1.00

Method Summary
 java.lang.Object getDefaultValue()
          Default value for parameter.
 java.lang.String getDescription()
          Parameter description.
 double getMaximumValue()
          Maximum parameter value.
 double getMinimumValue()
          Minimum parameter value.
 java.lang.String getName()
          Parameter name.
 GC_ParameterType getType()
          Parameter type.
 

Method Detail

getName

public java.lang.String getName()
Parameter name.


getDescription

public java.lang.String getDescription()
Parameter description. If no description, the value will be null.


getType

public GC_ParameterType getType()
Parameter type. The enumeration contains standard parameter types for integer, string, floating-point numbers, objects, etc.


getDefaultValue

public java.lang.Object getDefaultValue()
Default value for parameter. The type Object can be any type including a Number or a String. For example, a filtering operation could have a default kernel size of 3. If there is no default value, defaultValue will be null.


getMinimumValue

public double getMinimumValue()
Minimum parameter value. For example, a filtering operation could have a minimum kernel size of 3.


getMaximumValue

public double getMaximumValue()
Maximum parameter value. For example, a filtering operation could have a maximum kernel size of 9.