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

Method isUnreserved

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

Source from the content-addressed store, hash-verified

217 }
218
219 private static boolean isUnreserved(int c) {
220 return isAlpha(c) || isDigit(c) || c == '-' || c == '.' || c == '_' || c == '~';
221 }
222
223 private static boolean isReserved(int c) {
224 return isGenericDelimiter(c) || isSubDelimiter(c);

Callers 3

isEncodedMethod · 0.95
encodeChunkMethod · 0.95
isPcharMethod · 0.95

Calls 2

isAlphaMethod · 0.95
isDigitMethod · 0.95

Tested by

no test coverage detected