com.github.javafaker.Color Maven / Gradle / Ivy
package com.github.javafaker;
public class Color {
private final Faker faker;
protected Color(Faker faker) {
this.faker = faker;
}
public String name() {
return faker.fakeValuesService().resolve("color.name", this, faker);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy