com.github.hayesroach.gravatar.Rating Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gravatar-java-client Show documentation
Show all versions of gravatar-java-client Show documentation
A Gravatar Java Client library that is used to communicate with the Gravatar XML-RPC API
The newest version!
package com.github.hayesroach.gravatar;
public enum Rating {
G(0),
PG(1),
R(2),
X(3);
public final int rating;
private Rating(int rating) {
this.rating = rating;
}
public int getNumberValue() {
return rating;
}
}