Package org.geotools.api.style
Enum Class OverlapBehaviorEnum
- All Implemented Interfaces:
Serializable
,Comparable<OverlapBehaviorEnum>
,Constable
The OverlapBehavior element tells a system how to behave when multiple raster images in a layer overlap each other,
for example with satellite-image scenes. LATEST_ON_TOP and EARLIEST_ON_TOP refer to the time the scene was captured.
AVERAGE means to average multiple scenes together. This can produce blurry results if the source images are not
perfectly aligned in their geo-referencing. RANDOM means to select an image (or piece thereof) randomly and place it
on top. This can produce crisper results than AVERAGE potentially more efficiently than LATEST_ON_TOP or
EARLIEST_ON_TOP. The default behaviour is system-dependent.
- Since:
- GeoAPI 2.2
- Author:
- Open Geospatial Consortium, Johann Sorel (Geomatys)
-
Nested Class Summary
Nested classes/interfaces inherited from class Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum Constants -
Method Summary
Modifier and TypeMethodDescriptionstatic OverlapBehaviorEnum
Returns the enum constant of this class with the specified name.static OverlapBehaviorEnum[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
LATEST_ON_TOP
-
EARLIEST_ON_TOP
-
AVERAGE
-
RANDOM
-
-
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
-