Java Utililty Methods Char to Int Array

List of utility methods to do Char to Int Array

Description

The list of methods to do Char to Int Array are organized into topic(s).

Method

intcharToInt(char[] array)
char To Int
return (array[0] | (array[1] << 16));
int[]charToInt(char[] values)
char To Int
if (values == null) {
    return null;
int[] results = new int[values.length];
for (int i = 0; i < values.length; i++) {
    results[i] = values[i];
return results;
...