# `Faker.Industry.En`
[🔗](https://github.com/artkay/fakerer/blob/v1.0.0/lib/faker/industry/en.ex#L1)

Functions for generating Industry related data in English

# `industry`

```elixir
@spec industry() :: String.t()
```

Returns a industry name string

## Examples

    iex> Faker.Industry.En.industry()
    "Oil & Gas"
    iex> Faker.Industry.En.industry()
    "Basic Materials"
    iex> Faker.Industry.En.industry()
    "Consumer Services"
    iex> Faker.Industry.En.industry()
    "Health Care"

# `sector`

```elixir
@spec sector() :: String.t()
```

Returns a sector name string

## Examples

    iex> Faker.Industry.En.sector()
    "Food & Drug Retailers"
    iex> Faker.Industry.En.sector()
    "Banks"
    iex> Faker.Industry.En.sector()
    "Software & Computer Services"
    iex> Faker.Industry.En.sector()
    "Media"

# `sub_sector`

```elixir
@spec sub_sector() :: String.t()
```

Returns a sub sector name string

## Examples

    iex> Faker.Industry.En.sub_sector()
    "Electrical Components & Equipment"
    iex> Faker.Industry.En.sub_sector()
    "Publishing"
    iex> Faker.Industry.En.sub_sector()
    "Alternative Electricity"
    iex> Faker.Industry.En.sub_sector()
    "Forestry"

# `super_sector`

```elixir
@spec super_sector() :: String.t()
```

Returns a super sector name string

## Examples

    iex> Faker.Industry.En.super_sector()
    "Automobiles & Parts"
    iex> Faker.Industry.En.super_sector()
    "Banks"
    iex> Faker.Industry.En.super_sector()
    "Automobiles & Parts"
    iex> Faker.Industry.En.super_sector()
    "Health Care"

---

*Consult [api-reference.md](api-reference.md) for complete listing*
