Enum Class ELfnDataDensity
- All Implemented Interfaces:
Serializable
,Comparable<ELfnDataDensity>
,Constable
Enumeration indicating the data density or detail of the data in a coverage.
The data density information can be used by rendering engines as a hint on how to render the data in a coverage,
for example, which tiles are rendered on screen, which level of detail is chosen for a given scale,
how the rendering of the data towards the horizon is done, ...
- Since:
- 2012.0
-
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 TypeMethodDescriptionstatic ELfnDataDensity
Returns the enum constant of this class with the specified name.static ELfnDataDensity[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
OVERVIEW
Overview data. Overview data typically contains less data per tile, may be rendered at lower detailed levels but should be visible up to the horizon. The purpose of overview data typically is to provide the user a recognizable orientation point. Examples include country boundaries, large cities (as points or boundaries), highways, main rivers, ... -
DETAIL
Detailed data. Detailed data may be dense (large tiles), and should be rendered at a sufficiently high detail. It is less important that the data is rendered up to the horizon. Examples include detailed street data, building outlines, small rivers, ...
-
-
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
-