Example usage for com.google.gwt.corp.compatibility Numbers longBitsToDouble

List of usage examples for com.google.gwt.corp.compatibility Numbers longBitsToDouble

Introduction

In this page you can find the example usage for com.google.gwt.corp.compatibility Numbers longBitsToDouble.

Prototype

public static final double longBitsToDouble(long l) 

Source Link

Usage

From source file:java.nio.DirectByteBuffer.java

License:Apache License

public final double getDouble() {
    return Numbers.longBitsToDouble(getLong());
}

From source file:java.nio.DirectByteBuffer.java

License:Apache License

public final double getDouble(int index) {
    return Numbers.longBitsToDouble(getLong(index));
}