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

org.aksw.sparqlify.database.Column Maven / Gradle / Ivy

There is a newer version: 3.17.0-1
Show newest version
package org.aksw.sparqlify.database;

public class Column {
	private String name;
	private Class type;
	
	public Column(String name, Class type) {
		super();
		this.name = name;
		this.type = type;
	}

	public String getName() {
		return name;
	}
	public Class getType() {
		return type;
	}
	
	
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy