Package com.vst.util

Examples of com.vst.util.StrengthComparator


public class StrengthManagerImpl extends BaseManager implements StrengthManager {
    private StrengthDao dao;

    public Float getAveragePower(List strengthPoints) {
        StrengthComparator strengthComparator = new StrengthComparator();
        Collections.sort(strengthPoints, strengthComparator);
        //removing border values
        if (strengthPoints.size() > 2) {
            strengthPoints.remove(0);
            strengthPoints.remove(strengthPoints.size() - 1);
View Full Code Here

TOP

Related Classes of com.vst.util.StrengthComparator

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.