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

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

Introduction

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

Usage

From source file edu.umn.cs.spatialHadoop.io.Text2.java

/**
 * A modified version of Text which is optimized for appends.
 * @author eldawy
 *
 */
public class Text2 extends Text implements TextSerializable {

From source file hivemall.utils.hadoop.Text2.java

/**
 * {@link Text} that internally uses given bytes avoiding copies.
 */
public final class Text2 extends Text {

    public Text2(@Nonnull byte[] b) {

From source file hivemall.utils.hadoop.Text3.java

/**
 * {@link Text} passed to {@link UDTFCollector#collect(Object)}. It releases a given byte array
 * after copying the byte array.
 */
public final class Text3 extends Text {

From source file org.apache.impala.hive.executor.ImpalaTextWritable.java

/**
 * Impala writable type that implements the Text interface. The data marshalling is
 * handled by the underlying {@link ImpalaStringWritable} object.
 */
public class ImpalaTextWritable extends Text {
    private final ImpalaStringWritable string_;

From source file org.apache.sysml.runtime.instructions.spark.data.SerText.java

/**
 * Wrapper for Text in order to make it serializable as required for
 * shuffle in spark instructions.
 * 
 */
public class SerText extends Text implements Serializable {

From source file org.chombo.util.TextTuple.java

/**
 * Tuple encoded in Text
 * @author pranab
 *
 */
public class TextTuple extends Text {