public interface ExpressionFormatter
format
Expression
s.Modifier and Type | Method and Description |
---|---|
default void |
append(Argument<?> argument) |
default void |
append(CharSequence string) |
default void |
append(Object object) |
default void |
append(SqlOperator<?,?> operator,
Argument<?> argument) |
default String |
format(Conjunction conjunction) |
StringBuilder |
getBuffer() |
boolean |
isResolveNegativeConjunctions() |
StringBuilder getBuffer()
StringBuilder
where to append
the Expression
to format
.default void append(SqlOperator<?,?> operator, Argument<?> argument)
operator
- the SqlOperator
to append.argument
- the Argument
to append.default void append(CharSequence string)
string
- the CharSequence
to append
to the
buffer
.default String format(Conjunction conjunction)
conjunction
- the Conjunction
to append.String
representation of the Conjunction
.boolean isResolveNegativeConjunctions()
true
if negative
Conjunction
s should be resolved via
negation (e.g. !(a OR b)
instead of a NOR b
), false
otherwise.Copyright © 2001–2016 mmm-Team. All rights reserved.