All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.ljs.ootp.extract.html.rating.IntegerScale Maven / Gradle / Ivy

The newest version!
package com.ljs.ootp.extract.html.rating;

/**
 *
 * @author lstephen
 */
public abstract class IntegerScale implements Scale {

    @Override
    public Rating parse(String s) {
        return Rating.create(Integer.parseInt(s), this);
    }

    @Override
    public Rating normalize(Integer value) {
        return OneToOneHundred.valueOf(scale(value));
    }

    protected abstract Integer scale(Integer value);

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy