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

com.carrotsearch.junitbenchmarks.ConsumerName Maven / Gradle / Ivy

There is a newer version: 0.7.2
Show newest version
package com.carrotsearch.junitbenchmarks;

import com.carrotsearch.junitbenchmarks.h2.H2Consumer;
import com.carrotsearch.junitbenchmarks.mysql.MySQLConsumer;

/**
 * Shortcuts for known {@link IResultsConsumer}.
 */
public enum ConsumerName
{
    XML(XMLConsumer.class),
    H2(H2Consumer.class),
    CONSOLE(WriterConsumer.class),
    MYSQL(MySQLConsumer.class);

    /** 
     * Consumer class.
     */
    public final Class clazz;

    /*
     * 
     */
    private ConsumerName(Class clazz)
    {
        this.clazz = clazz;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy