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

com.ringcentral.platform.metrics.labels.DefaultLabelValuePredicate Maven / Gradle / Ivy

package com.ringcentral.platform.metrics.labels;

import java.util.function.Predicate;

import static java.util.Objects.*;

public class DefaultLabelValuePredicate implements LabelValuePredicate {

    private final Label label;
    private final Predicate predicate;

    public DefaultLabelValuePredicate(Label label, Predicate predicate) {
        this.label = requireNonNull(label);
        this.predicate = requireNonNull(predicate);
    }

    @Override
    public Label label() {
        return label;
    }

    @Override
    public boolean matches(String value) {
        return predicate.test(value);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy