All Downloads are FREE. Search and download functionalities are using the official Maven repository.

src.main.java.com.mebigfatguy.fbcontrib.utils.CollectionUtils Maven / Gradle / Ivy

Go to download

An auxiliary findbugs.sourceforge.net plugin for java bug detectors that fall outside the narrow scope of detectors to be packaged with the product itself.

The newest version!
/*
 * fb-contrib - Auxiliary detectors for Java programs
 * Copyright (C) 2005-2019 Dave Brosius
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 of the License, or (at your option) any later version.
 *
 * This library 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
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 */
package com.mebigfatguy.fbcontrib.utils;

import java.util.Collection;
import java.util.Map;

import org.apache.bcel.Repository;
import org.apache.bcel.classfile.JavaClass;

/**
 * a collection of static methods for determining if a class belongs to one or
 * more collection types.
 */
public final class CollectionUtils {

    private static JavaClass LIST_CLASS = null;
    private static JavaClass SET_CLASS = null;
    private static JavaClass MAP_CLASS = null;

    static {
        try {
            LIST_CLASS = Repository.lookupClass(Values.SLASHED_JAVA_UTIL_LIST);
            SET_CLASS = Repository.lookupClass(Values.SLASHED_JAVA_UTIL_SET);
            MAP_CLASS = Repository.lookupClass(Values.SLASHED_JAVA_UTIL_MAP);
        } catch (ClassNotFoundException cnfe) {
            // no bugReporter at present, so nothing to do
        }
    }

    /**
     * private to reinforce the helper status of the class
     */
    private CollectionUtils() {
    }

    /**
     * determines if the current class name is derived from List, Set or Map
     *
     * @param clsName the class to determine it's parentage
     * @return if the class is a List, Set or Map
     *
     * @throws ClassNotFoundException if the cls parameter can't be found
     */
    public static boolean isListSetMap(String clsName) throws ClassNotFoundException {
        JavaClass cls = Repository.lookupClass(clsName);
        return (cls.implementationOf(LIST_CLASS) || cls.implementationOf(SET_CLASS) || cls.implementationOf(MAP_CLASS));
    }

    public static boolean isEmpty(Collection c) {
        return (c == null) || c.isEmpty();
    }

    public static boolean isEmpty(Map m) {
        return (m == null) || m.isEmpty();
    }

    @SafeVarargs
    public static  boolean isEmpty(T... a) {
        return (a == null) || (a.length == 0);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy