org.fest.util.Arrays Maven / Gradle / Ivy
/*
* Created on May 13, 2007
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on
* an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the
* specific language governing permissions and limitations under the License.
*
* Copyright @2007-2012 the original author or authors.
*/
package org.fest.util;
import static java.util.Collections.emptyList;
import static org.fest.util.Preconditions.checkNotNull;
import java.util.*;
/**
* Utility methods related to arrays.
*
* @author Alex Ruiz
* @author Joel Costigliola
*/
public class Arrays {
private static final ArrayFormatter FORMATTER = new ArrayFormatter();
/**
* Indicates whether the given object is not {@code null} and is an array.
*
* @param o the given object.
* @return {@code true} if the given object is not {@code null} and is an array, otherwise {@code false}.
*/
public static boolean isArray(Object o) {
return o != null && o.getClass().isArray();
}
/**
* Indicates whether the given array is {@code null} or empty.
*
* @param the type of elements of the array.
* @param array the array to check.
* @return {@code true} if the given array is {@code null} or empty, otherwise {@code false}.
*/
public static boolean isNullOrEmpty(T[] array) {
return array == null || !hasElements(array);
}
/**
* Returns an array containing the given arguments.
*
* @param the type of the array to return.
* @param values the values to store in the array.
* @return an array containing the given arguments.
*/
public static T[] array(T... values) {
return values;
}
/**
* Returns the {@code String} representation of the given array, or {@code null} if the given object is either
* {@code null} or not an array. This method supports arrays having other arrays as elements.
*
* @param array the object that is expected to be an array.
* @return the {@code String} representation of the given array.
*/
public static String format(Object array) {
return FORMATTER.format(array);
}
/**
* Returns all the non-{@code null} elements in the given array.
*
* @param the type of elements of the array.
* @param array the given array.
* @return all the non-{@code null} elements in the given array. An empty list is returned if the given array is
* {@code null}.
* @since 1.1.3
*/
public static List nonNullElementsIn(T[] array) {
if (array == null) {
return emptyList();
}
List nonNullElements = new ArrayList();
for (T o : array) {
if (o != null) {
nonNullElements.add(o);
}
}
return nonNullElements;
}
/**
* Returns {@code true} if the given array has only {@code null} elements, {@code false} otherwise. If given array is
* empty, this method returns {@code true}.
*
* @param the type of elements of the array.
* @param array the given array. It must not be null.
* @return {@code true} if the given array has only {@code null} elements or is empty, {@code false} otherwise.
* @throws NullPointerException if the given array is {@code null}.
* @since 1.1.3
*/
public static boolean hasOnlyNullElements(T[] array) {
checkNotNull(array);
if (!hasElements(array)) {
return false;
}
for (T o : array) {
if (o != null) {
return false;
}
}
return true;
}
private static boolean hasElements(T[] array) {
return array.length > 0;
}
private Arrays() {}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy