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

com.lin.random.impl.AgeRandom Maven / Gradle / Ivy

There is a newer version: 1.0.8
Show newest version
package com.lin.random.impl;

import com.lin.random.RandomData;
import com.lin.utils.RandomUtils;

/**
 * 随机年龄生成器(18到60岁)
 * @author lkmc2
 * @since 1.0.0
 */
public class AgeRandom implements RandomData {

    @Override
    public Integer next() {
        return RandomUtils.nextIntRange(18, 60);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy