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

io.robe.crud.helper.Model Maven / Gradle / Ivy

There is a newer version: 0.5.0.0-1039
Show newest version
package io.robe.crud.helper;

public class Model {

    private String name;
    private boolean nullable;
    private String length;
    private String type;

    public String getName() {
        return name;
    }

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

    public boolean isNullable() {
        return nullable;
    }

    public void setNullable(boolean nullable) {
        this.nullable = nullable;
    }

    public String getLength() {
        return length;
    }

    public void setLength(String length) {
        this.length = length;
    }

    public String getType() {
        return type;
    }

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

    @Override
    public String toString() {
        return "Name: " + name + " Nullable: " + nullable + " Length: " + length + " Type: " + type;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy