public static enum MaterializedView.RefreshMethod extends java.lang.Enum<MaterializedView.RefreshMethod>
Enum Constant and Description |
---|
COMPLETE
Materialized view is completely refreshed from the masters
|
FAST
Oracle Database performs an incremental refresh applying changes that
correspond to changes in the masters since the last refresh
When you specify FAST refresh at create time, Oracle Database verifies
that the materialized view you are creating is eligible for fast refresh.
|
FORCE
Oracle Database performs a fast refresh if possible, otherwise a complete
refresh
|
NA
Deprecated.
- If Refresh Method is not applicable, the property value should be null
|
NEVER
Deprecated.
- Represented using the refreshMode property == RefershMode.NEVER
|
Modifier and Type | Method and Description |
---|---|
static MaterializedView.RefreshMethod |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static MaterializedView.RefreshMethod[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MaterializedView.RefreshMethod FAST
public static final MaterializedView.RefreshMethod COMPLETE
public static final MaterializedView.RefreshMethod FORCE
@Deprecated public static final MaterializedView.RefreshMethod NEVER
@Deprecated public static final MaterializedView.RefreshMethod NA
public static MaterializedView.RefreshMethod[] values()
for (MaterializedView.RefreshMethod c : MaterializedView.RefreshMethod.values()) System.out.println(c);
public static MaterializedView.RefreshMethod 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