public enum CacheInvalidationMode extends Enum<CacheInvalidationMode>
Enum Constant and Description |
---|
ALL_ROWS
All rows from the cache of a view are invalidated.
|
MATCHING_ROWS
Only rows which match with the query are invalidated.
|
NONE
Cache is not invalidated.
|
Modifier and Type | Method and Description |
---|---|
static CacheInvalidationMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CacheInvalidationMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CacheInvalidationMode NONE
public static final CacheInvalidationMode ALL_ROWS
public static final CacheInvalidationMode MATCHING_ROWS
public static CacheInvalidationMode[] values()
for (CacheInvalidationMode c : CacheInvalidationMode.values()) System.out.println(c);
public static CacheInvalidationMode 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 © 2021 Denodo Technologies. All rights reserved.