MCPcopy Create free account
hub / github.com/apache/orc / consumeChar

Method consumeChar

java/core/src/java/org/apache/orc/impl/ParserUtils.java:143–151  ·  view source on GitHub ↗
(ParserUtils.StringPosition source,
                                     char ch)

Source from the content-addressed store, hash-verified

141 }
142
143 private static boolean consumeChar(ParserUtils.StringPosition source,
144 char ch) {
145 boolean result = source.position < source.length &&
146 source.value.charAt(source.position) == ch;
147 if (result) {
148 source.position += 1;
149 }
150 return result;
151 }
152
153 private static void parseUnion(TypeDescription type,
154 ParserUtils.StringPosition source) {

Callers 7

parseUnionMethod · 0.95
parseStructMethod · 0.95
splitNameMethod · 0.95
findSubtypeListMethod · 0.95
parseKeysMethod · 0.95
parseMasksMethod · 0.95
buildMaskDescriptionMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected