
net.sf.esfinge.querybuilder.utils.LineField Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of querybuilder-jdbc Show documentation
Show all versions of querybuilder-jdbc Show documentation
The Esfinge QueryBuilder JDBC is the persistence framework for Esfinge QueryBuilder using JDBC.
The newest version!
package net.sf.esfinge.querybuilder.utils;
public class LineField {
private String fieldName;
private Object fieldValue;
private Class> fieldType;
private boolean isPrimaryKey = false;
private boolean isAutoIncrementColumn = false;
public boolean isAutoIncrementColumn() {
return isAutoIncrementColumn;
}
public void setAutoIncrementColumn(boolean isAutoIncrementColumn) {
this.isAutoIncrementColumn = isAutoIncrementColumn;
}
public boolean isPrimaryKey() {
return isPrimaryKey;
}
public void setPrimaryKey(boolean isPrimaryKey) {
this.isPrimaryKey = isPrimaryKey;
}
public String getFieldName() {
return fieldName;
}
public void setFieldName(String fieldName) {
this.fieldName = fieldName;
}
public Object getFieldValue() {
return fieldValue;
}
public void setFieldValue(Object fieldValue) {
this.fieldValue = fieldValue;
}
public Class> getFieldType() {
return fieldType;
}
public void setFieldType(Class> fieldType) {
this.fieldType = fieldType;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy