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

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

package com.github.javafaker;

public class PhoneNumber {
    private final Faker faker;

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

    public String cellPhone() {
        return faker.numerify(faker.fakeValuesService().resolve("cell_phone.formats", this, faker));
    }

    public String phoneNumber() {
        return faker.numerify(faker.fakeValuesService().resolve("phone_number.formats", this, faker));
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy