Class IsNotInCaseInsensitiveWhenPresent<T>
java.lang.Object
org.mybatis.dynamic.sql.AbstractListValueCondition<T>
org.mybatis.dynamic.sql.where.condition.IsNotInCaseInsensitiveWhenPresent<T>
- All Implemented Interfaces:
AbstractListValueCondition.Filterable<T>,AbstractListValueCondition.Mappable<T>,RenderableCondition<T>,CaseInsensitiveRenderableCondition<T>
public class IsNotInCaseInsensitiveWhenPresent<T>
extends AbstractListValueCondition<T>
implements CaseInsensitiveRenderableCondition<T>, AbstractListValueCondition.Filterable<T>, AbstractListValueCondition.Mappable<T>
-
Nested Class Summary
Nested classes/interfaces inherited from class org.mybatis.dynamic.sql.AbstractListValueCondition
AbstractListValueCondition.Filterable<T>, AbstractListValueCondition.Mappable<T> -
Field Summary
Fields inherited from class org.mybatis.dynamic.sql.AbstractListValueCondition
values -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionstatic <T> IsNotInCaseInsensitiveWhenPresent<T> empty()If renderable and the value matches the predicate, returns this condition.If renderable, apply the mapping to the value and return a new condition with the new value.static <T> IsNotInCaseInsensitiveWhenPresent<T> of(@Nullable T... values) static <T> IsNotInCaseInsensitiveWhenPresent<T> of(@Nullable Collection<@Nullable T> values) operator()Methods inherited from class org.mybatis.dynamic.sql.AbstractListValueCondition
filterSupport, isEmpty, mapSupport, renderCondition, valuesMethods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface org.mybatis.dynamic.sql.where.condition.CaseInsensitiveRenderableCondition
renderLeftColumnMethods inherited from interface org.mybatis.dynamic.sql.RenderableCondition
isEmpty, renderCondition, renderingSkipped, shouldRender
-
Constructor Details
-
IsNotInCaseInsensitiveWhenPresent
-
-
Method Details
-
empty
-
operator
- Specified by:
operatorin classAbstractListValueCondition<T>
-
filter
Description copied from interface:AbstractListValueCondition.FilterableIf renderable and the value matches the predicate, returns this condition. Else returns a condition that will not render.- Specified by:
filterin interfaceAbstractListValueCondition.Filterable<T>- Parameters:
predicate- predicate applied to the value, if renderable- Returns:
- this condition if renderable and the value matches the predicate, otherwise a condition that will not render.
-
map
public <R> IsNotInCaseInsensitiveWhenPresent<R> map(Function<? super @NonNull T, ? extends @Nullable R> mapper) Description copied from interface:AbstractListValueCondition.MappableIf 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).- Specified by:
mapin interfaceAbstractListValueCondition.Mappable<T>- Type Parameters:
R- type of the new condition- Parameters:
mapper- a mapping function to apply to the value, if renderable- Returns:
- 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.
-
of
-
of
-