com.github.javafaker.Stock 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 Stock {
private final Faker faker;
Stock(Faker faker) {
this.faker = faker;
}
public String nsdqSymbol() {
return faker.fakeValuesService().resolve("stock.symbol_nsdq", this, faker);
}
public String nyseSymbol() {
return faker.fakeValuesService().resolve("stock.symbol_nyse", this, faker);
}
}