All Downloads are FREE. Search and download functionalities are using the official Maven repository.

HslCommunication.Core.Transfer.RegularByteTransform Maven / Gradle / Ivy

Go to download

一个工业物联网的底层架构框架,专注于底层的技术通信及跨平台,跨语言通信功能,实现各种主流的PLC数据读写,实现modbus的各种协议读写等等

There is a newer version: 3.7.0
Show newest version
package HslCommunication.Core.Transfer;

public class RegularByteTransform extends ByteTransformBase
{
    public RegularByteTransform(){

    }

    public RegularByteTransform(DataFormat dataFormat){
        super(dataFormat);
    }

    public IByteTransform CreateByDateFormat( DataFormat dataFormat ) {
        RegularByteTransform transform = new RegularByteTransform(dataFormat);
        transform.setIsStringReverse(this.getIsStringReverse());
        return transform;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy