Package com.luciad.contour
Enum Class TLcdComplexPolygonContourFinder.IntervalMode
java.lang.Object
java.lang.Enum<TLcdComplexPolygonContourFinder.IntervalMode>
com.luciad.contour.TLcdComplexPolygonContourFinder.IntervalMode
- All Implemented Interfaces:
Serializable
,Comparable<TLcdComplexPolygonContourFinder.IntervalMode>
,Constable
- Enclosing class:
TLcdComplexPolygonContourFinder
public static enum TLcdComplexPolygonContourFinder.IntervalMode
extends Enum<TLcdComplexPolygonContourFinder.IntervalMode>
The interval mode of the created contours. This determines which complex polygons are created
for the level values.
If the mode is INTERVAL, then a complex polygon around the area between each two consecutive values is created. Since two consecutive values are used per interval, there is one less area created than the number of level values. Each area is disjoint to all other areas.
If it's LOWER, a complex polygon around each area smaller than the given value is created. There are as much areas created as given levels. The areas will overlap each other, but will still be disjoint to special value areas.
If it's HIGHER, a complex polygon around each area higher than the given value is created. There are as much areas created as given levels. The areas will overlap each other, but will still be disjoint to special value areas.
- Since:
- 10.1
-
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
-
INTERVAL
Interval: the raster value has to be between the low and high contour values. -
LOWER
Lower: the raster value has to be lower than or equal to the contour value. -
HIGHER
Higher: the raster value has to be higher than or equal to the contour value.
-
-
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
-