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

io.pyroscope.labels.LabelsSet Maven / Gradle / Ivy

package io.pyroscope.labels;

public class LabelsSet {
    public final Object[] args;

    public LabelsSet(Object... args) {
        this.args = args;
        if (args.length % 2 != 0) {
            throw new IllegalArgumentException("args.length % 2 != 0: " +
                    "api.LabelsSet's  constructor arguments should be key-value pairs");
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy