public static enum MaterializedView.Staleness extends java.lang.Enum<MaterializedView.Staleness>
Enum Constant and Description |
---|
COMPILATION_ERROR
The Materialized view compilation failed.
|
FRESH
Materialized view is a read-consistent view of the current state of its
masters
|
NEEDS_COMPILE
The Materialized view needs compiling.
|
STALE
Materialized view is out of date because one or more of its masters has
changed.
|
UNDEFINED
Materialized view has remote masters.
|
UNKNOWN
Oracle Database does not know whether the materialized view is in a
read-consistent view of its masters from any point in time (this is the
case for materialized views created on prebuilt tables)
|
UNUSABLE
Materialized view is not a read-consistent view of its masters from any
point in time
|
Modifier and Type | Method and Description |
---|---|
static MaterializedView.Staleness |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static MaterializedView.Staleness[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MaterializedView.Staleness FRESH
public static final MaterializedView.Staleness STALE
public static final MaterializedView.Staleness UNUSABLE
public static final MaterializedView.Staleness UNKNOWN
public static final MaterializedView.Staleness UNDEFINED
public static final MaterializedView.Staleness NEEDS_COMPILE
public static final MaterializedView.Staleness COMPILATION_ERROR
public static MaterializedView.Staleness[] values()
for (MaterializedView.Staleness c : MaterializedView.Staleness.values()) System.out.println(c);
public static MaterializedView.Staleness 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