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 cn.edu.hfut.dmic.webcollectorcluster.model.Content.java

/**
 *
 * @author hu
 */
public class Content implements Writable {

From source file cn.edu.hfut.dmic.webcollectorcluster.model.CrawlDatum.java

/**
 * ?WebCollectorurl???
 * ??
 * @author hu
 */
public class CrawlDatum implements Writable {

From source file cn.edu.hfut.dmic.webcollectorcluster.model.Link.java

/**
 * ?
 * @author hu
 */
public class Link implements Writable {

From source file cn.edu.hfut.dmic.webcollectorcluster.parser.ParseData.java

/**
 *
 * @author hu
 */
public class ParseData implements Writable {

From source file cn.edu.hfut.dmic.webcollectorcluster.parser.ParseResult.java

/**
 *
 * @author hu
 */
public class ParseResult implements Writable {

From source file cn.edu.hfut.dmic.webcollectorcluster.parser.ParseText.java

/**
 * ???
 * @author hu
 */
public class ParseText implements Writable {

From source file cn.edu.jnu.ie.backend.NutchDocument.java

/** A {@link NutchDocument} is the unit of indexing.*/
public class NutchDocument implements Writable, Iterable<Entry<String, NutchField>> {

    public static final byte VERSION = 2;

    private Map<String, NutchField> fields;

From source file cn.edu.jnu.ie.backend.NutchField.java

/**
 * This class represents a multi-valued field with a weight. 
 * Values are arbitrary objects.
 */
public class NutchField implements Writable {
    private float weight;

From source file co.cask.cdap.data.stream.StreamInputSplit.java

/**
 * Represents a mapreduce InputSplit for stream.
 */
public final class StreamInputSplit extends FileSplit implements Writable {

    private Path indexPath;

From source file co.cask.cdap.examples.purchase.Purchase.java

/**
 * This class represents a purchase made by a customer. It is a very simple class and only contains
 * the name of the customer, the name of the product, product quantity, price paid, and the purchase time.
 */
public class Purchase implements Writable {