public static enum MaterializedView.RewriteCapability extends java.lang.Enum<MaterializedView.RewriteCapability>
null (rather than NONE) is used when the value in the Database
is NONE.MaterializedView.getRewriteType()| Enum Constant and Description |
|---|
GENERAL
Defining query of the materialized view contained no restrictions
on the use of query rewrite, so Oracle Database can apply any
rewrite rule that is supported.
|
NONE
Deprecated.
Use
null rather than NONE. |
TEXTMATCH
Defining query of the materialized view contained restrictions
on the use of query rewrite.
|
| Modifier and Type | Method and Description |
|---|---|
static MaterializedView.RewriteCapability |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static MaterializedView.RewriteCapability[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
@Deprecated public static final MaterializedView.RewriteCapability NONE
null rather than NONE.MaterializedView.getRewriteType()public static final MaterializedView.RewriteCapability TEXTMATCH
MaterializedView.getRewriteType()public static final MaterializedView.RewriteCapability GENERAL
MaterializedView.getRewriteType()public static MaterializedView.RewriteCapability[] values()
for (MaterializedView.RewriteCapability c : MaterializedView.RewriteCapability.values()) System.out.println(c);
public static MaterializedView.RewriteCapability 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