com.lin.random.impl.SexRandom Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sql-faker Show documentation
Show all versions of sql-faker Show documentation
A lightweight SQL data creator.
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"};
}
}