public enum UserOperType extends Enum<UserOperType>
| Enum Constant and Description |
|---|
CLEAR
清除list
|
EVICT
删除限制缓存
|
LIST |
VIEW
查看权限
|
| Modifier and Type | Method and Description |
|---|---|
String |
getType() |
static UserOperType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static UserOperType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final UserOperType VIEW
public static final UserOperType EVICT
public static final UserOperType CLEAR
public static final UserOperType LIST
public static UserOperType[] values()
for (UserOperType c : UserOperType.values()) System.out.println(c);
public static UserOperType 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 nullpublic String getType()
Copyright © 2023. All rights reserved.