MCPcopy Index your code
hub / github.com/OpenFeign/feign / isSubDelimiter

Method isSubDelimiter

core/src/main/java/feign/template/UriUtils.java:205–217  ·  view source on GitHub ↗
(int c)

Source from the content-addressed store, hash-verified

203 }
204
205 private static boolean isSubDelimiter(int c) {
206 return (c == '!')
207 || (c == '$')
208 || (c == '&')
209 || (c == '\'')
210 || (c == '(')
211 || (c == ')')
212 || (c == '*')
213 || (c == '+')
214 || (c == ',')
215 || (c == ';')
216 || (c == '=');
217 }
218
219 private static boolean isUnreserved(int c) {
220 return isAlpha(c) || isDigit(c) || c == '-' || c == '.' || c == '_' || c == '~';

Callers 2

isReservedMethod · 0.95
isPcharMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected