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

io.ebean.meta.MetricNamingMatch Maven / Gradle / Ivy

There is a newer version: 15.8.0
Show newest version
package io.ebean.meta;

import java.util.function.Function;

/**
 * Metric naming convention that is exact match.
 */
public final class MetricNamingMatch implements Function {

  public static final Function INSTANCE = new MetricNamingMatch();

  @Override
  public String apply(String name) {
    return name;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy