MCPcopy
hub / github.com/lightbend/config / length

Method length

config/src/main/java/com/typesafe/config/impl/Path.java:106–114  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

104 }
105
106 int length() {
107 int count = 1;
108 Path p = remainder;
109 while (p != null) {
110 count += 1;
111 p = p.remainder;
112 }
113 return count;
114 }
115
116 Path subPath(int removeFromFront) {
117 int count = removeFromFront;

Callers 15

startsWithMethod · 0.95
findOrNullMethod · 0.95
hasValueMethod · 0.95
changeValueOnPathMethod · 0.95
addValueOnPathMethod · 0.95
makeMessageMethod · 0.80
toStringMethod · 0.80
hasFunkyCharsMethod · 0.80
relativizedMethod · 0.80
pullUnquotedTextMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected