public enum CacheChangeType extends Enum<CacheChangeType>
| 限定符和类型 | 方法和说明 |
|---|---|
static CacheChangeType |
from(Integer method) |
static CacheChangeType |
valueOf(String name)
返回带有指定名称的该类型的枚举常量。
|
static CacheChangeType[] |
values()
按照声明该枚举类型的常量的顺序, 返回
包含这些常量的数组。
|
public static final CacheChangeType REMOVE
public static final CacheChangeType UPDATE
public static final CacheChangeType PUT
public static final CacheChangeType CLEAR
public static CacheChangeType[] values()
for (CacheChangeType c : CacheChangeType.values()) System.out.println(c);
public static CacheChangeType valueOf(String name)
name - 要返回的枚举常量的名称。IllegalArgumentException - 如果该枚举类型没有带有指定名称的常量NullPointerException - 如果参数为空值public static CacheChangeType from(Integer method)
Copyright © 2019. All rights reserved.