Faker v0.11.0 Faker.Industry View Source

Functions for generating Industry related data Reference https://en.wikipedia.org/wiki/Industry_Classification_Benchmark

Link to this section Summary

Functions

Returns a Industry name string

Returns a Sector name string

Returns a Sub Sector name string

Returns a Super Sector name string

Link to this section Functions

Returns a Industry name string

Examples

iex> Faker.Industry.industry
"Oil & Gas"
iex> Faker.Industry.industry
"Health Care"
iex> Faker.Industry.industry
"Consumer Services"
iex> Faker.Industry.industry
"Telecommunications"

Returns a Sector name string

Examples

iex> Faker.Industry.sector
"Beverages"
iex> Faker.Industry.sector
"Chemicals"
iex> Faker.Industry.sector
"Industrial Engineering"
iex> Faker.Industry.sector
"Mining"
Link to this function sub_sector() View Source
sub_sector() :: String.t()

Returns a Sub Sector name string

Examples

iex> Faker.Industry.sub_sector()
"General Mining"
iex> Faker.Industry.sub_sector()
"Defense"
iex> Faker.Industry.sub_sector()
"ÊPaper"
iex> Faker.Industry.sub_sector()
"Pipelines"
Link to this function super_sector() View Source
super_sector() :: String.t()

Returns a Super Sector name string

Examples

iex> Faker.Industry.super_sector
"Media"
iex> Faker.Industry.super_sector
"Banks"
iex> Faker.Industry.super_sector
"Chemicals"
iex> Faker.Industry.super_sector
"Oil & Gas"