Example usage for org.apache.commons.collections MapUtils subclass-usage

List of usage examples for org.apache.commons.collections MapUtils subclass-usage

Introduction

In this page you can find the example usage for org.apache.commons.collections MapUtils subclass-usage.

Usage

From source file org.mule.util.MapUtils.java

public class MapUtils extends org.apache.commons.collections.MapUtils {

    /**
     * Convenience method for CollectionUtil#mapWithKeysAndValues(Class, Iterator,
     * Iterator); keys and values can be null or empty.
     */

From source file com.thruzero.common.core.utils.MapUtilsExt.java

/**
 * Extensions to the apache {@code MapUtils} utility class.
 *
 * @author George Norman
 */
public class MapUtilsExt extends MapUtils {

From source file org.apache.usergrid.utils.MapUtils.java

public class MapUtils extends org.apache.commons.collections.MapUtils {

    public static <A, B> void addMapSet(Map<A, Set<B>> map, A a, B b) {
        addMapSet(map, false, a, b);
    }

From source file org.apache.usergrid.persistence.index.utils.MapUtils.java

public class MapUtils extends org.apache.commons.collections.MapUtils {

    public static <A, B> void addMapSet(Map<A, Set<B>> map, A a, B b) {
        addMapSet(map, false, a, b);
    }

From source file org.usergrid.utils.MapUtils.java

/**
 * @author edanuff
 * 
 */
public class MapUtils extends org.apache.commons.collections.MapUtils {