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

io.github.linyimin0812.profiler.common.ui.Statistics Maven / Gradle / Ivy

There is a newer version: 3.1.4
Show newest version
package io.github.linyimin0812.profiler.common.ui;

/**
 * @author linyimin
 **/
public class Statistics {
    private static final int DEFAULT_ORDER = 100;

    private final int order;
    private final String label;
    private final String value;

    public Statistics(String label, String value) {
        this(DEFAULT_ORDER, label, value);
    }

    public Statistics(int order, String label, String value) {
        this.order = order;
        this.label = label;
        this.value = value;
    }

    public int getOrder() {
        return order;
    }

    public String getLabel() {
        return label;
    }

    public String getValue() {
        return value;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy