Package com.mapr.synth.samplers

Source Code of com.mapr.synth.samplers.AddressSampler

package com.mapr.synth.samplers;

import com.fasterxml.jackson.databind.JsonNode;
import com.fasterxml.jackson.databind.node.TextNode;

/**
* Sample kind of plausible addresses
*
* Thread safe
*/
public class AddressSampler extends FieldSampler {

    private final StreetNameSampler street;
    private final ForeignKeySampler number;

    public AddressSampler() {
        street = new StreetNameSampler();
        number = new ForeignKeySampler(100000, 0.5);
    }

    @Override
    public JsonNode sample() {
        return new TextNode(number.sample().asInt() + " " + street.sample().asText());
    }
}
TOP

Related Classes of com.mapr.synth.samplers.AddressSampler

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.