Java Long Number Array Create toLongArray(int... coordinates)

Here you can find the source of toLongArray(int... coordinates)

Description

to Long Array

License

Open Source License

Declaration

public static long[] toLongArray(int... coordinates) 

Method Source Code

//package com.java2s;
/*//w w  w  .  ja v  a2  s  .c  o m
 * Copyright (C) 2008-2015 by Holger Arndt
 *
 * This file is part of the Universal Java Matrix Package (UJMP).
 * See the NOTICE file distributed with this work for additional
 * information regarding copyright ownership and licensing.
 *
 * UJMP is free software; you can redistribute it and/or modify
 * it under the terms of the GNU Lesser General Public License as
 * published by the Free Software Foundation; either version 2
 * of the License, or (at your option) any later version.
 *
 * UJMP is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
 * GNU Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with UJMP; if not, write to the
 * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
 * Boston, MA  02110-1301  USA
 */

public class Main {
    public static long[] toLongArray(int... coordinates) {
        long[] result = new long[coordinates.length];
        for (int i = coordinates.length; --i != -1;) {
            result[i] = coordinates[i];
        }
        return result;
    }
}

Related

  1. toLongArray(byte[] data)
  2. toLongArray(double[][] array)
  3. toLongArray(final byte[] array)
  4. toLongArray(final int[] in)
  5. toLongArray(final long[] longs)
  6. toLongArray(Number[] array)
  7. toLongArray(Object[] arr)
  8. toLongArray(String array)
  9. toLongArray(String str, String separator)