Example usage for org.apache.lucene.util SmallFloat byte315ToFloat

List of usage examples for org.apache.lucene.util SmallFloat byte315ToFloat

Introduction

In this page you can find the example usage for org.apache.lucene.util SmallFloat byte315ToFloat.

Prototype

public static float byte315ToFloat(byte b) 

Source Link

Document

byteToFloat(b, mantissaBits=3, zeroExponent=15)

Usage

From source file:org.meresco.lucene.search.join.ScoreSuperCollector.java

License:Open Source License

public float score(int key) {
    if (key < this.scores.length) {
        return SmallFloat.byte315ToFloat(this.scores[key]);
    }//from  w  w  w.  j  av a  2s  .  co m
    return 0;
}