Package tcg.scada.cos

Examples of tcg.scada.cos.CosDpValueTypeEnum


    {
      return false;
    }

    // only number/unsigned as allowed as source point
    CosDpValueTypeEnum dataType = inDataPoint.getInternalDataType();
    if (dataType != CosDpValueTypeEnum.TypeNumber
        && dataType != CosDpValueTypeEnum.TypeUnsigned)
    {
      return false;
    }
View Full Code Here


      while (rs.next())
      {
        // add logging context
        NDC.push(rs.getString(3));
        // create the datapoint
        CosDpValueTypeEnum dataType = DataPoint
            .convString2CosDpValueTypeEnum(rs.getString(1));
        EDataPointType type = EDataPointType.from_string(rs
            .getString(4));
        // validation
        if (type == null || dataType == null)
View Full Code Here

TOP

Related Classes of tcg.scada.cos.CosDpValueTypeEnum

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.