public enum DeptPermType extends Enum<DeptPermType>
| 枚举常量和说明 |
|---|
_ALL_
全部
|
current
当前部门
|
currentAndSub
当前及子部门
|
none
无部门权限仅个人
|
specified
指定部门
|
specifiedAndSub
指定及子部门
|
public static final DeptPermType _ALL_
public static final DeptPermType none
public static final DeptPermType current
public static final DeptPermType currentAndSub
public static final DeptPermType specified
public static final DeptPermType specifiedAndSub
public static DeptPermType[] values()
for (DeptPermType c : DeptPermType.values()) System.out.println(c);
public static DeptPermType valueOf(String name)
name - 要返回的枚举常量的名称。IllegalArgumentException - 如果该枚举类型没有带有指定名称的常量NullPointerException - 如果参数为空值Copyright © 2025. All rights reserved.