public static enum MaterializedView.PrebuiltType extends java.lang.Enum<MaterializedView.PrebuiltType>
| Enum Constant and Description |
|---|
NONE
Specify that during creation, the materialized view will not be populated from a pre-exisiting table.
|
UNSPECIFIED_PRECISION
Specify that during creation the materialized view is to be populated with the information given an exisiting table.
|
WITH_REDUCED_PRECISION
Specify that during creation, the materialized view is to be populated with the information given an exisiting table.
|
WITHOUT_REDUCED_PRECISION
Specify that during creation, the materialized view is to be populated with the information given an exisiting table.
|
| Modifier and Type | Method and Description |
|---|---|
static MaterializedView.PrebuiltType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static MaterializedView.PrebuiltType[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared.
|
public static final MaterializedView.PrebuiltType NONE
public static final MaterializedView.PrebuiltType UNSPECIFIED_PRECISION
public static final MaterializedView.PrebuiltType WITH_REDUCED_PRECISION
public static final MaterializedView.PrebuiltType WITHOUT_REDUCED_PRECISION
public static MaterializedView.PrebuiltType[] values()
for (MaterializedView.PrebuiltType c : MaterializedView.PrebuiltType.values())
System.out.println(c);
public static MaterializedView.PrebuiltType 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