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

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

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

/**
 *
 * @author lstephen
 */
public final class OneToOneHundred extends IntegerScale {

    private static final OneToOneHundred INSTANCE = new OneToOneHundred();

    private OneToOneHundred() {
        super();
    }

    @Override
    protected Integer scale(Integer value) {
        return value;
    }

    public static Rating valueOf(Integer value) {
        return Rating.create(value, INSTANCE);
    }

    public static OneToOneHundred scale() {
        return INSTANCE;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy