public class Column {
    private final Table.Type type;
    private final String attribute;
    
    public Column(final Table.Type type, final String attribute) {
        this.type = type;
        this.attribute = attribute;
    }

    public Table.Type getType() {
        return type;
    }

    public String getAttribute() {
        return attribute;
    }
}