Enum Class ELspQualityHint

java.lang.Object
java.lang.Enum<ELspQualityHint>
com.luciad.view.lightspeed.ELspQualityHint
All Implemented Interfaces:
Serializable, Comparable<ELspQualityHint>, Constable

public enum ELspQualityHint extends Enum<ELspQualityHint>
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:
  • Enum Constant Details

    • FASTEST

      public static final ELspQualityHint FASTEST
      Indicates that the painter should choose the highest performance code path.
    • NICEST

      public static final ELspQualityHint NICEST
      Indicates that the painter should choose the highest quality (or most correct) code path.
    • AUTOMATIC

      public static final ELspQualityHint 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

      public static ELspQualityHint[] 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

      public static ELspQualityHint valueOf(String name)
      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 name
      NullPointerException - if the argument is null