public enum SystemType extends Enum<SystemType> implements ValueLabel, ValueMatch, ValuePattern
| 限定符和类型 | 方法和说明 |
|---|---|
String |
label() |
boolean |
match(String code) |
int |
order() |
String |
pattern() |
String |
value() |
static SystemType |
valueOf(String name)
返回带有指定名称的该类型的枚举常量。
|
static SystemType[] |
values()
按照声明该枚举类型的常量的顺序, 返回
包含这些常量的数组。
|
public static final SystemType _10_29
public static final SystemType _30_49
public static final SystemType _50_69
public static final SystemType _91_99
public static final SystemType _A0_Z9
public static final SystemType _UNKNOW
public static SystemType[] values()
for (SystemType c : SystemType.values()) System.out.println(c);
public static SystemType valueOf(String name)
name - 要返回的枚举常量的名称。IllegalArgumentException - 如果该枚举类型没有带有指定名称的常量NullPointerException - 如果参数为空值public String value()
value 在接口中 ValueLabelpublic String label()
label 在接口中 ValueLabelpublic String pattern()
pattern 在接口中 ValuePatternpublic boolean match(String code)
match 在接口中 ValueMatchpublic int order()
order 在接口中 ValuePatternCopyright © 2021. All rights reserved.