public enum RemovalCause extends java.lang.Enum<RemovalCause>
| Enum Constant and Description |
|---|
COLLECTED |
EXPIRED |
EXPLICIT |
REPLACED |
SIZE |
| Modifier and Type | Method and Description |
|---|---|
static RemovalCause |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static RemovalCause[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RemovalCause EXPLICIT
public static final RemovalCause REPLACED
public static final RemovalCause COLLECTED
public static final RemovalCause EXPIRED
public static final RemovalCause SIZE
public static RemovalCause[] values()
for (RemovalCause c : RemovalCause.values()) System.out.println(c);
public static RemovalCause valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null