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

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

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

public class App {
    private final Faker faker;

    App(Faker faker) {
        this.faker = faker;
    }

    public String name() {
        return faker.fakeValuesService().resolve("app.name", this, faker);
    }

    public String version() {
        return faker.numerify(faker.fakeValuesService().resolve("app.version", this, faker));
    }

    public String author() {
        return faker.fakeValuesService().resolve("app.author", this, faker);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy