
org.mybatis.dynamic.sql.where.condition.IsLikeCaseInsensitive Maven / Gradle / Ivy
/*
* Copyright ${license.git.copyrightYears} the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.mybatis.dynamic.sql.where.condition;
import java.util.function.Predicate;
import java.util.function.UnaryOperator;
import org.mybatis.dynamic.sql.AbstractSingleValueCondition;
import org.mybatis.dynamic.sql.util.StringUtilities;
public class IsLikeCaseInsensitive extends AbstractSingleValueCondition {
private static final IsLikeCaseInsensitive EMPTY = new IsLikeCaseInsensitive(null) {
@Override
public boolean shouldRender() {
return false;
}
};
public static IsLikeCaseInsensitive empty() {
return EMPTY;
}
protected IsLikeCaseInsensitive(String value) {
super(value);
}
@Override
public String renderCondition(String columnName, String placeholder) {
return "upper(" + columnName + ") like " + placeholder; //$NON-NLS-1$ //$NON-NLS-2$
}
@Override
public String value() {
return StringUtilities.safelyUpperCase(super.value());
}
public static IsLikeCaseInsensitive of(String value) {
return new IsLikeCaseInsensitive(value);
}
/**
* If renderable and the value matches the predicate, returns this condition. Else returns a condition
* that will not render.
*
* @deprecated replaced by {@link IsLikeCaseInsensitive#filter(Predicate)}
* @param predicate predicate applied to the value, if renderable
* @return this condition if renderable and the value matches the predicate, otherwise a condition
* that will not render.
*/
@Deprecated
public IsLikeCaseInsensitive when(Predicate predicate) {
return filter(predicate);
}
/**
* If renderable, apply the mapping to the value and return a new condition with the new value. Else return a
* condition that will not render (this).
*
* @deprecated replaced by {@link IsLikeCaseInsensitive#map(UnaryOperator)}
* @param mapper a mapping function to apply to the value, if renderable
* @return a new condition with the result of applying the mapper to the value of this condition,
* if renderable, otherwise a condition that will not render.
*/
@Deprecated
public IsLikeCaseInsensitive then(UnaryOperator mapper) {
return map(mapper);
}
@Override
public IsLikeCaseInsensitive filter(Predicate super String> predicate) {
return filterSupport(predicate, IsLikeCaseInsensitive::empty, this);
}
/**
* If renderable, apply the mapping to the value and return a new condition with the new value. Else return a
* condition that will not render (this).
*
* @param mapper a mapping function to apply to the value, if renderable
* @return a new condition with the result of applying the mapper to the value of this condition,
* if renderable, otherwise a condition that will not render.
*/
public IsLikeCaseInsensitive map(UnaryOperator mapper) {
return mapSupport(mapper, IsLikeCaseInsensitive::new, IsLikeCaseInsensitive::empty);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy