Your preferences have been saved!
» Removes an element from a an array yielding a new - //package util; import java.util.List; /**  *  Collection of helpful, static array procedures. These should be part of the JDK.    *   * @author Michael Tremel (mtremel@email.arizona.edu)  */ public class ArrayUtil {   /**... 17 Feb 12 » Pack chunks - //package org.vosao.utils; import java.util.ArrayList; import java.util.Arrays; import java.util.List; public class ArrayUtil {   public static List<byte[]> makeChunks(byte[] data, int chunkSize) {     List<byte[]> result = new ArrayList<byte[]>();     long n = data.length / chunkSize;     int finalChunkSize = data.length % chunkSize;     int i = 0;... 17 Feb 12 » Returns a copy of the specified array of objects of - //package com.aliasi.util; import java.util.ArrayList; import java.util.List; import java.util.Random; /**  * Static utility methods for processing arrays.  *  * @author  Bob Carpenter  * @version 4.0.0  * @since   LingPipe1.0... 17 Feb 12 » Concatenates all the passed arrays - //package org.wiztools.commons; import java.util.ArrayList; import java.util.List; /**  *  * @author subwiz  */ public final class ArrayUtil {     /**      * Determines if the passed object is of type array.... 17 Feb 12 » Add one array to another - import java.lang.reflect.Array; /**  * ArrayUtil is an utility class for processing array.  *   * @author shot  */ public class ArrayUtil {   /**    * Add array.    * ... 17 Feb 12 » Add new value, which sets as the first value, to - import java.lang.reflect.Array; /**  * ArrayUtil is an utility class for processing array.  *   * @author shot  */ public class ArrayUtil {   /**    * Add new value, which sets as the first value, to existing array.    * ... 17 Feb 12 » Add new value to exsisting array.The new value is indexed - import java.lang.reflect.Array; /**  * ArrayUtil is an utility class for processing array.  *   * @author shot  */ public class ArrayUtil {   /**    * Add new value to exsisting array.The new value is indexed to the last.    * ... 17 Feb 12 » Array Util: seach, insert, append, remove, copy, shuffle - import java.lang.reflect.Array; import java.util.Collection; import java.util.Random; /**  *   * <DIV lang="en"></DIV>  * <DIV lang="ja"></DIV>  *   * @author Makoto YUI (yuin405+xbird@gmail.com)  */... 17 Feb 12 » Array Expander - //package com.witframework.util; import java.lang.reflect.Array; public final class ArrayExpander {   public static Object merge(Object array1,Object array2){     if (array1 == null) {       return null;     }     if (array2 == null) {       return array1;     }... 17 Feb 12 » Append one array to another - //package cc.mallet.util; import java.lang.reflect.Array; /**  * Static utility methods for arrays (like java.util.Arrays, but more useful).  *   * @author <a href="mailto:casutton@cs.umass.edu">Charles Sutton</a>  * @version $Id: ArrayUtils.java,v 1.1 2007/10/22 21:37:40 mccallum Exp $  */ public class Util {   /**... 17 Feb 12