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

org.joo.libra.text.EqualsIgnoreCase Maven / Gradle / Ivy

There is a newer version: 2.1.2
Show newest version
package org.joo.libra.text;

import org.joo.libra.common.BinaryPredicate;
import org.joo.libra.common.HasValue;

public class EqualsIgnoreCase extends BinaryPredicate {

	public EqualsIgnoreCase(HasValue one, HasValue other) {
		super(one, other);
	}

	@Override
	protected boolean doSatisifiedBy(String one, String other) {
		return one.equalsIgnoreCase(other);
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy