Java tutorial
//package com.java2s; //License from project: Open Source License import java.util.ArrayList; public class Main { private static boolean[] toBooleanArray(ArrayList<Boolean> arrayList) { boolean[] ret = new boolean[arrayList.size()]; for (int i = 0; i < ret.length; i++) { ret[i] = arrayList.get(i); } return ret; } }