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

io.dropwizard.metrics.common.DefaultStringMatchingStrategy Maven / Gradle / Ivy

There is a newer version: 5.0.0-rc.3
Show newest version
package io.dropwizard.metrics.common;

import java.util.Set;

class DefaultStringMatchingStrategy implements StringMatchingStrategy {
    @Override
    public boolean containsMatch(Set matchExpressions, String metricName) {
        return matchExpressions.contains(metricName);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy