All Downloads are FREE. Search and download functionalities are using the official Maven repository.
Please wait. This can take some minutes ...
Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance.
Project price only 1 $
You can buy this project and download/modify it how often you want.
org.metawidget.util.ArrayUtils Maven / Gradle / Ivy
// Metawidget
//
// This file is dual licensed under both the LGPL
// (http://www.gnu.org/licenses/lgpl-2.1.html) and the EPL
// (http://www.eclipse.org/org/documents/epl-v10.php). As a
// recipient of Metawidget, you may choose to receive it under either
// the LGPL or the EPL.
//
// Commercial licenses are also available. See http://metawidget.org
// for details.
package org.metawidget.util;
import java.lang.reflect.Array;
import java.util.List;
import java.util.regex.Pattern;
import org.metawidget.util.simple.StringUtils;
/**
* Utilities for working with Arrays.
*
* @author Richard Kennard
*/
public final class ArrayUtils {
//
// Public statics
//
public static String toString( Object array ) {
return toString( array, StringUtils.SEPARATOR_COMMA );
}
public static String toString( Object array, String separator ) {
return toString( array, separator, false, false );
}
public static String toString( Object array, String separator, boolean leadingSeparator, boolean trailingSeparator ) {
if ( array == null ) {
return "";
}
if ( !array.getClass().isArray() ) {
throw new UnsupportedOperationException( "Not an array" );
}
Pattern patternSeparator = Pattern.compile( separator, Pattern.LITERAL );
String replacement = "\\\\" + separator;
StringBuilder builder = new StringBuilder();
for ( int loop = 0, length = Array.getLength( array ); loop < length; loop++ ) {
String value = String.valueOf( Array.get( array, loop ) );
// Concatenate the separator
if ( builder.length() > 0 || leadingSeparator ) {
builder.append( separator );
}
// Escape the separator
value = patternSeparator.matcher( value ).replaceAll( replacement );
// Build the string
builder.append( value );
}
if ( trailingSeparator && builder.length() > 0 ) {
builder.append( separator );
}
return builder.toString();
}
public static String[] fromString( String array ) {
return fromString( array, ',' );
}
/**
* @return the parsed array. Never null
*/
public static String[] fromString( String array, char separator ) {
if ( array == null ) {
return EMPTY_STRING_ARRAY;
}
List list = CollectionUtils.fromString( array, separator );
return list.toArray( new String[list.size()] );
}
public static T[] add( T[] array, T... arrayToAdd ) {
if ( array == null ) {
return arrayToAdd;
}
return addAt( array, array.length, arrayToAdd );
}
@SuppressWarnings( "unchecked" )
public static T[] addAt( T[] array, int index, T... arrayToAdd ) {
if ( array == null ) {
return arrayToAdd;
}
if ( arrayToAdd == null ) {
return array;
}
int lengthToAdd = arrayToAdd.length;
if ( lengthToAdd == 0 ) {
return array;
}
int originalLength = array.length;
T[] newArray = (T[]) Array.newInstance( array.getClass().getComponentType(), originalLength + lengthToAdd );
if ( index > 0 ) {
System.arraycopy( array, 0, newArray, 0, index );
}
System.arraycopy( arrayToAdd, 0, newArray, index, lengthToAdd );
if ( index < array.length ) {
System.arraycopy( array, index, newArray, index + lengthToAdd, array.length - index );
}
return newArray;
}
/**
* @return true if the given array contains the given element. False if it does not, or if the
* given array is null.
*/
public static boolean contains( T[] array, T contains ) {
return indexOf( array, contains ) != -1;
}
/**
* @return true if the given array contains the given element. False if it does not, or if the
* given array is null.
*/
public static int indexOf( T[] array, T contains ) {
if ( array == null ) {
return -1;
}
for ( int index = 0; index < array.length; index++ ) {
Object object = array[index];
if ( object == null ) {
if ( contains == null ) {
return index;
}
} else if ( object.equals( contains ) ) {
return index;
}
}
return -1;
}
@SuppressWarnings( "unchecked" )
public static T[] removeAt( T[] array, int index ) {
T[] newArray = (T[]) Array.newInstance( array.getClass().getComponentType(), array.length - 1 );
if ( index > 0 ) {
System.arraycopy( array, 0, newArray, 0, index );
}
if ( index < array.length - 1 ) {
System.arraycopy( array, index + 1, newArray, index, array.length - ( index + 1 ) );
}
return newArray;
}
//
// Private statics
//
private static final String[] EMPTY_STRING_ARRAY = new String[0];
//
// Private constructor
//
private ArrayUtils() {
// Can never be called
}
}