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

xworker.statistics.flow.KeyData Maven / Gradle / Ivy

The newest version!
package xworker.statistics.flow;

public class KeyData {
	public String key;
	public long count;
	
	public KeyData(){		
	}
	
	public KeyData(String key, long count){
		this.key = key;
		this.count = count;
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy