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 com.asakusafw.testdriver.windgate.emulation.testing.model.Line.java

/**
 * Data model for testing.
 */
@DataModelKind("DMDL")
@SuppressWarnings("deprecation")
public class Line implements DataModel<Line>, Writable {

From source file com.asakusafw.testdriver.windgate.inprocess.model.Line.java

/**
 * Data model for testing.
 */
@DataModelKind("DMDL")
@SuppressWarnings("deprecation")
public class Line implements DataModel<Line>, Writable {

From source file com.awcoleman.BouncyCastleGenericCDRHadoopWithWritable.CallDetailRecord.java

/**
 * 
 * A Writable container class for a "Simple Generic CDR".
 * 
 * @author awcoleman
 * @version 20140702

From source file com.bah.culvert.adapter.DatabaseAdapter.java

/**
 * A connection to a database. Subclasses of this object are used to connect to
 * a database.
 */
public abstract class DatabaseAdapter extends BaseConfigurable implements Configurable, Writable {

From source file com.bah.culvert.adapter.TableAdapter.java

/**
 * Connect to a table. This is the top level interface that used to run a query.
 * 
 * @see HBaseTableAdapter
 */
public abstract class TableAdapter extends BaseConfigurable implements Closeable, Writable {

From source file com.bah.culvert.constraints.Constraint.java

/**
 * Constraints are used to implement various types of relational algebra.
 * <p>
 * They may be used to describe set operations, joins, selection, and
 * projection, or any other operations one wants to implement in the Culvert
 * framework.

From source file com.bah.culvert.constraints.filter.Filter.java

/**
 * Apply a filter (transformation, acceptance, etc) to a given key value.
 * 
 */
public class Filter implements Writable {

From source file com.bah.culvert.constraints.IndexRangeConstraint.java

/**
 * A constraint that only returns results over the specified indexes.
 */
public final class IndexRangeConstraint extends Constraint implements Writable {

    private CRange range = new CRange();

From source file com.bah.culvert.constraints.write.Handler.java

/**
 * Apply a filter (transformation, acceptance, etc) to a given key value.
 */
public class Handler implements Writable {

    /**

From source file com.bah.culvert.data.index.Index.java

/**
 * An index on a table. Index implementations may be instantiated multiple times
 * over a table or even a single column in a table. This promotes code reuse.
 * <p>
 * Indices are uniquely identified by their name. This promotes a functional
 * programming style so that multiple instantiations can logically refer to the