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 averagerating_youtube.AverageRating_CommentCountTuple.java

/**
 *
 * @author Rajat
 */
public class AverageRating_CommentCountTuple implements Writable {

From source file babel.content.pages.MetaData.java

/**
 * Stores key-value matadata (allowing for multiple values per key).
 */
public class MetaData implements XMLPersistable, Writable {
    private static final String XML_TAG_METADATA = "MetaData";
    private static final String XML_ATTRIB_TYPE = "Type";

From source file babel.content.pages.Page.java

public class Page implements XMLPersistable, Writable {
    public static final Log LOG = LogFactory.getLog(Page.class);

    private static final String XML_TAG_PAGE = "Page";
    private static final String XML_ATTRIB_URL = "URL";

From source file babel.content.pages.PageVersion.java

/**
 * Encapsulates all information extracted per page version by a nutch crawl.
 */
public class PageVersion implements XMLPersistable, Writable {
    public static final Log LOG = LogFactory.getLog(PageVersion.class);

From source file base.Example.java

public class Example implements Writable {
    public int[] fids;
    public float[] fvals;
    public int[] labels;
    public int docid;

From source file base.PIFArray.java

public class PIFArray implements Writable {
    public Vector<PIF> pifs;

    public PIFArray() {
        pifs = new Vector<PIF>();
    }

From source file base.WeightParameter.java

public class WeightParameter implements Writable {
    public int node;
    public float[] weightvector;

    public WeightParameter() {
        clear();

From source file basic.PageRankNode.java

/**
 * Representation of a graph node for PageRank. 
 *
 * @author Jimmy Lin
 * @author Michael Schatz
 */

From source file be.ugent.intec.halvade.uploader.mapreduce.FastqRecord.java

/**
 *
 * @author dries
 */
public class FastqRecord implements Writable {
    protected String id;

From source file biglayer.ModelNode.java

/**
 * Representation of a graph node for PageRank. 
 *
 * @author Jimmy Lin
 * @author Michael Schatz
 */