public static enum MaterializedView.FastRefreshable extends java.lang.Enum<MaterializedView.FastRefreshable>
| Enum Constant and Description | 
|---|
DIRLOAD
Fast refresh is supported only for direct loads 
 | 
DIRLOAD_DML
Fast refresh is supported for both direct loads and DML operations 
 | 
DIRLOAD_LIMITEDDML
Fast refresh is supported for direct loads and a subset of DML operations 
 | 
DML
Fast refresh is supported only for DML operations 
 | 
NO
Materialized view is not fast refreshable, and hence is complex 
 | 
| Modifier and Type | Method and Description | 
|---|---|
static MaterializedView.FastRefreshable | 
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. 
 | 
static MaterializedView.FastRefreshable[] | 
values()
Returns an array containing the constants of this enum type, in the order they are declared. 
 | 
public static final MaterializedView.FastRefreshable NO
public static final MaterializedView.FastRefreshable DIRLOAD
public static final MaterializedView.FastRefreshable DML
public static final MaterializedView.FastRefreshable DIRLOAD_DML
public static final MaterializedView.FastRefreshable DIRLOAD_LIMITEDDML
public static MaterializedView.FastRefreshable[] values()
for (MaterializedView.FastRefreshable c : MaterializedView.FastRefreshable.values())
    System.out.println(c);
public static MaterializedView.FastRefreshable 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