- Add the Codota plugin to your IDE and get smart completions
private void myMethod () {StringBuilder s =
new StringBuilder()
new StringBuilder(32)
String str;new StringBuilder(str)
- Smart code suggestions by Codota
}
private boolean isQueryById() { if (condition == null || !(condition instanceof SimpleCondition)) { return false; } SimpleCondition c = (SimpleCondition) condition; return c.isIdField() && c.isEqualOperator(); }
private void normalizeIdRefs() { if (isIdField()) { if (whereValue instanceof String) { whereValue = IdRef.parse(r, (String) whereValue); } else if (whereValue instanceof List) { whereValue = convertToIdRefs((List<?>) whereValue); } } }