Package org.apache.pig.backend.hadoop

Examples of org.apache.pig.backend.hadoop.DoubleWritable


*
*/
public class NullableDoubleWritable extends PigNullableWritable {

    public NullableDoubleWritable() {
        mValue = new DoubleWritable();
    }
View Full Code Here


    /**
     * @param value
     */
    public NullableDoubleWritable(double value) {
        mValue = new DoubleWritable(value);
    }
View Full Code Here

TOP

Related Classes of org.apache.pig.backend.hadoop.DoubleWritable

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.