![JAR search and dependency download from the Maven repository](/logo.png)
com.araguacaima.commons.utils.CollectionUtils Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of commons-utils Show documentation
Show all versions of commons-utils Show documentation
Common utilities is a set of java utilities for managing typical actions when working with enums,
files, exceptions, zip/jar files, classes (via Reflection), maps, numbers and so on.
Most of the utilities extend functionalities offered by amazing libraries such as:
* commons-beanutils (apache)
* commons-lang3 (apache)
* commons-io (apache)
* commons-math3 (apache)
* commons-collections4 (apache)
* jreversepro (akkumar)
package com.araguacaima.commons.utils;
import org.apache.commons.beanutils.PropertyUtilsBean;
import org.apache.commons.collections4.Transformer;
import org.apache.commons.lang3.StringUtils;
import java.lang.reflect.InvocationTargetException;
import java.util.ArrayList;
import java.util.Collection;
import java.util.List;
import java.util.Map;
/**
* Created by Alejandro on 03/12/2014.
*/
public class CollectionUtils {
private static final PropertyUtilsBean propertyUtilsBean = new PropertyUtilsBean();
private static final CollectionUtils INSTANCE = new CollectionUtils();
;
private CollectionUtils() {
if (INSTANCE != null) {
throw new IllegalStateException("Already instantiated");
}
}
public static CollectionUtils getInstance() {
return INSTANCE;
}
public static List
© 2015 - 2025 Weber Informatics LLC | Privacy Policy