Module com.esri.arcgisruntime
Package com.esri.arcgisruntime.layers
Enum Class FeatureLayer.RenderingMode
- All Implemented Interfaces:
Serializable
,Comparable<FeatureLayer.RenderingMode>
,Constable
- Enclosing class:
FeatureLayer
The different modes of rendering features.
- Since:
- 100.2.0
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionThe rendering mode for the layer will be automatically chosen based on the geometry type andRenderer
.Dynamic rendering mode - Features will be updated during pan and zoom operations for a smoothly rendered display.Static rendering mode - Features will only update between zoom and pan operations in a retained mode. -
Method Summary
Modifier and TypeMethodDescriptionstatic FeatureLayer.RenderingMode
Returns the enum constant of this class with the specified name.static FeatureLayer.RenderingMode[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
AUTOMATIC
The rendering mode for the layer will be automatically chosen based on the geometry type andRenderer
.- Since:
- 100.2.0
-
STATIC
Static rendering mode - Features will only update between zoom and pan operations in a retained mode. This mode is good, for example, for complex geometries or features rendered with cartographic quality symbology. It may also be suited for rendering features when low end graphics hardware is used.- Since:
- 100.2.0
-
DYNAMIC
Dynamic rendering mode - Features will be updated during pan and zoom operations for a smoothly rendered display. This mode is not supported by allRenderer
s. AHeatMapRenderer
is an example of a renderer which does not support dynamic rendering mode.- Since:
- 100.2.0
-
-
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
-