public static enum DataCache.CacheMode extends java.lang.Enum<DataCache.CacheMode>
Enum Constant and Description |
---|
FLACH
Konfigurationsdaten werden für einen Typ von der Konfiguration
ermittelt.
|
NICHT
Konfigurationsdaten werden einzeln von der Konfiguration ermittelt.
|
TIEF
Konfigurationsdaten werden für einen Typ und alle Basistypen von der
Konfiguration ermittelt.
|
Modifier and Type | Method and Description |
---|---|
static DataCache.CacheMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static DataCache.CacheMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DataCache.CacheMode NICHT
public static final DataCache.CacheMode FLACH
public static final DataCache.CacheMode TIEF
public static DataCache.CacheMode[] values()
for (DataCache.CacheMode c : DataCache.CacheMode.values()) System.out.println(c);
public static DataCache.CacheMode 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