Thursday 22 July 2021

Javapoet: $L: Emit a literal value in the output

Javapoet, supports ‘String.format()’ kind of syntax while generating the code.

 

Example

beginControlFlow("for (int i = $L; i < $L; i++)", startingNumber, endingNumber)

 

In the above snippet first $L is replaced with the value of startingNumber and second $L is replaced with the value of endingNumber.

 

Find the below working application.

 

LiteralDemo.java

package com.sample.app;

import java.io.IOException;

import javax.lang.model.element.Modifier;

import com.squareup.javapoet.JavaFile;
import com.squareup.javapoet.MethodSpec;
import com.squareup.javapoet.TypeSpec;

public class LiteralDemo {
  private static MethodSpec dynamicMethod(String name, int startingNumber, int endingNumber, char operator) {    
    return MethodSpec.methodBuilder(name)
            .returns(int.class)
            .addStatement("int result = 0")
            .beginControlFlow("for (int i = $L; i < $L; i++)", startingNumber, endingNumber)
            .addStatement("result = result $L i", operator)
            .endControlFlow().addStatement("return result")
        .build();
  }
  
  public static void main(String args[]) throws IOException {
    MethodSpec addFrom10To20 = dynamicMethod("addFrom10To20", 10, 20, '+');
    MethodSpec addFrist30Numbers = dynamicMethod("addFrom0To30", 10, 30, '+');
    
    String className = "Test";
    TypeSpec.Builder classBuilder = TypeSpec.classBuilder(className);
    classBuilder.addModifiers(Modifier.PUBLIC, Modifier.FINAL);
    classBuilder.addMethod(addFrom10To20);
    classBuilder.addMethod(addFrist30Numbers);
    TypeSpec helloWorldTypeSpec = classBuilder.build();

    String packageName = "com.sample.app";
    JavaFile javaFile = JavaFile.builder(packageName, helloWorldTypeSpec).build();

    javaFile.writeTo(System.out);
  }
}

 

Generated code

package com.sample.app;

public final class Test {
  int addFrom10To20() {
    int result = 0;
    for (int i = 10; i < 20; i++) {
      result = result + i;
    }
    return result;
  }

  int addFrom0To30() {
    int result = 0;
    for (int i = 10; i < 30; i++) {
      result = result + i;
    }
    return result;
  }
}

 

 

 

 

Previous                                                    Next                                                    Home

No comments:

Post a Comment