![JAR search and dependency download from the Maven repository](/logo.png)
com.ljs.ootp.extract.html.rating.OneToOneHundred 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.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