Method
writeStringField
(final List<String> query_params,
final String innerExpression)
Source from the content-addressed store, hash-verified
| 87 | } |
| 88 | |
| 89 | @Override |
| 90 | public String writeStringField(final List<String> query_params, |
| 91 | final String innerExpression) { |
| 92 | final StringBuilder buf = new StringBuilder(); |
| 93 | buf.append("alias(") |
| 94 | .append(innerExpression) |
| 95 | .append(query_params == null || query_params.isEmpty() |
| 96 | ? "" : "," + COMMA_JOINER.join(query_params)) |
| 97 | .append(")"); |
| 98 | return buf.toString(); |
| 99 | } |
| 100 | } |
Callers
nothing calls this directly
Tested by
no test coverage detected