public class IdentifierNode extends Object implements ParseTreeNode
An identifier is immutable.
An identifer consists of one or more IdentifierSegments. A segment
is either:
CA',
[San Francisco]', or
&[Key 1]&Key2&[5]'.
Segment types are indicated by the Quoting enumeration.
A key segment is of type Quoting.KEY, and has one or more
component parts accessed via the
IdentifierSegment.getKeyParts() method. The parts
are of type Quoting.UNQUOTED or Quoting.QUOTED.
A simple example is the identifier Measures.[Unit Sales]. It
has two segments:
A more complex example illustrates a compound key. The identifier [Customers].[City].&[San Francisco]&CA&USA.&[cust1234]
contains four segments as follows:
KEY.
It has 3 sub-segments:
| Constructor and Description |
|---|
IdentifierNode(IdentifierSegment... segments)
Creates an identifier containing one or more segments.
|
IdentifierNode(List<IdentifierSegment> segments)
Creates an identifier containing a list of segments.
|
| Modifier and Type | Method and Description |
|---|---|
<T> T |
accept(ParseTreeVisitor<T> visitor)
Accepts a visitor to this MDX parse tree node.
|
IdentifierNode |
append(IdentifierSegment segment)
Returns a new Identifier consisting of this one with another segment
appended.
|
IdentifierNode |
deepCopy()
Creates a deep copy of this ParseTreeNode object.
|
ParseRegion |
getRegion()
Returns the region of the source code which this node was created from,
if it was created by parsing.
|
List<IdentifierSegment> |
getSegmentList()
Returns the list of segments which consistitute this identifier.
|
Type |
getType()
Returns the type of this expression.
|
static IdentifierNode |
ofNames(String... names)
Converts an array of quoted name segments into an identifier.
|
static IdentifierNode |
parseIdentifier(String identifier)
Parses an MDX identifier string into an
IdentifierNode. |
String |
toString() |
void |
unparse(ParseTreeWriter writer)
Converts this node into MDX text.
|
public IdentifierNode(IdentifierSegment... segments)
segments - Array of Segments, each consisting of a name and quoting
stylepublic IdentifierNode(List<IdentifierSegment> segments)
segments - List of segmentspublic Type getType()
ParseTreeNodeReturns null if this node is not an expression, for instance a
SELECT node.
getType in interface ParseTreeNodepublic List<IdentifierSegment> getSegmentList()
public ParseRegion getRegion()
ParseTreeNodeA non-leaf node's region will encompass the regions of all of its
children. For example, a the region of a function call node
Crossjoin([Gender], {[Store].[USA]}) stretches from
the first character of the function name to the closing parenthesis.
Region may be null, if the node was created programmatically, not from a piece of source code.
getRegion in interface ParseTreeNodepublic IdentifierNode append(IdentifierSegment segment)
segment - Name of segmentpublic <T> T accept(ParseTreeVisitor<T> visitor)
ParseTreeNodeThe implementation should generally dispatches to the
ParseTreeVisitor.visit(org.olap4j.mdx.SelectNode) method appropriate to the type of expression.
accept in interface ParseTreeNodevisitor - Visitorpublic void unparse(ParseTreeWriter writer)
ParseTreeNodeunparse in interface ParseTreeNodewriter - Parse tree writerpublic IdentifierNode deepCopy()
ParseTreeNodeNote: implementing classes can return the concrete type instead of ParseTreeNode (using Java 1.5 covariant return types)
deepCopy in interface ParseTreeNodepublic static IdentifierNode parseIdentifier(String identifier)
IdentifierNode.
It contains a list of segments, each
of which is a name combined with a description of how the name
was quoted. For example,
parseIdentifier(
"[Customers].USA.[South Dakota].[Sioux Falls].&[1245]")
returns an IdentifierNode consisting of the following segments:
- NameSegment("Customers", quoted=true),
- NameSegment("USA", quoted=false),
- NameSegment("South Dakota", quoted=true),
- NameSegment("Sioux Falls", quoted=true),
- KeySegment( { NameSegment("1245", quoted=true) } )
identifier - MDX identifier stringIllegalArgumentException - if the format of the identifier is
invalidofNames(String...)public static IdentifierNode ofNames(String... names)
For example,
IdentifierNode.ofNames("Store", "USA", "CA")
returns an IdentifierNode consisting of the following segments:
- NameSegment("Customers", quoted=true),
- NameSegment("USA", quoted=false),
- NameSegment("South Dakota", quoted=true),
- NameSegment("Sioux Falls", quoted=true),
- KeySegment( { NameSegment("1245", quoted=true) } )
names - Array of namesparseIdentifier(String)