Package com.luciad.network.function
Enum Class ALcdCrossCountryRasterDistanceFunction.ComputationMode
java.lang.Object
java.lang.Enum<ALcdCrossCountryRasterDistanceFunction.ComputationMode>
com.luciad.network.function.ALcdCrossCountryRasterDistanceFunction.ComputationMode
- All Implemented Interfaces:
Serializable
,Comparable<ALcdCrossCountryRasterDistanceFunction.ComputationMode>
,Constable
- Enclosing class:
ALcdCrossCountryRasterDistanceFunction
public static enum ALcdCrossCountryRasterDistanceFunction.ComputationMode
extends Enum<ALcdCrossCountryRasterDistanceFunction.ComputationMode>
Describes the mode in which the distances should be computed.
- Since:
- 9.1
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionComputes an approximate distance which is generally faster to compute but may ignore the influence of some values in the raster.Computes a precise distance taking into account the discretization of the raster. -
Method Summary
Modifier and TypeMethodDescriptionReturns the enum constant of this class with the specified name.values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
PRECISE
Computes a precise distance taking into account the discretization of the raster. -
APPROXIMATE
Computes an approximate distance which is generally faster to compute but may ignore the influence of some values in the raster.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum class has no constant with the specified nameNullPointerException
- if the argument is null
-