Package com.luciad.view.gxy.asynchronous
Enum Class TLcdGXYAsynchronousPaintQueue.InterruptMode
java.lang.Object
java.lang.Enum<TLcdGXYAsynchronousPaintQueue.InterruptMode>
com.luciad.view.gxy.asynchronous.TLcdGXYAsynchronousPaintQueue.InterruptMode
- All Implemented Interfaces:
Serializable
,Comparable<TLcdGXYAsynchronousPaintQueue.InterruptMode>
,Constable
- Enclosing class:
TLcdGXYAsynchronousPaintQueue
public static enum TLcdGXYAsynchronousPaintQueue.InterruptMode
extends Enum<TLcdGXYAsynchronousPaintQueue.InterruptMode>
Enumeration of the interrupt modes.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionUsing this mode, ongoing paints will always be interrupted when a new paint job is scheduled.Using this mode, ongoing paints will only be interrupted when a new paint job is scheduled and if its contents are completely outside the view. -
Method Summary
Modifier and TypeMethodDescriptionReturns the enum constant of this class with the specified name.values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
ALWAYS
Using this mode, ongoing paints will always be interrupted when a new paint job is scheduled. -
NON_OVERLAPPING_PAINTS_ONLY
Using this mode, ongoing paints will only be interrupted when a new paint job is scheduled and if its contents are completely outside the view.
-
-
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
-