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

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

Introduction

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

Usage

From source file CompositeKey_mc.java

/**
 *
 * @author Zhuang Zhuo <zhuo.z@husky.neu.edu>
 */
public class CompositeKey_mc implements WritableComparable<CompositeKey_mc> {

From source file CompositeKey_wd.java

/**
 *
 * @author Zhuang Zhuo <zhuo.z@husky.neu.edu>
 */
public class CompositeKey_wd implements WritableComparable<CompositeKey_wd> {

From source file PairOfStrings.java

/**
 * WritableComparable representing a pair of Strings. The elements in the pair
 * are referred to as the left and right elements. The natural sort order is:
 * first by the left element, and then by the right element.
 * 
 * @author Jimmy Lin

From source file BooleanWritable.java

/** 
 * A WritableComparable for booleans. 
 */
public class BooleanWritable implements WritableComparable {
    private boolean value;

From source file PairOfLongs.java

/**
 * WritableComparable representing a pair of longs. The elements in the pair are
 * referred to as the left and right elements. The natural sort order is: first
 * by the left element, and then by the right element.
 * 
 * @author Jimmy Lin

From source file AllLab_Skeleton.Lab2.CompositeKeyWritable.java

/**
 *
 * @author pooja
 */
public class CompositeKeyWritable implements Writable, WritableComparable<CompositeKeyWritable> {
    private String deptNo;

From source file aosivt.HaLongWritable.java

/**
 *
 * @author alex
 */
@InterfaceAudience.Public
@InterfaceStability.Stable

From source file assignment1.WordCount.LinkedSort.LinkedSort.java

class WordAndLength implements WritableComparable {
    public String word;
    public int length;

    public WordAndLength() {
    }

From source file at.illecker.hama.hybrid.examples.matrixmultiplication.util.MatrixColMessage.java

public class MatrixColMessage implements WritableComparable<MatrixColMessage> {
    private int colIndex;
    private DoubleVector colValues = null;

    public MatrixColMessage() {
        super();

From source file at.illecker.hama.hybrid.examples.matrixmultiplication.util.MatrixRowMessage.java

public class MatrixRowMessage implements WritableComparable<MatrixRowMessage> {
    private int rowIndex;
    private DoubleVector rowValues = null;

    public MatrixRowMessage() {
        super();