Java Integer to int2Integer(int[] array)

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

Description

int Integer

License

Open Source License

Declaration

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

Method Source Code

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

public class Main {
    public static Integer[] int2Integer(int[] array) {
        int len = array.length;
        Integer[] temp = new Integer[len];
        int count = 0;
        for (int i : array) {
            temp[count++] = i;//from   w  ww .  j a  v a  2 s  .  co  m
        }
        return temp;
    }
}

Related

  1. int2Date(Integer date, String interval)
  2. int2ddouble(final int i)
  3. int2double(int[] ia)
  4. int2EyptStr(int num)
  5. int2float(Integer integer)
  6. int2minBeb(final int x)
  7. int2path(int v)
  8. int2rgb(final int color)
  9. Int2Short(int i)