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

com.github.hayesroach.gravatar.Rating Maven / Gradle / Ivy

Go to download

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;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy