static String segment(String s) { var out = CaseStyle.snakeCase.transform(s); return out.endsWith('_api') ? out.substring(0, out.length - 4) : out; }