public enum ResourceType extends Enum<ResourceType>
| 枚举常量和说明 |
|---|
ORGANIZATION
组织层
|
PROJECT
项目层
|
SITE
site层
|
| 限定符和类型 | 方法和说明 |
|---|---|
static boolean |
contains(String value) |
static boolean |
isOrganization(String value) |
static boolean |
isProject(String value) |
static boolean |
isSite(String value) |
String |
value() |
static ResourceType |
valueOf(String name)
返回带有指定名称的该类型的枚举常量。
|
static ResourceType[] |
values()
按照声明该枚举类型的常量的顺序, 返回
包含这些常量的数组。
|
public static final ResourceType SITE
public static final ResourceType ORGANIZATION
public static final ResourceType PROJECT
public static ResourceType[] values()
for (ResourceType c : ResourceType.values()) System.out.println(c);
public static ResourceType valueOf(String name)
name - 要返回的枚举常量的名称。IllegalArgumentException - 如果该枚举类型没有带有指定名称的常量NullPointerException - 如果参数为空值public String value()
public static boolean contains(String value)
public static boolean isSite(String value)
public static boolean isOrganization(String value)
public static boolean isProject(String value)
Copyright © 2019. All rights reserved.