public enum CacheInvalidationMode extends java.lang.Enum<CacheInvalidationMode>
| Enum Constant and Description |
|---|
ALL_ROWS
All rows from the cache of a view are invalidated.
|
MATCHING_PK
Only rows which match with the primary key 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(java.lang.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 final CacheInvalidationMode MATCHING_PK
public static CacheInvalidationMode[] values()
for (CacheInvalidationMode c : CacheInvalidationMode.values()) System.out.println(c);
public static CacheInvalidationMode 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 nullCopyright © 2024 Denodo Technologies. All rights reserved.