|
Oracle® OLAP Java API Reference 11g Release 1 (11.1) B28128-01 |
||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||
java.lang.Object
oracle.olapi.syntax.SyntaxObject
oracle.olapi.syntax.SymmetricCondition
public final class SymmetricCondition
A SyntaxObject that represents a condition where the members of a collection of MdmDimension objects are specified by a corresponding collection of Condition objects. A SymmetricCondition is similar to a SQL WHERE clause.
| Constructor Summary | |
|---|---|
SymmetricCondition(java.util.List<MdmPrimaryDimension> dimensions, java.util.List<Condition> conditions)Creates a SymmetricCondition with the specified dimensions and conditions. |
|
SymmetricCondition(MdmPrimaryDimension[] dimensions, Condition[] conditions)Creates a SymmetricCondition with the specified dimensions and conditions. |
|
| Method Summary | |
|---|---|
Condition[] |
getConditions()Gets the Condition objects that are associated with this SymmetricCondition. |
MdmPrimaryDimension[] |
getDimensions()Gets the MdmPrimaryDimension objects that are associated with this SymmetricCondition. |
java.lang.Object |
visit(SyntaxObjectVisitor visitor, java.lang.Object context)Calls the visitSymmetricCondition method of the SyntaxObjectVisitor and passes that method this SymmetricCondition 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 |
| Constructor Detail |
|---|
public SymmetricCondition(MdmPrimaryDimension[] dimensions,
Condition[] conditions)
SymmetricCondition with the specified dimensions and conditions. Each dimension must have a corresponding condition. The order of the conditions must match the order of the dimensions.
dimensions - An array of MdmPrimaryDimension objects.conditions - An array of Condition objects. Each Condition evaluates to a selection of dimension members. The number of elements in this array must match the number of elements in the dimensions array. Each Condition element must specify members of the corresponding MdmPrimaryDimension element of the dimensions array.
public SymmetricCondition(java.util.List<MdmPrimaryDimension> dimensions,
java.util.List<Condition> conditions)
SymmetricCondition with the specified dimensions and conditions. Each dimension must have a corresponding condition. The order of the conditions must match the order of the dimensions.
dimensions - A List of MdmPrimaryDimension objects.conditions - A List of Condition objects. Each Condition evaluates to a selection of dimension members. The number of elements in this list must match the number of elements in the dimensions list. Each Condition element must specify members of the corresponding MdmPrimaryDimension element of the dimensions list.| Method Detail |
|---|
public MdmPrimaryDimension[] getDimensions()
MdmPrimaryDimension objects that are associated with this SymmetricCondition.MdmPrimaryDimension objects of this SymmetricCondition.public Condition[] getConditions()
Condition objects that are associated with this SymmetricCondition.Condition objects of this SymmetricCondition.
public java.lang.Object visit(SyntaxObjectVisitor visitor,
java.lang.Object context)
visitSymmetricCondition method of the SyntaxObjectVisitor and passes that method this SymmetricCondition and an Object.visit in class SyntaxObjectvisitor - A SyntaxObjectVisitor.context - An Object.Object returned by the visitSymmetricCondition method.
|
|
||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||