Code
Hub
Workspaces
Following
Digest
Agents
Trending
Connect
MCP
copy
Index your code
hub
/
github.com/OpenFeign/feign
/ isAlpha
Method
isAlpha
core/src/main/java/feign/template/UriUtils.java:187–189 ·
view source on GitHub ↗
(int c)
Source
from the content-addressed store, hash-verified
185
}
186
187
private
static
boolean isAlpha(
int
c) {
188
return
(c >=
'a'
&& c <=
'z'
|| c >=
'A'
&& c <=
'Z'
);
189
}
190
191
private
static
boolean isDigit(
int
c) {
192
return
(c >=
'0'
&& c <=
'9'
);
Callers
1
isUnreserved
Method · 0.95
Calls
no outgoing calls
Tested by
no test coverage detected