Class IsIn<T>
- java.lang.Object
-
- org.mybatis.dynamic.sql.AbstractListValueCondition<T>
-
- org.mybatis.dynamic.sql.where.condition.IsIn<T>
-
- All Implemented Interfaces:
VisitableCondition<T>
- Direct Known Subclasses:
IsInWhenPresent
public class IsIn<T> extends AbstractListValueCondition<T>
-
-
Field Summary
-
Fields inherited from class org.mybatis.dynamic.sql.AbstractListValueCondition
renderWhenEmpty, values, valueStreamTransformer
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static <T> IsIn<T>
of(java.util.Collection<T> values)
java.lang.String
renderCondition(java.lang.String columnName, java.util.stream.Stream<java.lang.String> placeholders)
IsIn<T>
then(java.util.function.UnaryOperator<java.util.stream.Stream<T>> valueStreamTransformer)
This method allows you to modify the condition's values before they are placed into the parameter map.-
Methods inherited from class org.mybatis.dynamic.sql.AbstractListValueCondition
accept, forceRenderingWhenEmpty, mapValues, shouldRender
-
-
-
-
Method Detail
-
renderCondition
public java.lang.String renderCondition(java.lang.String columnName, java.util.stream.Stream<java.lang.String> placeholders)
- Specified by:
renderCondition
in classAbstractListValueCondition<T>
-
then
public IsIn<T> then(java.util.function.UnaryOperator<java.util.stream.Stream<T>> valueStreamTransformer)
This method allows you to modify the condition's values before they are placed into the parameter map. For example, you could filter nulls, or trim strings, etc. This process will run before final rendering of SQL. If you filter values out of the stream, then final condition will not reference those values. If you filter all values out of the stream, then the condition will not render.- Parameters:
valueStreamTransformer
- a UnaryOperator that will transform the value stream before the values are placed in the parameter map- Returns:
- new condition with the specified transformer
-
of
public static <T> IsIn<T> of(java.util.Collection<T> values)
-
-