Package cern.dip
Interface DipQuality
-
public interface DipQuality
interface to encapsulate data quality flags
-
-
Field Summary
Fields Modifier and Type Field Description static int
DIP_QUALITY_BAD
Indicates that data can not be used.static int
DIP_QUALITY_GOOD
Indicates that data can definitely be trusted.static int
DIP_QUALITY_UNCERTAIN
Indicates that the last update attempt by the publisher had failed (the publication data source was not accessible).static int
DIP_QUALITY_UNINITIALIZED
Indicates the DataObject contains uninitialised data.
-
-
-
Field Detail
-
DIP_QUALITY_UNINITIALIZED
static final int DIP_QUALITY_UNINITIALIZED
Indicates the DataObject contains uninitialised data.
-
DIP_QUALITY_BAD
static final int DIP_QUALITY_BAD
Indicates that data can not be used. This only occurs when the publication is uninitialised.
-
DIP_QUALITY_GOOD
static final int DIP_QUALITY_GOOD
Indicates that data can definitely be trusted. The last update attempt by the publisher was successfull and the value(s) that this quality corresponds to are the most current available.
-
DIP_QUALITY_UNCERTAIN
static final int DIP_QUALITY_UNCERTAIN
Indicates that the last update attempt by the publisher had failed (the publication data source was not accessible). The value(s) this quality corresponds to is the last known good value - however, the value can no longer be considered up-to-date.
-
-