public class IsLikeCaseInsensitive extends AbstractSingleValueCondition<String>
value
Modifier | Constructor and Description |
---|---|
protected |
IsLikeCaseInsensitive(String value) |
Modifier and Type | Method and Description |
---|---|
static IsLikeCaseInsensitive |
empty() |
IsLikeCaseInsensitive |
filter(Predicate<? super String> predicate)
If renderable and the value matches the predicate, returns this condition.
|
IsLikeCaseInsensitive |
map(UnaryOperator<String> mapper)
If renderable, apply the mapping to the value and return a new condition with the new value.
|
static IsLikeCaseInsensitive |
of(String value) |
String |
renderCondition(String columnName,
String placeholder) |
IsLikeCaseInsensitive |
then(UnaryOperator<String> mapper)
Deprecated.
replaced by
map(UnaryOperator) |
String |
value() |
IsLikeCaseInsensitive |
when(Predicate<String> predicate)
Deprecated.
replaced by
filter(Predicate) |
accept, filterSupport, mapSupport
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
renderingSkipped, shouldRender
protected IsLikeCaseInsensitive(String value)
public static IsLikeCaseInsensitive empty()
public String renderCondition(String columnName, String placeholder)
renderCondition
in class AbstractSingleValueCondition<String>
public String value()
value
in class AbstractSingleValueCondition<String>
public static IsLikeCaseInsensitive of(String value)
@Deprecated public IsLikeCaseInsensitive when(Predicate<String> predicate)
filter(Predicate)
predicate
- predicate applied to the value, if renderable@Deprecated public IsLikeCaseInsensitive then(UnaryOperator<String> mapper)
map(UnaryOperator)
mapper
- a mapping function to apply to the value, if renderablepublic IsLikeCaseInsensitive filter(Predicate<? super String> predicate)
AbstractSingleValueCondition
filter
in class AbstractSingleValueCondition<String>
predicate
- predicate applied to the value, if renderablepublic IsLikeCaseInsensitive map(UnaryOperator<String> mapper)
mapper
- a mapping function to apply to the value, if renderableCopyright © 2016–2021 MyBatis.org. All rights reserved.