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

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

package com.github.javafaker;

public class Demographic {

    private final Faker faker;

    protected Demographic(Faker faker) {
        this.faker = faker;
    }

    public String race() {
        return faker.fakeValuesService().fetchString("demographic.race");
    }

    public String educationalAttainment() {
        return faker.fakeValuesService().fetchString("demographic.educational_attainment");
    }

    public String demonym() {
        return faker.fakeValuesService().fetchString("demographic.demonym");
    }

    public String sex() {
        return faker.fakeValuesService().fetchString("demographic.sex");
    }

    public String maritalStatus() {
        return faker.fakeValuesService().fetchString("demographic.marital_status");
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy