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

com.codahale.metrics.jdbi3.strategies.NaiveNameStrategy Maven / Gradle / Ivy

There is a newer version: 4.2.28
Show newest version
package com.codahale.metrics.jdbi3.strategies;

/**
 * Very simple strategy, can be used with any JDBI loader to build basic statistics.
 */
public class NaiveNameStrategy extends DelegatingStatementNameStrategy {

    public NaiveNameStrategy() {
        super(DefaultNameStrategy.CHECK_EMPTY,
              DefaultNameStrategy.NAIVE_NAME);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy