com.github.javafaker.Ancient Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of com.liferay.apio.architect.sample
Show all versions of com.liferay.apio.architect.sample
Liferay Apio Architect Sample
package com.github.javafaker;
public class Ancient {
private final Faker faker;
Ancient(Faker faker) {
this.faker = faker;
}
public String god() {
return faker.resolve("ancient.god");
}
public String primordial() {
return faker.resolve("ancient.primordial");
}
public String titan() {
return faker.resolve("ancient.titan");
}
public String hero() {
return faker.resolve("ancient.hero");
}
}