MCPcopy Create free account
hub / github.com/DiUS/java-faker / Ancient

Class Ancient

src/main/java/com/github/javafaker/Ancient.java:3–26  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1package com.github.javafaker;
2
3public class Ancient {
4
5 private final Faker faker;
6
7 protected Ancient(Faker faker) {
8 this.faker = faker;
9 }
10
11 public String god() {
12 return faker.resolve("ancient.god");
13 }
14
15 public String primordial() {
16 return faker.resolve("ancient.primordial");
17 }
18
19 public String titan() {
20 return faker.resolve("ancient.titan");
21 }
22
23 public String hero() {
24 return faker.resolve("ancient.hero");
25 }
26}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected