MCPcopy Create free account
hub / github.com/BaseXdb/basex / toString

Method toString

basex-core/src/main/java/org/basex/query/expr/CmpSR.java:230–235  ·  view source on GitHub ↗
(final QueryString qs)

Source from the content-addressed store, hash-verified

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}

Callers

nothing calls this directly

Calls 2

quotedMethod · 0.80
tokenMethod · 0.65

Tested by

no test coverage detected