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

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

Introduction

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

Usage

From source file com.cloudera.impala.hive.executor.ImpalaBytesWritable.java

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

From source file com.lightboxtechnologies.spectrum.HexWritable.java

/**
 * @author Joel Uckelman
 */
public class HexWritable extends BytesWritable {
    /** @inheritDoc */
    public HexWritable() {

From source file edu.uci.ics.biggraph.io.BytesWritable.java

/**
 * Writable for Bytes values.
 */
public class BytesWritable extends org.apache.hadoop.io.BytesWritable implements WritableSizable {

    public BytesWritable(byte[] value) {

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

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

From source file org.mrgeo.vector.mrsvector.VectorTileWritable.java

public class VectorTileWritable extends BytesWritable {

    public VectorTileWritable() {
    }

    public VectorTileWritable(final byte[] bytes) {

From source file org.msgpack.hadoop.io.MessagePackWritable.java

/**
 * A Hadoop Writable wrapper for MessagePack (untyped).
 */
public class MessagePackWritable extends BytesWritable {
    private static final Log LOG = LogFactory.getLog(MessagePackWritable.class.getName());

From source file shark.io.MutableBytesWritable.java

/**
 * A byte sequence that is usable as a key or value.
 * It is resizable and distinguishes between the size of the seqeunce and
 * the current capacity. The hash function is the front of the md5 of the
 * buffer. The sort order is the same as memcmp.
 */