public enum ScopeType extends Enum<ScopeType>
| 枚举常量和说明 |
|---|
INTERSECTION |
UNION |
| 限定符和类型 | 方法和说明 |
|---|---|
static ScopeType |
fromValue(Integer desc) |
Integer |
getDesc() |
String |
getValue() |
static ScopeType |
valueOf(String name)
返回带有指定名称的该类型的枚举常量。
|
static ScopeType[] |
values()
按照声明该枚举类型的常量的顺序, 返回
包含这些常量的数组。
|
public static final ScopeType UNION
public static final ScopeType INTERSECTION
public static ScopeType[] values()
for (ScopeType c : ScopeType.values()) System.out.println(c);
public static ScopeType valueOf(String name)
name - 要返回的枚举常量的名称。IllegalArgumentException - 如果该枚举类型没有带有指定名称的常量NullPointerException - 如果参数为空值public Integer getDesc()
public String getValue()
Copyright © 2016–2023 MEIZUPUSH Group. All rights reserved.