MCPcopy Create free account
hub / github.com/apache/nutch / getFields

Method getFields

src/java/org/apache/nutch/parse/ParseFilters.java:117–126  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

115 }
116
117 public Collection<WebPage.Field> getFields() {
118 Collection<WebPage.Field> fields = new HashSet<WebPage.Field>();
119 for (ParseFilter htmlParseFilter : parseFilters) {
120 Collection<WebPage.Field> pluginFields = htmlParseFilter.getFields();
121 if (pluginFields != null) {
122 fields.addAll(pluginFields);
123 }
124 }
125 return fields;
126 }
127}

Callers 1

getFieldsMethod · 0.95

Calls 1

getFieldsMethod · 0.65

Tested by

no test coverage detected