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.runtime.io.util.WritableUnion.java

/**
 * An abstract implementation of union object.
 * @since 0.2.5
 */
public class WritableUnion implements Union, Writable {

From source file com.asakusafw.runtime.stage.collector.WritableSlot.java

/**
 * A data slot.
 * @see SortableSlot
 */
public class WritableSlot implements Writable {

From source file com.asakusafw.runtime.stage.input.StageInputSplit.java

/**
 * An implementation of Hadoop {@link InputSplit} for handling multiple Map operations.
 * @since 0.1.0
 * @version 0.2.6
 */
public class StageInputSplit extends InputSplit implements Writable, Configurable {

From source file com.asakusafw.testdriver.loader.MockDataModel.java

@SuppressWarnings({ "deprecation", "javadoc" })
public final class MockDataModel implements DataModel<MockDataModel>, Writable {

    private final IntOption key = new IntOption();

    private final DecimalOption sort = new DecimalOption();

From source file com.asakusafw.testdriver.mapreduce.mock.MockData.java

/**
 * Mock data model class.
 * @since 0.1.0
 * @version 0.3.0
 */
public class MockData implements DataModel<MockData>, Writable {

From source file com.asakusafw.testdriver.testing.model.Naming.java

/**
 * A data model class that represents naming.
 */
@DataModelKind("DMDL")
@PropertyOrder({ "a", "very_very_very_long_name" })
public class Naming implements DataModel<Naming>, Writable {

From source file com.asakusafw.testdriver.testing.model.Ordered.java

/**
 * A data model class that represents ordered.
 */
@DataModelKind("DMDL")
@PropertyOrder({ "first", "second_property", "a", "last" })
public class Ordered implements DataModel<Ordered>, Writable {

From source file com.asakusafw.testdriver.testing.model.Projection.java

/**
 * A projective data model interface that represents projection.
 */
@DataModelKind("DMDL")
@PropertyOrder({ "data" })
public interface Projection extends Writable {

From source file com.asakusafw.testdriver.testing.model.Simple.java

/**
 * A data model class that represents simple.
 */
@DataModelKind("DMDL")
@PropertyOrder({ "data" })
public class Simple implements DataModel<Simple>, Projection, Writable {

From source file com.asakusafw.testdriver.testing.model.Variety.java

/**
 * A data model class that represents variety.
 */
@DataModelKind("DMDL")
@PropertyOrder({ "p_int", "p_long", "p_byte", "p_short", "p_decimal", "p_float", "p_double", "p_text", "p_boolean",
        "p_date", "p_datetime" })