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

net.amygdalum.util.io.CaseInsensitiveCharProvider Maven / Gradle / Ivy

package net.amygdalum.util.io;

public class CaseInsensitiveCharProvider extends MappingCharProvider {

	public CaseInsensitiveCharProvider(CharProvider chars) {
		super(chars);
	}

	@Override
	protected char map(char base) {
		return Character.toLowerCase(base);
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy