Java Code Examples for org.apache.hadoop.io.ShortWritable#get()
The following examples show how to use
org.apache.hadoop.io.ShortWritable#get() .
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: CustomWritable.java From pxf with Apache License 2.0 | 4 votes |
@Override public void readFields(DataInput in) throws IOException { // 0. Timestamp Text tms_text = new Text(tms); tms_text.readFields(in); tms = tms_text.toString(); // 1. integers IntWritable intw = new IntWritable(); for (int i = 0; i < num.length; i++) { intw.readFields(in); num[i] = intw.get(); } intw.readFields(in); int1 = intw.get(); intw.readFields(in); int2 = intw.get(); // 2. strings Text txt = new Text(); for (int i = 0; i < strings.length; i++) { txt.readFields(in); strings[i] = txt.toString(); } txt.readFields(in); st1 = txt.toString(); // 3. doubles DoubleWritable dw = new DoubleWritable(); for (int i = 0; i < dubs.length; i++) { dw.readFields(in); dubs[i] = dw.get(); } dw.readFields(in); db = dw.get(); // 4. floats FloatWritable fw = new FloatWritable(); for (int i = 0; i < fts.length; i++) { fw.readFields(in); fts[i] = fw.get(); } fw.readFields(in); ft = fw.get(); // 5. longs LongWritable lw = new LongWritable(); for (int i = 0; i < lngs.length; i++) { lw.readFields(in); lngs[i] = lw.get(); } lw.readFields(in); lng = lw.get(); // 6. booleans BooleanWritable bw = new BooleanWritable(); for (int i = 0; i < bools.length; ++i) { bw.readFields(in); bools[i] = bw.get(); } bw.readFields(in); bool = bw.get(); // 7. shorts ShortWritable sw = new ShortWritable(); for (int i = 0; i < shrts.length; ++i) { sw.readFields(in); shrts[i] = sw.get(); } sw.readFields(in); shrt = sw.get(); // 8. bytes BytesWritable btsw = new BytesWritable(); btsw.readFields(in); byte[] buffer = btsw.getBytes(); bts = new byte[btsw.getLength()]; for (int i = 0; i < btsw.getLength(); i++) { bts[i] = buffer[i]; } }
Example 2
Source File: FSImageSerialization.java From hadoop with Apache License 2.0 | 4 votes |
/** read short value */ static short readShort(DataInput in) throws IOException { ShortWritable uShort = TL_DATA.get().U_SHORT; uShort.readFields(in); return uShort.get(); }
Example 3
Source File: FSImageSerialization.java From big-c with Apache License 2.0 | 4 votes |
/** read short value */ static short readShort(DataInput in) throws IOException { ShortWritable uShort = TL_DATA.get().U_SHORT; uShort.readFields(in); return uShort.get(); }