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.compiler.bulkloader.testing.model.Ex2.java

/**
 * ex2?
 */
@ColumnOrder(value = { "SID", "VALUE", "STRING" })
@DataModelKind("DMDL")
@ModelInputLocation(Ex2Input.class)

From source file com.asakusafw.compiler.bulkloader.testing.model.MockErrorModel.java

/**
 * mock_error_model?
 */
@ColumnOrder(value = { "A", "B", "C", "D", "E" })
@DataModelKind("DMDL")
@ModelInputLocation(MockErrorModelInput.class)

From source file com.asakusafw.compiler.bulkloader.testing.model.MockTableModel.java

/**
 * mock_table_model?
 */
@ColumnOrder(value = { "A", "B", "C" })
@DataModelKind("DMDL")
@ModelInputLocation(MockTableModelInput.class)

From source file com.asakusafw.compiler.bulkloader.testing.model.MockUnionModel.java

/**
 * mock_union_model?
 */
@ColumnOrder(value = { "A", "B", "C", "D", "X" })
@DataModelKind("DMDL")
@ModelInputLocation(MockUnionModelInput.class)

From source file com.asakusafw.compiler.bulkloader.testing.model.SystemColumns.java

/**
 * system_columns?
 */
@ColumnOrder(value = { "SID" })
@DataModelKind("DMDL")
@ModelInputLocation(SystemColumnsInput.class)

From source file com.asakusafw.compiler.directio.hive.testing.MockDataModel.java

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

    private final IntOption key = new IntOption();

From source file com.asakusafw.compiler.directio.testing.model.Line.java

/**
 * A projective data model interface that represents line.
 */
@DataModelKind("DMDL")
@PropertyOrder({ "value", "first", "position", "length" })
public interface Line extends Writable {

From source file com.asakusafw.compiler.directio.testing.model.Line1.java

/**
 * A data model class that represents line1.
 */
@DataModelKind("DMDL")
@PropertyOrder({ "value", "first", "position", "length" })
public class Line1 implements DataModel<Line1>, Line, Writable {

From source file com.asakusafw.compiler.directio.testing.model.Line2.java

/**
 * A data model class that represents line2.
 */
@DataModelKind("DMDL")
@PropertyOrder({ "value", "first", "position", "length" })
public class Line2 implements DataModel<Line2>, Line, Writable {

From source file com.asakusafw.compiler.fileio.model.Ex1.java

/**
 * ex1?
 */
@DataModelKind("DMDL")
@ModelInputLocation(Ex1Input.class)
@ModelOutputLocation(Ex1Output.class)