Package com.flaptor.hounder.crawler.modules.boost

Examples of com.flaptor.hounder.crawler.modules.boost.ABoostValue


        ABoostValue.Type valueType = null;
        valueType = ABoostValue.Type.None;
        String valueString = mdlConfig.getString("boost.value");
        if ("constant".equals(valueString)) valueType = ABoostValue.Type.Constant;
        if ("attribute".equals(valueString)) valueType = ABoostValue.Type.Attribute;
        ABoostValue value = ABoostValue.getBoostValue(mdlConfig,valueType);

        booster = new Booster(condition,value,method);
    }
View Full Code Here

TOP

Related Classes of com.flaptor.hounder.crawler.modules.boost.ABoostValue

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.