public enum CacheState extends Enum<CacheState>
| 枚举常量和说明 |
|---|
FAILED
缓存失败
|
HEALTHY
缓存成功
|
ILLEGAL_ARG
非法参数
|
REJECTED
缓存被拒绝
|
public static final CacheState HEALTHY
public static final CacheState FAILED
public static final CacheState REJECTED
public static final CacheState ILLEGAL_ARG
public static CacheState[] values()
for (CacheState c : CacheState.values()) System.out.println(c);
public static CacheState valueOf(String name)
name - 要返回的枚举常量的名称。IllegalArgumentException - 如果该枚举类型没有带有指定名称的常量NullPointerException - 如果参数为空值Copyright © 2022. All rights reserved.