Java Long Number From toLongs(int[] array)

Here you can find the source of toLongs(int[] array)

Description

to Longs

License

Apache License

Declaration

public static long[] toLongs(int[] array) 

Method Source Code

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

public class Main {
    public static long[] toLongs(int[] array) {
        long[] ret = new long[array.length];
        for (int e = 0; e < array.length; e++) {
            ret[e] = array[e];/*from   www. ja v a 2s .  c o m*/
        }

        return ret;
    }
}

Related

  1. toLongMin(double[] in, long[] out)
  2. toLongObject(Object obj)
  3. toLongs(byte[] bytes)
  4. toLongs(byte[] readBuffer, int o, int l)
  5. toLongs(byte[] value, int offset, int num)
  6. toLongs(Long[] values)
  7. toLongTime()
  8. toLongTimestamp(Object cell)
  9. toLongUnsigned(int intValue)