Convert array of primitives into array of objects
import org.apache.commons.lang.ArrayUtils; publicclass Main { publicstaticvoid main(String[] args) { int numbers[] = { 1, 2, 3, 4, 5 }; boolean bools[] = { true, false, false, true }; float decimals[] = { 10.1f, 3.14f, 2.17f }; Integer numbersObj[] = ArrayUtils.toObject(numbers); Boolean boolsObj[] = ArrayUtils.toObject(bools); Float decimalsObj[] = ArrayUtils.toObject(decimals); } }
Related examples in the same category