Here you can find the source of toCharArray(boolean[] array)
Parameter | Description |
---|---|
array | booleans array to convert. |
public static char[] toCharArray(boolean[] array)
//package com.java2s; /*/*from w w w.j a v a 2 s.co m*/ * The MIT License (MIT) * * Copyright (c) 2016. Diorite (by Bart?omiej Mazur (aka GotoFinal)) * * 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. */ public class Main { /** * Coverts given booleans array to array of chars. * * @param array * booleans array to convert. * * @return converted array of chars. */ public static char[] toCharArray(boolean[] array) { char[] result = new char[array.length]; for (int i = 0; i < array.length; i++) { result[i] = array[i] ? (char) 1 : (char) 0; } return result; } /** * Coverts given shorts array to array of chars. * * @param array * shorts array to convert. * * @return converted array of chars. */ public static char[] toCharArray(short[] array) { char[] result = new char[array.length]; for (int i = 0; i < array.length; i++) { result[i] = (char) array[i]; } return result; } /** * Coverts given bytes array to array of chars. * * @param array * bytes array to convert. * * @return converted array of chars. */ public static char[] toCharArray(byte[] array) { char[] result = new char[array.length]; for (int i = 0; i < array.length; i++) { result[i] = (char) array[i]; } return result; } /** * Coverts given ints array to array of chars. * * @param array * ints array to convert. * * @return converted array of chars. */ public static char[] toCharArray(int[] array) { char[] result = new char[array.length]; for (int i = 0; i < array.length; i++) { result[i] = (char) array[i]; } return result; } /** * Coverts given longs array to array of chars. * * @param array * longs array to convert. * * @return converted array of chars. */ public static char[] toCharArray(long[] array) { char[] result = new char[array.length]; for (int i = 0; i < array.length; i++) { result[i] = (char) array[i]; } return result; } /** * Coverts given floats array to array of chars. * * @param array * floats array to convert. * * @return converted array of chars. */ public static char[] toCharArray(float[] array) { char[] result = new char[array.length]; for (int i = 0; i < array.length; i++) { result[i] = (char) array[i]; } return result; } /** * Coverts given doubles array to array of chars. * * @param array * doubles array to convert. * * @return converted array of chars. */ public static char[] toCharArray(double[] array) { char[] result = new char[array.length]; for (int i = 0; i < array.length; i++) { result[i] = (char) array[i]; } return result; } /** * Coverts given chars array to array of chars. * * @param array * chars array to convert. * * @return converted array of chars. */ public static char[] toCharArray(Character[] array) { char[] result = new char[array.length]; for (int i = 0; i < array.length; i++) { result[i] = array[i]; } return result; } /** * Coverts given numbers array to array of bytes. * * @param array * numbers array to convert. * * @return converted array of bytes. */ public static char[] toCharArray(Number[] array) { char[] result = new char[array.length]; for (int i = 0; i < array.length; i++) { result[i] = (char) array[i].intValue(); } return result; } /** * Coverts given booleans array to array of chars. * * @param array * booleans array to convert. * * @return converted array of chars. */ public static char[] toCharArray(Boolean[] array) { char[] result = new char[array.length]; for (int i = 0; i < array.length; i++) { result[i] = array[i] ? (char) 1 : (char) 0; } return result; } /** * Coverts given shorts array to array of chars. * * @param array * shorts array to convert. * * @return converted array of chars. */ public static char[] toCharArray(Short[] array) { char[] result = new char[array.length]; for (int i = 0; i < array.length; i++) { result[i] = (char) array[i].shortValue(); } return result; } /** * Coverts given bytes array to array of chars. * * @param array * bytes array to convert. * * @return converted array of chars. */ public static char[] toCharArray(Byte[] array) { char[] result = new char[array.length]; for (int i = 0; i < array.length; i++) { result[i] = (char) array[i].byteValue(); } return result; } /** * Coverts given ints array to array of chars. * * @param array * ints array to convert. * * @return converted array of chars. */ public static char[] toCharArray(Integer[] array) { char[] result = new char[array.length]; for (int i = 0; i < array.length; i++) { result[i] = (char) array[i].intValue(); } return result; } /** * Coverts given longs array to array of chars. * * @param array * longs array to convert. * * @return converted array of chars. */ public static char[] toCharArray(Long[] array) { char[] result = new char[array.length]; for (int i = 0; i < array.length; i++) { result[i] = (char) array[i].longValue(); } return result; } /** * Coverts given floats array to array of chars. * * @param array * floats array to convert. * * @return converted array of chars. */ public static char[] toCharArray(Float[] array) { char[] result = new char[array.length]; for (int i = 0; i < array.length; i++) { result[i] = (char) array[i].floatValue(); } return result; } /** * Coverts given doubles array to array of chars. * * @param array * doubles array to convert. * * @return converted array of chars. */ public static char[] toCharArray(Double[] array) { char[] result = new char[array.length]; for (int i = 0; i < array.length; i++) { result[i] = (char) array[i].doubleValue(); } return result; } }