Java Integer to intToInteger(int[] array)

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

Description

int To Integer

License

Open Source License

Declaration

public static Integer[] intToInteger(int[] array) 

Method Source Code

//package com.java2s;
//License from project: Open Source License 

public class Main {
    public static Integer[] intToInteger(int[] array) {
        if (array == null) {
            return null;
        } else {//from www. j  ava 2  s.  c  o m
            Integer[] newArray = new Integer[array.length];
            for (int i = 0; i < newArray.length; i++) {
                newArray[i] = array[i];
            }
            return newArray;
        }
    }
}

Related

  1. intToFourBytes(int i)
  2. intToFourBytes(int iValue, byte b[], int offset)
  3. intToFourChars(int value)
  4. intToGoodBadSimple(int i)
  5. intToID(int ID)
  6. intToIntegerArray(int[] array)
  7. intToLengthHexByte(int args, int hexLength)
  8. intToLetter(int index)
  9. intToLex(int v)