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

com.wangjie.rapidrouter.compiler.objs.ParamEntry Maven / Gradle / Ivy

There is a newer version: 2.0.0
Show newest version
package com.wangjie.rapidrouter.compiler.objs;

import com.squareup.javapoet.TypeName;

/**
 * Author: wangjie Email: [email protected] Date: 2/9/17.
 */
public class ParamEntry {
    private String name;
    private TypeName type;

    public String getName() {
        return name;
    }

    public void setName(String name) {
        this.name = name;
    }

    public TypeName getType() {
        return type;
    }

    public void setType(TypeName type) {
        this.type = type;
    }

    @Override
    public String toString() {
        return "ParamEntry{" +
                "name='" + name + '\'' +
                ", type=" + type +
                '}';
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy