Package com.luciad.view.lightspeed.layer
Enum Class ILspLayer.LayerType
- All Implemented Interfaces:
Serializable
,Comparable<ILspLayer.LayerType>
,Constable
- Enclosing interface:
ILspLayer
Provides hints about the type of a given
ILspLayer
. These hints
may be used by an ILspView
, e.g. to determine default layer
ordering or to perform certain optimizations.- Since:
- 2012.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 ConstantDescriptionIndicates that the layer contains static data which is rarely or never modified.Indicates that the layer contains data which is largely static but which may be manipulated more elaborately by the application user.Indicates that the layer contains data which is largely static but which may be manipulated by the application user.Indicates that the layer contains fully dynamic data. -
Method Summary
Modifier and TypeMethodDescriptionstatic ILspLayer.LayerType
Returns the enum constant of this class with the specified name.static ILspLayer.LayerType[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
BACKGROUND
Indicates that the layer contains static data which is rarely or never modified. Changes to the layer's visibility, its position in the view's layer hierarchy or its styling may incur a non-negligible performance cost. -
INTERACTIVE
Indicates that the layer contains data which is largely static but which may be manipulated by the application user. Examples include layers that are switched on and off frequently or layers whose styling changes often. -
EDITABLE
Indicates that the layer contains data which is largely static but which may be manipulated more elaborately by the application user. Examples include vector data which can be graphically edited. -
REALTIME
Indicates that the layer contains fully dynamic data. This is typically used for data with a temporal dimension, i.e. which changes over time even without user intervention.
-
-
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
-