(final QueryString qs)
| 228 | } |
| 229 | |
| 230 | @Override |
| 231 | public void toString(final QueryString qs) { |
| 232 | if(min != null) qs.token(expr).token(mni ? ">= " : "> ").quoted(min); |
| 233 | if(min != null && max != null) qs.token(AND); |
| 234 | if(max != null) qs.token(expr).token(mxi ? "<= " : "< ").quoted(max); |
| 235 | } |
| 236 | } |