Package com.luciad.wms.client.lightspeed
Enum Class ELcdWMSPaintStrategy
- All Implemented Interfaces:
Serializable
,Comparable<ELcdWMSPaintStrategy>
,Constable
A paint strategy for WMS data.
- Since:
- 2015.0
- See Also:
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionUses a single WMS image for the entire view.Request data in a tiling structure. -
Method Summary
Modifier and TypeMethodDescriptionstatic ELcdWMSPaintStrategy
Returns the enum constant of this class with the specified name.static ELcdWMSPaintStrategy[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
TILED
Request data in a tiling structure. This typically gives better performance because the tiles can be cached. However you may get visual artifacts regarding content that is not tied to world coordinates. For example, logo's may appear multiple times and labels may only be partially visible. -
SINGLE_IMAGE
Uses a single WMS image for the entire view. This allows pixel-perfect rendering if the server supports providing images in the view's world reference. This approach also avoids the visual artifacts from theTILED
approach.
-
-
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
-