Package com.luciad.view.lightspeed
Enum Class ELspQualityHint
- All Implemented Interfaces:
Serializable
,Comparable<ELspQualityHint>
,Constable
Enumeration of quality hints, which indicate a user preference towards
either high performance (FASTEST) or correctness/visual quality
(NICEST) for data painted in an ILspView.
- Since:
- 2012.1
- 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 user has no preference regarding performance or visual quality and is satisfied with the painter's default settings.Indicates that the painter should choose the highest performance code path.Indicates that the painter should choose the highest quality (or most correct) code path. -
Method Summary
Modifier and TypeMethodDescriptionstatic ELspQualityHint
Returns the enum constant of this class with the specified name.static ELspQualityHint[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
FASTEST
Indicates that the painter should choose the highest performance code path. -
NICEST
Indicates that the painter should choose the highest quality (or most correct) code path. -
AUTOMATIC
Indicates that the user has no preference regarding performance or visual quality and is satisfied with the painter's default settings.
-
-
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
-