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

Class Hacker

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

Source from the content-addressed store, hash-verified

1package com.github.javafaker;
2
3public class Hacker {
4 private final Faker faker;
5
6 protected Hacker(Faker faker) {
7 this.faker = faker;
8 }
9
10 public String abbreviation() {
11 return faker.fakeValuesService().resolve("hacker.abbreviation", this, faker);
12 }
13
14 public String adjective() {
15 return faker.fakeValuesService().resolve("hacker.adjective", this, faker);
16 }
17
18 public String noun() {
19 return faker.fakeValuesService().resolve("hacker.noun", this, faker);
20 }
21
22 public String verb() {
23 return faker.fakeValuesService().resolve("hacker.verb", this, faker);
24 }
25
26 public String ingverb() {
27 return faker.fakeValuesService().resolve("hacker.ingverb", this, faker);
28 }
29}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected