public enum DataMode extends Enum<DataMode>
Enum Constant and Description |
---|
CIVIL_CAR_LICECEN
生成一组民用车牌
|
ELCHEE_CAR_LICECEN
生成一组大使馆车牌
|
ENERGY_CAR_LICECEN
生成一组新能源汽车车牌
|
FIXED_PHONE
生成一组座机号码
|
IDCARD
生成一组身份证号码
|
MOBLE_PHONE
生成一组手机号码
|
NAME
生成一组姓名
|
POLICE_CAR_LICECEN
生成一组警用车牌
|
Modifier and Type | Method and Description |
---|---|
static DataMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DataMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DataMode IDCARD
public static final DataMode MOBLE_PHONE
public static final DataMode FIXED_PHONE
public static final DataMode CIVIL_CAR_LICECEN
public static final DataMode POLICE_CAR_LICECEN
public static final DataMode ELCHEE_CAR_LICECEN
public static final DataMode ENERGY_CAR_LICECEN
public static final DataMode NAME
public static DataMode[] values()
for (DataMode c : DataMode.values()) System.out.println(c);
public static DataMode valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullCopyright © 2024. All rights reserved.