Example usage for org.apache.hadoop.io BinaryComparable subclass-usage

List of usage examples for org.apache.hadoop.io BinaryComparable subclass-usage

Introduction

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

Usage

From source file kogiri.common.hadoop.io.datatypes.MultiFileIntWritable.java

/**
 *
 * @author iychoi
 */
public class MultiFileIntWritable extends BinaryComparable implements WritableComparable<BinaryComparable> {

From source file kogiri.common.hadoop.io.datatypes.MultiFileLongWritable.java

/**
 *
 * @author iychoi
 */
public class MultiFileLongWritable extends BinaryComparable implements WritableComparable<BinaryComparable> {

From source file libra.common.hadoop.io.datatypes.CompressedIntArrayWritable.java

/**
 *
 * @author iychoi
 */
@SuppressWarnings("cast")
public class CompressedIntArrayWritable extends BinaryComparable implements WritableComparable<BinaryComparable> {

From source file libra.common.hadoop.io.datatypes.CompressedSequenceWritable.java

/**
 *
 * @author iychoi
 */
public class CompressedSequenceWritable extends BinaryComparable implements WritableComparable<BinaryComparable> {

From source file org.apache.accumulo.core.data.ComparableBytes.java

/**
 * An array of bytes wrapped so as to extend Hadoop's <code>BinaryComparable</code> class.
 *
 * @deprecated since 1.7.0 In an attempt to clean up types in the data package that were not intended to be in public API this type was deprecated. Technically
 *             this method was not considered part of the public API in 1.6.0 and earlier, therefore it could have been deleted. However a decision was made to
 *             deprecate in order to be cautious and avoid confusion between 1.6.0 and 1.7.0.

From source file org.apache.accumulo.core.data.impl.ComparableBytes.java

/**
 * An array of bytes wrapped so as to extend Hadoop's <code>BinaryComparable</code> class.
 */
public class ComparableBytes extends BinaryComparable {

    public byte[] data;

From source file org.apache.accumulo.core.dataImpl.ComparableBytes.java

/**
 * An array of bytes wrapped so as to extend Hadoop's <code>BinaryComparable</code> class.
 */
public class ComparableBytes extends BinaryComparable {

    public byte[] data;

From source file org.apache.jena.grande.mapreduce.io.NodeWritable.java

public class NodeWritable extends BinaryComparable implements WritableComparable<BinaryComparable> {

    private Node node;
    private byte[] bytes;
    private int length;

From source file org.apache.jena.grande.mapreduce.io.QuadWritable.java

public class QuadWritable extends BinaryComparable implements WritableComparable<BinaryComparable> {

    private Quad quad;
    private byte[] bytes;
    private int length;

From source file org.apache.jena.grande.mapreduce.io.TripleWritable.java

public class TripleWritable extends BinaryComparable implements WritableComparable<BinaryComparable> {

    private Triple triple;
    private byte[] bytes;
    private int length;