net.datafaker.providers.entertainment.FullmetalAlchemist 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.entertainment;
import net.datafaker.providers.base.AbstractProvider;
/**
* @since 1.7.0
*/
public class FullmetalAlchemist extends AbstractProvider {
protected FullmetalAlchemist(EntertainmentProviders faker) {
super(faker);
}
public String character() {
return resolve("fma_brotherhood.characters");
}
public String city() {
return resolve("fma_brotherhood.cities");
}
public String country() {
return resolve("fma_brotherhood.countries");
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy