Interface XmlaConstant

    • Method Detail

      • xmlaName

        java.lang.String xmlaName()
        Returns the name of this constant as specified by XMLA.

        Often the name is an enumeration-specific prefix plus the name of the Java enum constant. For example, Dimension.Type has prefix "MD_DIMTYPE_", and therefore this method returns "MD_DIMTYPE_PRODUCTS" for the enum constant Dimension.Type.PRODUCTS.

        Returns:
        ordinal code as specified by XMLA.
      • getDescription

        java.lang.String getDescription()
        Returns the description of this constant.
        Returns:
        Description of this constant.
      • xmlaOrdinal

        int xmlaOrdinal()
        Returns the code of this constant as specified by XMLA.

        For example, the XMLA specification says that the ordinal of MD_DIMTYPE_PRODUCTS is 8, and therefore this method returns 8 for Dimension.Type.PRODUCTS.

        Returns:
        ordinal code as specified by XMLA.