Example usage for org.apache.hadoop.typedbytes TypedBytesInput readInt

List of usage examples for org.apache.hadoop.typedbytes TypedBytesInput readInt

Introduction

In this page you can find the example usage for org.apache.hadoop.typedbytes TypedBytesInput readInt.

Prototype

public int readInt() throws IOException 

Source Link

Document

Reads the integer following a Type.INT code.

Usage

From source file:fm.last.pigtail.storage.TypedBytesSequenceFileLoader.java

License:Apache License

@Override
public Integer bytesToInteger(byte[] b) throws IOException {
    ByteArrayInputStream bais = new ByteArrayInputStream(b);
    DataInputStream dis = new DataInputStream(bais);
    TypedBytesInput tbin = TypedBytesInput.get(dis);
    if (tbin.readType() != org.apache.hadoop.typedbytes.Type.INT) {
        throw new FrontendException("Type code does not correspond to int.");
    }//from  w  w w  . j  a v a  2 s .  c  o m
    return tbin.readInt();
}