com.openthinks.libs.sql.data.Column Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of openlibs.sql Show documentation
Show all versions of openlibs.sql Show documentation
The lib of java database ORM simple implementation.
The newest version!
package com.openthinks.libs.sql.data;
/**
* 数据表的列接口
* @author dmj
*
*/
public interface Column {
/**
* 取得该列的列名称
* @return String 该列的列名称
*/
public String getName();
/**
*设置列名称
* @param name String
*/
public void setName(String name);
/**
* 取得该列的值
* @return Object 列值
*/
public Object getValue();
/**
* 设置列的值
* @param value Object
*/
public void setValue(Object value);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy