Package org.apache.poi.hsmf.datatypes.PropertyValue

Examples of org.apache.poi.hsmf.datatypes.PropertyValue.FloatPropertyValue


            }
            else if (type == Types.LONG_LONG) {
                propVal = new LongLongPropertyValue(prop, flags, data);
            }
            else if (type == Types.FLOAT) {
                propVal = new FloatPropertyValue(prop, flags, data);
            }
            else if (type == Types.DOUBLE) {
                propVal = new DoublePropertyValue(prop, flags, data);
            }
            else if (type == Types.CURRENCY) {
View Full Code Here

TOP

Related Classes of org.apache.poi.hsmf.datatypes.PropertyValue.FloatPropertyValue

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.