Package mondrian.olap.type

Examples of mondrian.olap.type.MemberType


            }
            processedParamValue = parameterValue;
          }
          else if (parameterType instanceof MemberType)
          {
            final MemberType memberType = (MemberType) parameterType;
            final Hierarchy hierarchy = memberType.getHierarchy();
            if (parameterValue instanceof String)
            {
              final Member member = findMember(query, hierarchy, query.getCube(), String.valueOf(parameterValue));
              if (member != null)
              {
View Full Code Here


        }
        processedParamValue = parameterValue;
      }
      else if (parameterType instanceof MemberType)
      {
        final MemberType memberType = (MemberType) parameterType;
        final Hierarchy hierarchy = memberType.getHierarchy();
        if (parameterValue instanceof String)
        {
          final Member member = findMember(query, hierarchy, query.getCube(), String.valueOf(parameterValue));
          if (member != null)
          {
View Full Code Here

            if (xmlParameter.type.equals("String")) {
                type = new StringType();
            } else if (xmlParameter.type.equals("Numeric")) {
                type = new NumericType();
            } else {
                type = new MemberType(null, null, null, null);
            }
            final String description = xmlParameter.description;
            final boolean modifiable = xmlParameter.modifiable;
            String defaultValue = xmlParameter.defaultValue;
            RolapSchemaParameter param =
View Full Code Here

TOP

Related Classes of mondrian.olap.type.MemberType

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.