All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.javafaker.Stock Maven / Gradle / Ivy

There is a newer version: 1.0.16
Show newest version
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);
	}
	
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy