List of usage examples for java.io DataOutput writeUTF
void writeUTF(String s) throws IOException;
s
. From source file:ph.fingra.hadoop.mapred.parts.distribution.domain.LanguageKey.java
@Override public void write(DataOutput out) throws IOException { out.writeUTF(this.appkey); out.writeUTF(this.language); out.writeUTF(this.token); out.writeUTF(this.session); }
From source file:ph.fingra.hadoop.mapred.parts.distribution.domain.OsversionKey.java
@Override public void write(DataOutput out) throws IOException { out.writeUTF(this.appkey); out.writeUTF(this.osversion); out.writeUTF(this.token); out.writeUTF(this.session); }
From source file:ph.fingra.hadoop.mapred.parts.distribution.domain.ResolutionKey.java
@Override public void write(DataOutput out) throws IOException { out.writeUTF(this.appkey); out.writeUTF(this.resolution); out.writeUTF(this.token); out.writeUTF(this.session); }
From source file:ph.fingra.hadoop.mapred.parts.performance.domain.TokenfreqHourKey.java
@Override public void write(DataOutput out) throws IOException { out.writeUTF(this.appkey); out.writeUTF(this.token); out.writeUTF(this.utctime); out.writeUTF(this.session); }
From source file:com.brighttag.kairosdb.TridentDataPoint.java
@Override public void writeValueToBuffer(DataOutput buffer) throws IOException { buffer.writeUTF(value); }
From source file:org.pivotal.customer.versonix.support.PaxReserveType.java
@Override public void toData(DataOutput out) throws IOException { out.writeUTF(id); out.writeBoolean(linked); }
From source file:ph.fingra.hadoop.mapred.parts.component.domain.ComponentAppversionKey.java
@Override public void write(DataOutput out) throws IOException { out.writeUTF(this.appkey); out.writeUTF(this.componentkey); out.writeUTF(this.appversion); out.writeUTF(this.token); out.writeUTF(this.session); }
From source file:ph.fingra.hadoop.mapred.parts.component.domain.ComponentCountryKey.java
@Override public void write(DataOutput out) throws IOException { out.writeUTF(this.appkey); out.writeUTF(this.componentkey); out.writeUTF(this.country); out.writeUTF(this.token); out.writeUTF(this.session); }
From source file:ph.fingra.hadoop.mapred.parts.component.domain.ComponentDeviceKey.java
@Override public void write(DataOutput out) throws IOException { out.writeUTF(this.appkey); out.writeUTF(this.componentkey); out.writeUTF(this.device); out.writeUTF(this.token); out.writeUTF(this.session); }
From source file:ph.fingra.hadoop.mapred.parts.component.domain.ComponentLanguageKey.java
@Override public void write(DataOutput out) throws IOException { out.writeUTF(this.appkey); out.writeUTF(this.componentkey); out.writeUTF(this.language); out.writeUTF(this.token); out.writeUTF(this.session); }