Java ByteBuffer Get getDoubleArray(ByteBuffer buffer, int numDoubles)

Here you can find the source of getDoubleArray(ByteBuffer buffer, int numDoubles)

Description

get Double Array

License

Open Source License

Declaration

static double[] getDoubleArray(ByteBuffer buffer, int numDoubles) 

Method Source Code

//package com.java2s;
/*//from w  ww . ja v  a2s  .  c  om
 * Copyright (c) 2018 Patrick Scheibe
 * Affiliation: Saxonian Incubator for Clinical Translation, University Leipzig, Germany
 *
 * Permission is hereby granted, free of charge, to any person obtaining a copy
 * of this software and associated documentation files (the "Software"), to deal
 * in the Software without restriction, including without limitation the rights
 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
 * copies of the Software, and to permit persons to whom the Software is
 * furnished to do so, subject to the following conditions:
 *
 * The above copyright notice and this permission notice shall be included in all
 * copies or substantial portions of the Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
 * SOFTWARE.
 */

import java.nio.ByteBuffer;

public class Main {
    static double[] getDoubleArray(ByteBuffer buffer, int numDoubles) {
        double[] result = new double[numDoubles];
        for (int i = 0; i < numDoubles; i++) {
            result[i] = buffer.getDouble();
        }
        return result;
    }
}

Related

  1. getCRLFLine(ByteBuffer buf)
  2. getData(ByteBuffer buf, int index, int size)
  3. getDataFromBuffer(ByteBuffer b)
  4. getDirectByteBuffer(ByteBuffer var0, boolean var1)
  5. getDouble(ByteBuffer buffer)
  6. getDoubleFromByteBuffer(ByteBuffer data)
  7. getEmptyByteBuffer()
  8. getFixedBytes(ByteBuffer buffer, int length)
  9. getFloat(ByteBuffer b, int n)