Java ByteBuffer to Double readDouble(ByteBuffer buffer)

Here you can find the source of readDouble(ByteBuffer buffer)

Description

read Double

License

LGPL

Declaration

public static double readDouble(ByteBuffer buffer) 

Method Source Code

//package com.java2s;
//License from project: LGPL 

import java.nio.ByteBuffer;

public class Main {
    public static double readDouble(ByteBuffer buffer) {
        return buffer.getDouble();
    }/*from  w ww .  j  av a 2 s  . c  o m*/
}

Related

  1. readDouble(ByteBuffer buffer)
  2. toDouble(ByteBuffer buffer)
  3. toDouble(ByteBuffer bytes)
  4. toDouble(ByteBuffer value)