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

com.github.skjolber.histogram.view.LabelHistogramItem Maven / Gradle / Ivy

package com.github.skjolber.histogram.view;

public class LabelHistogramItem implements HistogramItem {

	private final String value;
	
	public LabelHistogramItem(String value) {
		this.value = value;
	}
	
	@Override
	public void append(StringBuilder builder) {
		builder.append(value);
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy