io.tiler.internal.queries.clauses.RegexMetricExpression Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of tiler Show documentation
Show all versions of tiler Show documentation
Plugable dashboard framework
package io.tiler.internal.queries.clauses;
import java.util.regex.Pattern;
public class RegexMetricExpression extends MetricExpression {
private Pattern pattern;
public RegexMetricExpression(Pattern pattern) {
this.pattern = pattern;
}
public Pattern pattern() {
return pattern;
}
}