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

com.ringcentral.platform.metrics.var.configs.VarConfig Maven / Gradle / Ivy

package com.ringcentral.platform.metrics.var.configs;

import com.ringcentral.platform.metrics.configs.MetricConfig;
import com.ringcentral.platform.metrics.labels.Label;

import java.util.List;

public interface VarConfig extends MetricConfig {
    default boolean hasLabels() {
        return labels() != null && !labels().isEmpty();
    }

    List




© 2015 - 2024 Weber Informatics LLC | Privacy Policy