public enum SysUserServiceEnum extends Enum<SysUserServiceEnum>
| Enum Constant and Description |
|---|
DEFAULT
默认用户,静态方法创建的用户
|
LOCAL
当前应用通过sys模块获取用户
|
REMOTE
通过远端sys服务获取用户
|
| Modifier and Type | Method and Description |
|---|---|
static SysUserServiceEnum |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SysUserServiceEnum[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SysUserServiceEnum DEFAULT
public static final SysUserServiceEnum LOCAL
public static final SysUserServiceEnum REMOTE
public static SysUserServiceEnum[] values()
for (SysUserServiceEnum c : SysUserServiceEnum.values()) System.out.println(c);
public static SysUserServiceEnum valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2019. All rights reserved.