Example usage for org.apache.hadoop.io Writable interface-usage

List of usage examples for org.apache.hadoop.io Writable interface-usage

Introduction

In this page you can find the example usage for org.apache.hadoop.io Writable interface-usage.

Usage

From source file com.phantom.hadoop.examples.terasort.Unsigned16.java

/**
 * An unsigned 16 byte integer class that supports addition, multiplication, and
 * left shifts.
 */
class Unsigned16 implements Writable {
    private long hi8;

From source file com.pivotal.gfxd.demo.mapreduce.LoadAverageModel.java

/**
 * @author William Markito
 */
public class LoadAverageModel implements Writable {
    private int house_id;
    private int household_id;

From source file com.pivotal.gfxd.demo.mapreduce.LoadKey.java

/**
 * @author William Markito
 */
public class LoadKey implements Writable {
    private int household_id;
    private int plug_id;

From source file com.placeiq.piqconnect.BlockWritable.java

public class BlockWritable implements Writable {

    private static final int END_OF_LIST = -1;

    public static enum TYPE {
        MATRIX(0), VECTOR_INITIAL(1), VECTOR_FINAL(2), VECTOR_INCOMPLETE(3);

From source file com.raysmond.wiki.writable.ArrayListWritable.java

/**
 * <p>
 * Writable extension of a Java ArrayList. Elements in the list must be homogeneous and must
 * implement Hadoop's Writable interface.
 * </p>
 *

From source file com.ricemap.spateDB.core.GlobalIndex.java

/**
 * A very simple spatial index that provides some spatial operations based on an
 * array storage.
 * 
 * @author tonyren, Ahmed Eldawy
 * 

From source file com.ricemap.spateDB.core.RTree.java

/**
 * An RTree loaded in bulk and never changed after that. It cannot by
 * dynamically manipulated by either insertion or deletion. It only works with
 * 2-dimensional objects (keys).
 * 
 * @author tonyren, eldawy

From source file com.ricemap.spateDB.mapred.PairWritable.java

/**A class that stores a pair of objects where both are writable*/
public class PairWritable<T extends Writable> implements Writable {
    public T first;
    public T second;

    public PairWritable() {

From source file com.ricemap.spateDB.shape.Shape.java

/**
 * A general 3D shape.
 * @author tonyren, aseldawy, t0nyren
 *
 */
public interface Shape extends Writable, Cloneable, TextSerializable {

From source file com.ricemap.spateDB.util.ImageWritable.java

/**
 * An in-memory image that can be used with MapReduce
 * @author tonyren, eldawy
 *
 */
public class ImageWritable implements Writable {