package com.megatim.fdxcommons.tools.database.tables;
|
|
/**
|
*
|
* @author Gabuntu
|
*/
|
public class FdxTableColumnData {
|
|
private final Object value;
|
private final String name;
|
private final int position;
|
|
public FdxTableColumnData(Object value, String name, int position) {
|
this.value = value;
|
this.name = name;
|
this.position = position;
|
}
|
|
public Object getValue() {
|
return value;
|
}
|
|
public String getName() {
|
return name;
|
}
|
|
public int getPosition() {
|
return position;
|
}
|
|
}
|