Skip navigation links
oracle.olapi.syntax
Class BuildProcess
java.lang.Object
oracle.olapi.syntax.SyntaxObject
oracle.olapi.syntax.BuildProcess
-
public final class BuildProcess
- extends SyntaxObject
A SyntaxObject
that contains one or more BuildItem
objects, each of which specifies a database object to build and how to build it.
Constructor Summary |
BuildProcess(BuildItem[] items)
Creates a BuildProcess that has the BuildItem objects in the specified array. |
BuildProcess(java.util.List<BuildItem> items)
Creates a BuildProcess that has the BuildItem objects in the specified list. |
Method Summary |
BuildItem[] |
getBuildItems()
Gets the BuildItem objects that are contained by this BuildProcess . |
java.lang.Object |
visit(SyntaxObjectVisitor visitor, java.lang.Object context)
Calls the visitBuildProcess method of the SyntaxObjectVisitor and passes that method this BuildProcess and an Object . |
Methods inherited from class oracle.olapi.syntax.SyntaxObject |
fromSyntax, fromSyntax, fromSyntax, fromSyntax, fromSyntax, isValid, toSyntax, toSyntax, toSyntax, toSyntax, toSyntax |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
BuildProcess
public BuildProcess(BuildItem[] items)
- Creates a
BuildProcess
that has the BuildItem
objects in the specified array.
- Parameters:
items
- An array of BuildItem
objects.
BuildProcess
public BuildProcess(java.util.List<BuildItem> items)
- Creates a
BuildProcess
that has the BuildItem
objects in the specified list.
- Parameters:
items
- A List
of BuildItem
objects.
visit
public java.lang.Object visit(SyntaxObjectVisitor visitor,
java.lang.Object context)
- Calls the
visitBuildProcess
method of the SyntaxObjectVisitor
and passes that method this BuildProcess
and an Object
.
-
- Specified by:
visit
in class SyntaxObject
-
- Parameters:
visitor
- A SyntaxObjectVisitor
.
context
- An Object
.
- Returns:
- The
Object
returned by the visitBuildProcess
method.
getBuildItems
public BuildItem[] getBuildItems()
- Gets the
BuildItem
objects that are contained by this BuildProcess
.
-
- Returns:
- An array of the
BuildItem
objects contained by this BuildProcess
.
Skip navigation links