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

org.yamcs.yarch.HistogramInfo Maven / Gradle / Ivy

There is a newer version: 5.10.7
Show newest version
package org.yamcs.yarch;

/**
 * 
 * information about histogram.
 * Only the column name is kept here - subclasses can store more information if required.
 *
 */
public class HistogramInfo {
    protected final String columnName;
    public HistogramInfo(String columnName) {
        this.columnName = columnName;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy