All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.stefanbirkner.noprimitives.generator.ObjectWrapperGenerator Maven / Gradle / Ivy

There is a newer version: 0.2.0
Show newest version
package com.github.stefanbirkner.noprimitives.generator;

import static org.apache.commons.lang3.StringUtils.uncapitalize;

public class ObjectWrapperGenerator extends GeneratorTemplate {
    @Override
    protected String basicTypeClassForRequest(Request request) {
        return request.nameOfBasicType;
    }

    @Override
    protected String nameOfValueMethodForRequest(Request request) {
        return uncapitalize(request.nameOfBasicType) + "Value";
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy