Package net.sf.cb2java.data

Examples of net.sf.cb2java.data.FloatingData


        return precision.bytes;
    }

    public Data create()
    {
        return new FloatingData(this);
    }
View Full Code Here


        return new FloatingData(this);
    }

    public Data parse(byte[] input)
    {
        FloatingData data = (FloatingData) create();
       
        data.setValue(conversion.fromBytes(input, precision));
       
        return data;
    }
View Full Code Here

TOP

Related Classes of net.sf.cb2java.data.FloatingData

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.