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

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

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

import com.lin.random.base.BaseRandomCreator;

/**
 * 随机性别(0 表示男,1 表示女)
 * @author lkmc2
 * @since 1.0.0
 */
public class SexRandom extends BaseRandomCreator {

    @Override
    public String[] createOptionsArray() {
        return new String[]{"0", "1"};
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy