Package com.luciad.view.lightspeed.layer
Enum Class TLspPaintState
- All Implemented Interfaces:
Serializable
,Comparable<TLspPaintState>
,Constable
Enumeration used to distinguish between selected, edited and all other
object states. Each paint state has a
sort order
property which is used by TLspPaintingOrder
to determine in which order objects are painted for each of the paint states.- 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
-
Method Summary
Modifier and TypeMethodDescriptionint
static TLspPaintState
Returns the enum constant of this class with the specified name.static TLspPaintState[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
REGULAR
Indicates that deselected objects should be painted. -
SELECTED
Indicates that selected objects should be painted. -
EDITED
Indicates that edited objects should be painted.
-
-
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
-
getSortOrder
public int getSortOrder()- Returns:
- the sort order property of this paint state
-