Java Byte Create toByteMatrix(Number[][] matrix)

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

Description

Turns the Number matrix into one consisting of primitive bytes.

License

Open Source License

Parameter

Parameter Description
matrix the matrix to convert

Return

the converted matrix

Declaration

public static byte[][] toByteMatrix(Number[][] matrix) 

Method Source Code

//package com.java2s;
/*// w  w  w.ja  va  2s .c o m
 *   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 bytes.
     *
     * @param matrix   the matrix to convert
     * @return      the converted matrix
     */
    public static byte[][] toByteMatrix(Number[][] matrix) {
        byte[][] result;
        int i;
        int n;

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

        return result;
    }
}

Related

  1. toByteBE(int value, byte[] dst, int offset)
  2. toByteByAddress(String address)
  3. toByteByHex(String address)
  4. toByteColor(int i)
  5. toByteFromBin(String binSymbols)
  6. toByteObject(String value, Byte defaultValue)
  7. toByteUnit(long values)
  8. toByteValue(final int value)
  9. toByteWithoutOverflow(float value)