public enum Regular extends Enum<Regular>
| 枚举常量和说明 |
|---|
carriageReturn
回车符
|
domain
域名
|
Email
email
|
formFeedCharacter
换页符
|
idNumber
身份证号
|
internetURL
内部链接
|
lineBreak
换行符
|
phone
手机号
|
tabs
制表符
|
public static final Regular tabs
public static final Regular carriageReturn
public static final Regular lineBreak
public static final Regular formFeedCharacter
public static final Regular phone
public static final Regular Email
public static final Regular domain
public static final Regular internetURL
public static final Regular idNumber
public static Regular[] values()
for (Regular c : Regular.values()) System.out.println(c);
public static Regular valueOf(String name)
name - 要返回的枚举常量的名称。IllegalArgumentException - 如果该枚举类型没有带有指定名称的常量NullPointerException - 如果参数为空值public String value()
Copyright © 2022. All rights reserved.