Example usage for java.io DataOutput writeUTF

List of usage examples for java.io DataOutput writeUTF

Introduction

In this page you can find the example usage for java.io DataOutput writeUTF.

Prototype

void writeUTF(String s) throws IOException;

Source Link

Document

Writes two bytes of length information to the output stream, followed by the modified UTF-8 representation of every character in the string s.

Usage

From source file:ph.fingra.hadoop.mapred.parts.performance.domain.SesstimeHourKey.java

@Override
public void write(DataOutput out) throws IOException {

    out.writeUTF(this.appkey);
    out.writeUTF(this.session);
    out.writeUTF(this.utctime);
}

From source file:ph.fingra.hadoop.mapred.parts.performance.domain.TokenfreqKey.java

@Override
public void write(DataOutput out) throws IOException {

    out.writeUTF(this.appkey);
    out.writeUTF(this.token);
    out.writeUTF(this.session);
}

From source file:ph.fingra.hadoop.mapred.parts.prerole.domain.ComponentNewuserKey.java

@Override
public void write(DataOutput out) throws IOException {

    out.writeUTF(this.appkey);
    out.writeUTF(this.componentkey);
    out.writeUTF(this.token);
}

From source file:ph.fingra.hadoop.mapred.parts.component.domain.ComponentHourSessionKey.java

@Override
public void write(DataOutput out) throws IOException {

    out.writeUTF(this.appkey);
    out.writeUTF(this.componentkey);
    out.writeUTF(this.session);
    out.writeUTF(this.localtime);
}

From source file:ph.fingra.hadoop.mapred.parts.component.domain.ComponentTokenfreqKey.java

@Override
public void write(DataOutput out) throws IOException {

    out.writeUTF(this.appkey);
    out.writeUTF(this.componentkey);
    out.writeUTF(this.token);
    out.writeUTF(this.session);
}

From source file:ph.fingra.hadoop.mapred.parts.distribution.domain.AppversionKey.java

@Override
public void write(DataOutput out) throws IOException {

    out.writeUTF(this.appkey);
    out.writeUTF(this.appversion);
    out.writeUTF(this.token);
    out.writeUTF(this.session);
}

From source file:ph.fingra.hadoop.mapred.parts.distribution.domain.CountryHourSessionKey.java

@Override
public void write(DataOutput out) throws IOException {

    out.writeUTF(this.appkey);
    out.writeUTF(this.country);
    out.writeUTF(this.session);
    out.writeUTF(this.localtime);
}

From source file:ph.fingra.hadoop.mapred.parts.distribution.domain.CountryKey.java

@Override
public void write(DataOutput out) throws IOException {

    out.writeUTF(this.appkey);
    out.writeUTF(this.country);
    out.writeUTF(this.token);
    out.writeUTF(this.session);
}

From source file:ph.fingra.hadoop.mapred.parts.distribution.domain.CountrySesstimeKey.java

@Override
public void write(DataOutput out) throws IOException {

    out.writeUTF(this.appkey);
    out.writeUTF(this.country);
    out.writeUTF(this.session);
    out.writeUTF(this.utctime);
}

From source file:ph.fingra.hadoop.mapred.parts.distribution.domain.DeviceKey.java

@Override
public void write(DataOutput out) throws IOException {

    out.writeUTF(this.appkey);
    out.writeUTF(this.device);
    out.writeUTF(this.token);
    out.writeUTF(this.session);
}