io.vertx.codetrans.expression.StringLiteralModel Maven / Gradle / Ivy
package io.vertx.codetrans.expression;
import io.vertx.codetrans.CodeBuilder;
import io.vertx.codetrans.CodeWriter;
import java.util.List;
/**
* @author Julien Viet
*/
public class StringLiteralModel extends ExpressionModel {
final java.lang.String value;
public StringLiteralModel(CodeBuilder builder, java.lang.String value) {
super(builder);
this.value = value;
}
@Override
public boolean isStringDecl() {
return true;
}
@Override
void collectParts(List
© 2015 - 2025 Weber Informatics LLC | Privacy Policy