001package gudusoft.gsqlparser.nodes.mdx;
002
003/*
004* Date: 12-1-31
005*/
006public enum EMdxQuoting {
007    /**
008     * Unquoted identifier, for example "Measures".
009     */
010    UNQUOTED,
011
012    /**
013     * Quoted identifier, for example "[Measures]".
014     */
015    QUOTED,
016
017    /**
018     * Identifier quoted with an ampersand and brackets to indicate a key
019     * value, for example the second segment in "[Employees].&[89]".
020     *
021     * <p>Such a segment has one or more sub-segments. Each segment is
022     * either quoted or unquoted. For example, the second segment in
023     * "[Employees].&amp;[89]&amp;[San Francisco]&amp;CA&amp;USA" has four sub-segments,
024     * two quoted and two unquoted.
025     */
026    KEY,
027}