Uses of Class
org.mybatis.dynamic.sql.util.FragmentAndParameters
-
Packages that use FragmentAndParameters Package Description org.mybatis.dynamic.sql.select.render org.mybatis.dynamic.sql.update.render org.mybatis.dynamic.sql.util org.mybatis.dynamic.sql.where.render -
-
Uses of FragmentAndParameters in org.mybatis.dynamic.sql.select.render
Methods in org.mybatis.dynamic.sql.select.render that return FragmentAndParameters Modifier and Type Method Description FragmentAndParameters
JoinRenderer. render()
FragmentAndParameters
QueryExpressionRenderer. render()
FragmentAndParameters
TableExpressionRenderer. visit(SubQuery subQuery)
FragmentAndParameters
TableExpressionRenderer. visit(SqlTable table)
Methods in org.mybatis.dynamic.sql.select.render that return types with arguments of type FragmentAndParameters Modifier and Type Method Description Optional<FragmentAndParameters>
FetchFirstPagingModelRenderer. render()
Optional<FragmentAndParameters>
LimitAndOffsetPagingModelRenderer. render()
Optional<FragmentAndParameters>
PagingModelRenderer. render()
-
Uses of FragmentAndParameters in org.mybatis.dynamic.sql.update.render
Methods in org.mybatis.dynamic.sql.update.render that return types with arguments of type FragmentAndParameters Modifier and Type Method Description Optional<FragmentAndParameters>
SetPhraseVisitor. visit(ColumnToColumnMapping mapping)
Optional<FragmentAndParameters>
SetPhraseVisitor. visit(ConstantMapping mapping)
Optional<FragmentAndParameters>
SetPhraseVisitor. visit(NullMapping mapping)
Optional<FragmentAndParameters>
SetPhraseVisitor. visit(SelectMapping mapping)
Optional<FragmentAndParameters>
SetPhraseVisitor. visit(StringConstantMapping mapping)
<T> Optional<FragmentAndParameters>
SetPhraseVisitor. visit(ValueMapping<T> mapping)
<T> Optional<FragmentAndParameters>
SetPhraseVisitor. visit(ValueOrNullMapping<T> mapping)
<T> Optional<FragmentAndParameters>
SetPhraseVisitor. visit(ValueWhenPresentMapping<T> mapping)
-
Uses of FragmentAndParameters in org.mybatis.dynamic.sql.util
Methods in org.mybatis.dynamic.sql.util that return FragmentAndParameters Modifier and Type Method Description FragmentAndParameters
FragmentAndParameters. add(String newFragment)
FragmentAndParameters
FragmentAndParameters. add(String newFragment, Map<String,Object> newParameters)
FragmentAndParameters
FragmentAndParameters.Builder. build()
Methods in org.mybatis.dynamic.sql.util that return types with arguments of type FragmentAndParameters Modifier and Type Method Description Optional<FragmentAndParameters>
FragmentAndParameters.Builder. buildOptional()
static Collector<FragmentAndParameters,FragmentCollector,FragmentCollector>
FragmentCollector. collect()
static Collector<FragmentAndParameters,FragmentCollector,FragmentCollector>
FragmentCollector. collect(FragmentAndParameters initialFragment)
Methods in org.mybatis.dynamic.sql.util with parameters of type FragmentAndParameters Modifier and Type Method Description void
FragmentCollector. add(FragmentAndParameters fragmentAndParameters)
static Collector<FragmentAndParameters,FragmentCollector,FragmentCollector>
FragmentCollector. collect(FragmentAndParameters initialFragment)
-
Uses of FragmentAndParameters in org.mybatis.dynamic.sql.where.render
Methods in org.mybatis.dynamic.sql.where.render that return FragmentAndParameters Modifier and Type Method Description FragmentAndParameters
RenderedCriterion. fragmentAndParameters()
FragmentAndParameters
RenderedCriterion. fragmentAndParametersWithConnector()
FragmentAndParameters
WhereConditionVisitor. visit(AbstractColumnComparisonCondition<T> condition)
FragmentAndParameters
WhereConditionVisitor. visit(AbstractListValueCondition<T> condition)
FragmentAndParameters
WhereConditionVisitor. visit(AbstractNoValueCondition<T> condition)
FragmentAndParameters
WhereConditionVisitor. visit(AbstractSingleValueCondition<T> condition)
FragmentAndParameters
WhereConditionVisitor. visit(AbstractSubselectCondition<T> condition)
FragmentAndParameters
WhereConditionVisitor. visit(AbstractTwoValueCondition<T> condition)
Methods in org.mybatis.dynamic.sql.where.render with parameters of type FragmentAndParameters Modifier and Type Method Description RenderedCriterion.Builder
RenderedCriterion.Builder. withFragmentAndParameters(FragmentAndParameters fragmentAndParameters)
-