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

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

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

public class Artist {

    private final Faker faker;

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

    public String name() {
        return faker.fakeValuesService().fetchString("artist.names");
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy