changevalueobjectpropertiesscripts

This is an old revision of the document!


These examples demonstrate how to change ValueObject properties. ValueObjects (for example, LongValueObject,DoubleValueObject,and StringValueObject) all have these properties:

  • Value
  • Quality (0=good quality, all others are various levels of not good)
  • Timestamp
  • Color (usually null)
  • Locale
  • AlwaysSend (usually false, so the connector is in control of whether to pass the data or not)

Change the data quality of a value from good to bad

//this changes the data quality of the incoming ValueObject to bad quality
var ValueObjectInterface = Java.type("com.ergotech.valueobjects.ValueObjectInterface");
 
vo=incomingValue;
vo.setQuality(ValueObjectInterface.QUALITY_BAD); //bad quality is 2000
vo;
  • changevalueobjectpropertiesscripts.1589432505.txt.gz
  • Last modified: 2020/05/14 00:01
  • by wikiadmin