Package com.luciad.format.asterix
Enum Class TLcdASTERIXLiveModelDecoder.LiveDecodingStrategy
java.lang.Object
java.lang.Enum<TLcdASTERIXLiveModelDecoder.LiveDecodingStrategy>
com.luciad.format.asterix.TLcdASTERIXLiveModelDecoder.LiveDecodingStrategy
- All Implemented Interfaces:
Serializable
,Comparable<TLcdASTERIXLiveModelDecoder.LiveDecodingStrategy>
,Constable
- Enclosing class:
TLcdASTERIXLiveModelDecoder
public static enum TLcdASTERIXLiveModelDecoder.LiveDecodingStrategy
extends Enum<TLcdASTERIXLiveModelDecoder.LiveDecodingStrategy>
Enum to choose the strategy on how to decode live data.
You can choose to:
- Buffer received data and decode the data on the AWT Event Dispatch Tread
- Decode the live data directly on a background thread
- Since:
- 2018.0
-
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 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
-
DIRECT
Decode live data immediately when it becomes available, on a background thread.- See Also:
-
ON_EDT
Receive data in the background, but decode the data into theILcdModel
on the AWT Event Dispatch Thread- See Also:
-
-
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
-