org.meanbean.factories.collections.MapFactoryBase Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of meanbean Show documentation
Show all versions of meanbean Show documentation
Mean Bean is an open source Java test library that tests equals and hashCode contract compliance, as well as JavaBean/POJO getter and setter methods.
package org.meanbean.factories.collections;
import java.util.Map;
import org.meanbean.factories.basic.RandomFactoryBase;
import org.meanbean.lang.Factory;
import org.meanbean.util.RandomValueGenerator;
/**
* Abstract Factory that creates Maps of objects of the specified type.
*
* @param
* The data type of the keys the Maps created by this Factory use.
* @param
* The data type of the values the Maps created by this Factory contain.
*/
public abstract class MapFactoryBase extends RandomFactoryBase