Package com.atlantbh.nutch.filter.xpath.config

Examples of com.atlantbh.nutch.filter.xpath.config.FieldType


      if(FilterUtils.isMatch(xPathIndexerProperties.getPageUrlFilterRegex(), new String(url.getBytes()).substring(0, url.getLength()))) {
       
        List<XPathIndexerPropertiesField> xPathIndexerPropertiesFieldList = xPathIndexerProperties.getXPathIndexerPropertiesFieldList();
        for(XPathIndexerPropertiesField xPathIndexerPropertiesField : xPathIndexerPropertiesFieldList) {
         
          FieldType type = xPathIndexerPropertiesField.getType();
          for(String stringValue : metadata.getValues(xPathIndexerPropertiesField.getName())) {
           
            Object value;
            switch(type) {
              case STRING:
View Full Code Here

TOP

Related Classes of com.atlantbh.nutch.filter.xpath.config.FieldType

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.