public static enum AbstractList.EffectOnCache extends Enum<AbstractList.EffectOnCache>
Enum Constant and Description |
---|
NONE
No effect, cache is still valid.
|
RESET
Cache is not valid anymore and should be reset.
|
Modifier and Type | Method and Description |
---|---|
static AbstractList.EffectOnCache |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AbstractList.EffectOnCache[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AbstractList.EffectOnCache NONE
public static final AbstractList.EffectOnCache RESET
public static AbstractList.EffectOnCache[] values()
for (AbstractList.EffectOnCache c : AbstractList.EffectOnCache.values()) System.out.println(c);
public static AbstractList.EffectOnCache 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 © 2002–2024 Gargoyle Software Inc.. All rights reserved.