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

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

package com.github.javafaker;

public class Overwatch {
    private final Faker faker;

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

    public String hero() {
        return faker.fakeValuesService().resolve("overwatch.heroes", this, faker);
    }

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy