Package org.apache.olingo.odata2.api.uri.expression

Examples of org.apache.olingo.odata2.api.uri.expression.MethodExpression


      parameters.add(getLiteralExpressionMockedObj(thirdName));
    } else if (methodOperator == MethodOperator.TOLOWER) {
      parameters.add(getPropertyExpressionMockedObj(ExpressionKind.PROPERTY, firstName));
    }

    MethodExpression methodExpression = EasyMock.createMock(MethodExpression.class);

    EasyMock.expect(methodExpression.getKind()).andStubReturn(ExpressionKind.METHOD);
    EasyMock.expect(methodExpression.getMethod()).andStubReturn(methodOperator);
    EasyMock.expect(methodExpression.getParameterCount()).andStubReturn(parameterCount);
    EasyMock.expect(methodExpression.getParameters()).andStubReturn(parameters);
    EasyMock.replay(methodExpression);

    return methodExpression;
  }
View Full Code Here


    List<CommonExpression> parameters = new ArrayList<CommonExpression>();

    parameters.add(getLiteralExpressionMockedObj(firstName));
    parameters.add(getMethodExpressionMockedObj(methodOperator2, secondName, null, null, 1));

    MethodExpression methodExpression = EasyMock.createMock(MethodExpression.class);

    EasyMock.expect(methodExpression.getKind()).andStubReturn(ExpressionKind.METHOD);
    EasyMock.expect(methodExpression.getMethod()).andStubReturn(methodOperator1);
    EasyMock.expect(methodExpression.getParameterCount()).andStubReturn(parameterCount1);
    EasyMock.expect(methodExpression.getParameters()).andStubReturn(parameters);
    EasyMock.replay(methodExpression);

    return methodExpression;
  }
View Full Code Here

      appendExpression(((BinaryExpression) expression).getLeftOperand(), writer);
      writer.append("</li><li>");
      appendExpression(((BinaryExpression) expression).getRightOperand(), writer);
      writer.append("</li></ol>");
    } else if (kind == ExpressionKind.METHOD) {
      final MethodExpression methodExpression = (MethodExpression) expression;
      if (methodExpression.getParameterCount() > 0) {
        writer.append("<ol class=\"expr\">");
        for (final CommonExpression parameter : methodExpression.getParameters()) {
          writer.append("<li>");
          appendExpression(parameter, writer);
          writer.append("</li>");
        }
        writer.append("</ol>");
View Full Code Here

      return literalType.valueToString(literalType.valueOfString(literal.getUriLiteral(), EdmLiteralKind.URI, null,
          literalType.getDefaultType()),
          EdmLiteralKind.DEFAULT, null);

    case METHOD:
      final MethodExpression methodExpression = (MethodExpression) expression;
      final String first = evaluateExpression(data, methodExpression.getParameters().get(0));
      final String second = methodExpression.getParameterCount() > 1 ?
          evaluateExpression(data, methodExpression.getParameters().get(1)) : null;
      final String third = methodExpression.getParameterCount() > 2 ?
          evaluateExpression(data, methodExpression.getParameters().get(2)) : null;

      switch (methodExpression.getMethod()) {
      case ENDSWITH:
        return Boolean.toString(first.endsWith(second));
      case INDEXOF:
        return Integer.toString(first.indexOf(second));
      case STARTSWITH:
View Full Code Here

      parameters.add(getLiteralExpressionMockedObj(thirdName));
    } else if (methodOperator == MethodOperator.TOLOWER) {
      parameters.add(getPropertyExpressionMockedObj(ExpressionKind.PROPERTY, firstName));
    }

    MethodExpression methodExpression = EasyMock.createMock(MethodExpression.class);

    EasyMock.expect(methodExpression.getKind()).andStubReturn(ExpressionKind.METHOD);
    EasyMock.expect(methodExpression.getMethod()).andStubReturn(methodOperator);
    EasyMock.expect(methodExpression.getParameterCount()).andStubReturn(parameterCount);
    EasyMock.expect(methodExpression.getParameters()).andStubReturn(parameters);
    EasyMock.replay(methodExpression);

    return methodExpression;
  }
View Full Code Here

    List<CommonExpression> parameters = new ArrayList<CommonExpression>();

    parameters.add(getLiteralExpressionMockedObj(firstName));
    parameters.add(getMethodExpressionMockedObj(methodOperator2, secondName, null, null, 1));

    MethodExpression methodExpression = EasyMock.createMock(MethodExpression.class);

    EasyMock.expect(methodExpression.getKind()).andStubReturn(ExpressionKind.METHOD);
    EasyMock.expect(methodExpression.getMethod()).andStubReturn(methodOperator1);
    EasyMock.expect(methodExpression.getParameterCount()).andStubReturn(parameterCount1);
    EasyMock.expect(methodExpression.getParameters()).andStubReturn(parameters);
    EasyMock.replay(methodExpression);

    return methodExpression;
  }
View Full Code Here

          literalType.valueToString(literalType.valueOfString(literal.getUriLiteral(), EdmLiteralKind.URI, null,
              literalType.getDefaultType()), EdmLiteralKind.DEFAULT, null);
      return evaluateComparingExpression(value, literalType);

    case METHOD:
      final MethodExpression methodExpression = (MethodExpression) whereExpression;
      String first = parseToJPAWhereExpression(methodExpression.getParameters().get(0), tableAlias);
      final String second =
          methodExpression.getParameterCount() > 1 ? parseToJPAWhereExpression(methodExpression.getParameters().get(1),
              tableAlias) : null;
      String third =
          methodExpression.getParameterCount() > 2 ? parseToJPAWhereExpression(methodExpression.getParameters().get(2),
              tableAlias) : null;

      switch (methodExpression.getMethod()) {
      case SUBSTRING:
        third = third != null ? ", " + third : "";
        return String.format("SUBSTRING(%s, %s + 1 %s)", first, second, third);
      case SUBSTRINGOF:
        first = first.substring(1, first.length() - 1);
View Full Code Here

      return literalType.valueToString(literalType.valueOfString(literal.getUriLiteral(), EdmLiteralKind.URI, null,
          literalType.getDefaultType()),
          EdmLiteralKind.DEFAULT, null);

    case METHOD:
      final MethodExpression methodExpression = (MethodExpression) expression;
      final String first = evaluateExpression(data, methodExpression.getParameters().get(0));
      final String second = methodExpression.getParameterCount() > 1 ?
          evaluateExpression(data, methodExpression.getParameters().get(1)) : null;
      final String third = methodExpression.getParameterCount() > 2 ?
          evaluateExpression(data, methodExpression.getParameters().get(2)) : null;

      switch (methodExpression.getMethod()) {
      case ENDSWITH:
        return Boolean.toString(first.endsWith(second));
      case INDEXOF:
        return Integer.toString(first.indexOf(second));
      case STARTSWITH:
View Full Code Here

      return literalType.valueToString(literalType.valueOfString(literal.getUriLiteral(), EdmLiteralKind.URI, null,
          literalType.getDefaultType()),
          EdmLiteralKind.DEFAULT, null);

    case METHOD:
      final MethodExpression methodExpression = (MethodExpression) expression;
      final String first = evaluateExpression(data, methodExpression.getParameters().get(0));
      final String second = methodExpression.getParameterCount() > 1 ?
          evaluateExpression(data, methodExpression.getParameters().get(1)) : null;
      final String third = methodExpression.getParameterCount() > 2 ?
          evaluateExpression(data, methodExpression.getParameters().get(2)) : null;

      switch (methodExpression.getMethod()) {
      case ENDSWITH:
        return Boolean.toString(first.endsWith(second));
      case INDEXOF:
        return Integer.toString(first.indexOf(second));
      case STARTSWITH:
View Full Code Here

  /*
   * This Unit is supposed to test the building of Entity Provider Properties for query with $expand
   */
  @Test
  public void testGetEntityProviderPropertiesQuery() {
    GetEntitySetUriInfo getEntitySetUriInfo = mockEntitySetUriInfoForExpand();
    ODataJPAContext oDataJPAContext = getODataJPAContext();
    // Building the edm entity
    List<Map<String, Object>> edmEntityList = new ArrayList<Map<String, Object>>();
    Map<String, Object> edmEntity = new HashMap<String, Object>();
    edmEntity.put("ID", 1);
View Full Code Here

TOP

Related Classes of org.apache.olingo.odata2.api.uri.expression.MethodExpression

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.