Class BrowseResults<T extends Result>
- java.lang.Object
- 
- com.inductiveautomation.ignition.common.browsing.BrowseResults<T>
 
- 
- All Implemented Interfaces:
- java.io.Serializable
 
 @Deprecated public class BrowseResults<T extends Result> extends java.lang.Object implements java.io.SerializableDeprecated.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:
- Serialized Form
 
- 
- 
Constructor SummaryConstructors Constructor Description BrowseResults()Deprecated.BrowseResults(Quality failureQuality)Deprecated.BrowseResults(java.util.Collection<T> results)Deprecated.
 - 
Method SummaryAll Methods Static Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description static BrowseResultsdowngrade(Results newResults)Deprecated.java.lang.StringgetContinuationPoint()Deprecated.A system specific object that can be used to continue the browse.QualitygetResultQuality()Deprecated.java.util.Collection<T>getResults()Deprecated.The results of the browse operation.intgetReturnedSize()Deprecated.The number of results contained in this object.intgetTotalAvailableSize()Deprecated.An estimation of the total number of results that would match this browse.voidsetContinuationPoint(java.lang.String continuationPoint)Deprecated.voidsetResultQuality(Quality value)Deprecated.voidsetResults(java.util.Collection<T> results)Deprecated.voidsetTotalAvailableResults(int totalAvailableResults)Deprecated.java.lang.StringtoString()Deprecated.Results<T>upgrade()Deprecated.
 
- 
- 
- 
Method Detail- 
getResultspublic java.util.Collection<T> getResults() Deprecated.The results of the browse operation.
 - 
getTotalAvailableSizepublic int getTotalAvailableSize() Deprecated.An estimation of the total number of results that would match this browse.
 - 
getReturnedSizepublic int getReturnedSize() Deprecated.The number of results contained in this object. If different thangetTotalAvailableSize(), only a partial browse was performed, and the continuation point should be non-null.
 - 
getContinuationPointpublic java.lang.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.
 - 
setResultspublic void setResults(java.util.Collection<T> results) Deprecated.
 - 
setTotalAvailableResultspublic void setTotalAvailableResults(int totalAvailableResults) Deprecated.
 - 
setContinuationPointpublic void setContinuationPoint(java.lang.String continuationPoint) Deprecated.
 - 
getResultQualitypublic Quality getResultQuality() Deprecated.
 - 
setResultQualitypublic void setResultQuality(Quality value) Deprecated.
 - 
toStringpublic java.lang.String toString() Deprecated.- Overrides:
- toStringin class- java.lang.Object
 
 - 
downgradepublic static BrowseResults downgrade(Results newResults) Deprecated.
 
- 
 
-