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

com.github.javafaker.LeagueOfLegends Maven / Gradle / Ivy

Go to download

This library is a port of Ruby's stympy/faker gem (as well as Perl's Data::Faker library) that generates fake data. It's useful when you're developing a new project and need some pretty data for showcase.

There is a newer version: 1.0.2
Show newest version
package com.github.javafaker;

public class LeagueOfLegends {
    private final Faker faker;

    protected LeagueOfLegends(Faker faker) {
        this.faker = faker;
    }

    public String champion() {
        return faker.fakeValuesService().resolve("league_of_legends.champion", this, faker);
    }

    public String location() {
        return faker.fakeValuesService().resolve("league_of_legends.location", this, faker);
    }

    public String quote() {
        return faker.fakeValuesService().resolve("league_of_legends.quote", this, faker);
    }

    public String summonerSpell() {
        return faker.fakeValuesService().resolve("league_of_legends.summoner_spell", this, faker);
    }

    public String masteries() {
        return faker.fakeValuesService().resolve("league_of_legends.masteries", this, faker);
    }

    public String rank() {
        return faker.fakeValuesService().resolve("league_of_legends.rank", this, faker);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy