Here you can find the source of flatten(Object[] array)
Parameter | Description |
---|---|
array | Array (possibly multidimensional). |
public static Object[] flatten(Object[] array)
//package com.java2s; /*// w w w . j a v a 2 s.c o m * Java Information Dynamics Toolkit (JIDT) * Copyright (C) 2017, Joseph T. Lizier * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ import java.util.List; import java.util.ArrayList; public class Main { /** * Transform a multidimensional array into a one-dimensional list. * * @param array Array (possibly multidimensional). * @return a list of all the {@code Object} instances contained in * {@code array}. */ public static Object[] flatten(Object[] array) { final List<Object> list = new ArrayList<Object>(); if (array != null) { for (Object o : array) { if (o instanceof Object[]) { for (Object oR : flatten((Object[]) o)) { list.add(oR); } } else { list.add(o); } } } return list.toArray(); } }