public static enum Evictor.Mode extends Enum<Evictor.Mode>
Enum Constant and Description |
---|
BEST_EFFORT |
GUARANTEED |
Modifier and Type | Method and Description |
---|---|
static Evictor.Mode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Evictor.Mode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Evictor.Mode BEST_EFFORT
public static final Evictor.Mode GUARANTEED
public static Evictor.Mode[] values()
for (Evictor.Mode c : Evictor.Mode.values()) System.out.println(c);
public static Evictor.Mode 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 © 2023. All Rights Reserved.