net.datafaker.providers.base.Animal Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of datafaker Show documentation
Show all versions of datafaker Show documentation
This library is a improved port of JavaFaker (as well as Ruby's stympy/faker gem and Perl's Data::Faker library) that
generates fake data.
It's useful when you're developing a new project and need some pretty data for showcase.
package net.datafaker.providers.base;
import net.datafaker.internal.helper.WordUtils;
/**
* @since 0.8.0
*/
public class Animal extends AbstractProvider {
protected Animal(BaseProviders faker) {
super(faker);
}
public String name() {
return resolve("creature.animal.name");
}
public String scientificName() {
return genus() + " " + species();
}
public String genus() {
return WordUtils.capitalize(faker.resolve("creature.animal.genus"));
}
public String species() {
return resolve("creature.animal.species").toLowerCase();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy