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.operator.model.MockKey.java

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

From source file com.asakusafw.compiler.operator.model.MockKeyValue1.java

/**
 * A data model class that represents mock_key_value1.
 */
@DataModelKind("DMDL")
@PropertyOrder({ "key", "value" })
public class MockKeyValue1 implements DataModel<MockKeyValue1>, MockKey, MockProjection, Writable {

From source file com.asakusafw.compiler.operator.model.MockKeyValue2.java

/**
 * A data model class that represents mock_key_value2.
 */
@DataModelKind("DMDL")
@PropertyOrder({ "key", "value" })
public class MockKeyValue2 implements DataModel<MockKeyValue2>, MockKey, MockProjection, Writable {

From source file com.asakusafw.compiler.operator.model.MockProjection.java

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

From source file com.asakusafw.compiler.operator.model.MockSummarized.java

/**
 * A data model class that represents mock_summarized.
 */
@DataModelKind("DMDL")
@PropertyOrder({ "key", "count" })
@Summarized(term = @Summarized.Term(source = MockHoge.class, foldings = {

From source file com.asakusafw.compiler.windgate.testing.model.Pair.java

/**
 * A data model class that represents pair.
 */
@DataModelKind("DMDL")
@PropertyOrder({ "key", "value" })
public class Pair implements DataModel<Pair>, Writable {

From source file com.asakusafw.compiler.windgate.testing.model.Simple.java

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

From source file com.asakusafw.compiler.yaess.testing.model.Dummy.java

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

From source file com.asakusafw.dag.runtime.testing.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.dag.runtime.testing.MockKeyModel.java

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

    private final IntOption key = new IntOption();

    public MockKeyModel() {