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

io.javarig.generator.collection.map.HashMapGenerator Maven / Gradle / Ivy

Go to download

This project aims to provide a random instances generator for any class in java, it iterates through setters of an empty object and sets the fields values (using Java reflection api) randomly

The newest version!
package io.javarig.generator.collection.map;

import io.javarig.RandomInstanceGenerator;

import java.lang.reflect.Type;
import java.util.HashMap;
import java.util.Map;

public class HashMapGenerator extends MapGenerator {
    public HashMapGenerator(Type type, RandomInstanceGenerator randomInstanceGenerator) {
        super(type, randomInstanceGenerator);
    }

    @Override
    @SuppressWarnings({"rawtypes"})
    public Class getImplementationType() {
        return HashMap.class ;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy