Class BrowseResults<T extends Result>

java.lang.Object
com.inductiveautomation.ignition.common.browsing.BrowseResults<T>
All Implemented Interfaces:
Serializable

@Deprecated public class BrowseResults<T extends Result> extends Object implements Serializable
Deprecated.
Only used for serialization interop with old versions of Ignition. Has been replaced by the very similar "Results" interface that uses the modern QualityCode
See Also:
  • Constructor Details

    • BrowseResults

      public BrowseResults()
      Deprecated.
    • BrowseResults

      public BrowseResults(Collection<T> results)
      Deprecated.
    • BrowseResults

      public BrowseResults(Quality failureQuality)
      Deprecated.
  • Method Details

    • getResults

      public Collection<T> getResults()
      Deprecated.
      The results of the browse operation.
    • getTotalAvailableSize

      public int getTotalAvailableSize()
      Deprecated.
      An estimation of the total number of results that would match this browse.
    • getReturnedSize

      public int getReturnedSize()
      Deprecated.
      The number of results contained in this object. If different than getTotalAvailableSize(), only a partial browse was performed, and the continuation point should be non-null.
    • getContinuationPoint

      public String getContinuationPoint()
      Deprecated.
      A system specific object that can be used to continue the browse. Null if the browse is complete, or the system does not support browse continuation.
    • setResults

      public void setResults(Collection<T> results)
      Deprecated.
    • setTotalAvailableResults

      public void setTotalAvailableResults(int totalAvailableResults)
      Deprecated.
    • setContinuationPoint

      public void setContinuationPoint(String continuationPoint)
      Deprecated.
    • getResultQuality

      public Quality getResultQuality()
      Deprecated.
    • setResultQuality

      public void setResultQuality(Quality value)
      Deprecated.
    • toString

      public String toString()
      Deprecated.
      Overrides:
      toString in class Object
    • upgrade

      public Results<T> upgrade()
      Deprecated.
    • downgrade

      public static BrowseResults downgrade(Results newResults)
      Deprecated.