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

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

package com.github.skjolber.histogram.view;

public class YellowStarHistogramItem implements HistogramItem {

	private static YellowStarHistogramItem INSTANCE = new YellowStarHistogramItem();
	
	public static YellowStarHistogramItem getInstance() {
		return INSTANCE;
	}
	
	@Override
	public void append(StringBuilder builder) {
		builder.append('⭐');
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy