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

com.venky.core.collections.UpperCaseStringCache Maven / Gradle / Ivy

There is a newer version: 1.18
Show newest version
package com.venky.core.collections;

import com.venky.cache.Cache;

public class UpperCaseStringCache extends Cache{

	/**
	 * 
	 */
	private static final long serialVersionUID = 7183202541501222694L;
	private UpperCaseStringCache(){
		super();
	}
	
	private static UpperCaseStringCache instance =  new UpperCaseStringCache();
	public static UpperCaseStringCache instance(){
		return instance;
	}
	

	@Override
	protected String getValue(String k) {
		return String.valueOf(k).toUpperCase();
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy