com.ljs.ootp.extract.html.ootp5.rating.ZeroToTen Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ootp-extract Show documentation
Show all versions of ootp-extract Show documentation
Extraction of player information from OOTP HTML player pages
The newest version!
package com.ljs.ootp.extract.html.ootp5.rating;
import com.ljs.ootp.extract.html.rating.IntegerScale;
/**
*
* @author lstephen
*/
public final class ZeroToTen extends IntegerScale {
private static final ZeroToTen INSTANCE = new ZeroToTen();
private ZeroToTen() {
super();
}
@Override
protected Integer scale(Integer value) {
return value * 10;
}
public static ZeroToTen scale() {
return INSTANCE;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy