Package com.luciad.fusion.engine
Enum Class TLfnEngineFactory.TileCombiningStrategy
java.lang.Object
java.lang.Enum<TLfnEngineFactory.TileCombiningStrategy>
com.luciad.fusion.engine.TLfnEngineFactory.TileCombiningStrategy
- All Implemented Interfaces:
Serializable
,Comparable<TLfnEngineFactory.TileCombiningStrategy>
,Constable
- Enclosing class:
TLfnEngineFactory
public static enum TLfnEngineFactory.TileCombiningStrategy
extends Enum<TLfnEngineFactory.TileCombiningStrategy>
The tile combining strategy defines how values of 4 tiles at level
N
are combined into values of 1 tile at
level N - 1
. It applies only to raster engine sessions. The default strategy is AVERAGE
.- Since:
- 2012.1
- See Also:
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
-
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
-
AVERAGE
This is the default strategy, which takes an interpolated average of the contributing values. It applies to all raster data. -
MAXIMUM
This strategy takes the maximum of 4 values. It is currently only implemented for elevation raster data. If one of the 4 contributing values is the unknown valueNaN
, the combined value is alsoNaN
.
-
-
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
-