Enum Class TLspPaintGroupsChangedEvent.Type
java.lang.Object
java.lang.Enum<TLspPaintGroupsChangedEvent.Type>
com.luciad.view.lightspeed.layer.paintgroup.TLspPaintGroupsChangedEvent.Type
- All Implemented Interfaces:
Serializable
,Comparable<TLspPaintGroupsChangedEvent.Type>
,Constable
- Enclosing class:
TLspPaintGroupsChangedEvent
Indicates the type of change in a
TLspPaintGroupsChangedEvent
.- Since:
- 2012.0
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionAll objects and paint groups may have changed.All objects and paint groups have been removed.The paint groups or objects in them have changed. -
Method Summary
Modifier and TypeMethodDescriptionReturns the enum constant of this class with the specified name.static TLspPaintGroupsChangedEvent.Type[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
CHANGED
The paint groups or objects in them have changed. The exact changes are specified in the event. -
ALL_OBJECTS_REMOVED
All objects and paint groups have been removed. -
ALL_OBJECTS_CHANGED
All objects and paint groups may have changed.
-
-
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
-