MCPcopy Create free account
hub / github.com/colbymchenry/codegraph / capitalizeJava

Function capitalizeJava

src/extraction/languages/java.ts:79–81  ·  view source on GitHub ↗
(name: string)

Source from the content-addressed store, hash-verified

77}
78
79function capitalizeJava(name: string): string {
80 return name ? name.charAt(0).toUpperCase() + name.slice(1) : name;
81}
82
83/** Lombok getter name: `getX`, or `isX` for a primitive boolean (keeping an existing `isFoo` field name). */
84function lombokGetterName(fieldName: string, isBooleanPrimitive: boolean): string {

Callers 2

lombokGetterNameFunction · 0.85
lombokSetterNameFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected