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

org.sql2o.data.Column Maven / Gradle / Ivy

There is a newer version: 0.2.6
Show newest version
package org.sql2o.data;

/**
 * Represents a result set column
 */
public class Column {
    
    private String name;
    private Integer index;
    private String type;

    public Column(String name, Integer index, String type) {
        this.name = name;
        this.index = index;
        this.type = type;
    }

    public String getName() {
        return name;
    }

    public Integer getIndex() {
        return index;
    }

    public String getType() {
        return type;
    }

    @Override
    public String toString() {
        return getName() + " (" + getType() + ")";
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy