Skip navigation links

Oracle Fusion Middleware Java API Reference for Oracle Extension SDK Reference
11g Release 1 (11.1.1.5.0)

E13403-06


oracle.javatools.db.ora
Enum MaterializedView.PrebuiltType

java.lang.Object
  extended by java.lang.Enum<MaterializedView.PrebuiltType>
      extended by oracle.javatools.db.ora.MaterializedView.PrebuiltType

All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<MaterializedView.PrebuiltType>
Enclosing class:
MaterializedView

public static enum MaterializedView.PrebuiltType
extends java.lang.Enum<MaterializedView.PrebuiltType>

Indicates whether the materialized view is prebuilt including whether it is specified with or without precision.


Enum Constant Summary
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.

 

Method Summary
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.

 

Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf

 

Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait

 

Enum Constant Detail

NONE

public static final MaterializedView.PrebuiltType NONE
Specify that during creation, the materialized view will not be populated from a pre-exisiting table.

UNSPECIFIED_PRECISION

public static final MaterializedView.PrebuiltType UNSPECIFIED_PRECISION
Specify that during creation the materialized view is to be populated with the information given an exisiting table. This table should be the same name as the view. In Oracle 10.2, setting this option wil default to the same behaviour as setting the PREBUILD_WITHOUT_REDUCED_PRECISION option. This is only used for creating the materialized view.

WITH_REDUCED_PRECISION

public static final MaterializedView.PrebuiltType WITH_REDUCED_PRECISION
Specify that during creation, the materialized view is to be populated with the information given an exisiting table. This table should be the same name as the view. The precision of the table or materialized view columns need not match exactly the precision returned by the view query. This is only used for creating the materialized view.

WITHOUT_REDUCED_PRECISION

public static final MaterializedView.PrebuiltType WITHOUT_REDUCED_PRECISION
Specify that during creation, the materialized view is to be populated with the information given an exisiting table. This table should be the same name as the view. The precision of the table or materialized view columns must match exactly the precision returned by the view query. This is only used for creating the materialized view.

Method Detail

values

public static MaterializedView.PrebuiltType[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
for (MaterializedView.PrebuiltType c : MaterializedView.PrebuiltType.values())
    System.out.println(c);
Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static MaterializedView.PrebuiltType valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
Parameters:
name - the name of the enum constant to be returned.
Returns:
the enum constant with the specified name
Throws:
java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
java.lang.NullPointerException - if the argument is null

Skip navigation links

Oracle Fusion Middleware Java API Reference for Oracle Extension SDK Reference
11g Release 1 (11.1.1.5.0)

E13403-06


Copyright © 1997, 2011, Oracle. All rights reserved.