public final class UnresolvedDimensionArgument extends DimensionArgument
DimensionArgument that represents an invalid or unresolvable identifier. An application might encounter this class if it has passed an implementation of the XMLParserCallback interface in a call to a SyntaxObject.fromSyntax or MdmMetadataProvider.importXML method. If the methods of the XMLParserCallback implementation return XMLParserCallback.ERROR_BY_INVALIDATING, then Oracle OLAP does not throw an exception when it encounters an invalid or unresolvable identifier. Instead, it marks the object as invalid and continues parsing the XML or producing the SyntaxObject. However, if the application gets a DimensionArgument for the invalid object, that DimensionArgument is an instance of UnresolvedDimensionArgument.| Constructor and Description |
|---|
UnresolvedDimensionArgument()
Creates an
UnresolvedDimensionArgument. |
| Modifier and Type | Method and Description |
|---|---|
java.lang.Object |
visit(SyntaxObjectVisitor visitor, java.lang.Object context)
Calls the
visitUnresolvedExpression method of the SyntaxObjectVisitor and passes that method this UnresolvedDimensionArgument and an Object. |
getDimension, getDimensionIDequals, equals, fromSyntax, fromSyntax, fromSyntax, fromSyntax, fromSyntax, isValid, toSyntax, toSyntax, toSyntax, toSyntax, toSyntax, toSyntaxpublic UnresolvedDimensionArgument()
UnresolvedDimensionArgument.public java.lang.Object visit(SyntaxObjectVisitor visitor, java.lang.Object context)
visitUnresolvedExpression method of the SyntaxObjectVisitor and passes that method this UnresolvedDimensionArgument and an Object.visit in class DimensionArgumentvisitor - A SyntaxObjectVisitor.context - An Object.Object returned by the visitUnresolvedDimensionArgument method.