All Superinterfaces:
Localized, Serializable
All Known Implementing Classes:
BasicQuality, DataQuality

@Deprecated public interface Quality extends Localized, Serializable
Deprecated.
Needed for gateway network interop with v7, but otherwise not used.
  • Nested Class Summary

    Nested Classes
    Modifier and Type
    Interface
    Description
    static enum 
    Deprecated.
     
  • Method Summary

    Modifier and Type
    Method
    Description
    Deprecated.
    This should be a short (~ 1-2 sentences) human-readable, localized description of what situation this quality represents.
    Deprecated.
    A basic qualitative assertion of whether this "quality" represents a state that is good, bad, or unknown.
    Deprecated.
    The "Name" of a quality should be a short (~5-50 char) code that identifies this quality.
    default QualityCode
    Deprecated.
     
    default boolean
    is(Quality other)
    Deprecated.
    Basically like equals, but should only compare name and level.
    default boolean
    Deprecated.
    Quick check to see if getLevel() == Level.Good

    Methods inherited from interface com.inductiveautomation.ignition.common.i18n.Localized

    toString
  • Method Details

    • getName

      String getName()
      Deprecated.
      The "Name" of a quality should be a short (~5-50 char) code that identifies this quality. Should NOT be localized. Treat this like an ID.
    • getDescription

      LocalizedString getDescription()
      Deprecated.
      This should be a short (~ 1-2 sentences) human-readable, localized description of what situation this quality represents.
    • getLevel

      default Quality.Level getLevel()
      Deprecated.
      A basic qualitative assertion of whether this "quality" represents a state that is good, bad, or unknown.
    • isGood

      default boolean isGood()
      Deprecated.
      Quick check to see if getLevel() == Level.Good
    • is

      default boolean is(Quality other)
      Deprecated.
      Basically like equals, but should only compare name and level.
    • getQualityCode

      default QualityCode getQualityCode()
      Deprecated.