Java Long Number From toLongMatrix(Number[][] matrix)

Here you can find the source of toLongMatrix(Number[][] matrix)

Description

Turns the Number matrix into one consisting of primitive longs.

License

Open Source License

Parameter

Parameter Description
matrix the matrix to convert

Return

the converted matrix

Declaration

public static long[][] toLongMatrix(Number[][] matrix) 

Method Source Code

//package com.java2s;
/*/* w w  w.  ja  v  a 2s  .c  om*/
 *   This program is free software: you can redistribute it and/or modify
 *   it under the terms of the GNU General Public License as published by
 *   the Free Software Foundation, either version 3 of the License, or
 *   (at your option) any later version.
 *
 *   This program 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 General Public License for more details.
 *
 *   You should have received a copy of the GNU General Public License
 *   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 */

public class Main {
    /**
     * Turns the Number matrix into one consisting of primitive longs.
     *
     * @param matrix   the matrix to convert
     * @return      the converted matrix
     */
    public static long[][] toLongMatrix(Number[][] matrix) {
        long[][] result;
        int i;
        int n;

        result = new long[matrix.length][];
        for (i = 0; i < matrix.length; i++) {
            result[i] = new long[matrix[i].length];
            for (n = 0; n < matrix[i].length; n++)
                result[i][n] = matrix[i][n].longValue();
        }

        return result;
    }
}

Related

  1. toLongInt(byte[] b)
  2. toLongitude(long fsuipcLongitude)
  3. toLongitude(String latLng)
  4. toLongLE(byte target[], int offset, int numBytes, long value)
  5. toLongList(String valus)
  6. toLongMin(double[] in, long[] out)
  7. toLongObject(Object obj)
  8. toLongs(byte[] bytes)
  9. toLongs(byte[] readBuffer, int o, int l)