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

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

package com.github.javafaker;

public class Cat {

    private final Faker faker;

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

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

    public String breed() {
        return faker.fakeValuesService().resolve("cat.breed", this, faker);
    }

    public String registry() {
        return faker.fakeValuesService().resolve("cat.registry", this, faker);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy