com.wizarius.orm.database.data.AggregateField Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of wizarius-orm Show documentation
Show all versions of wizarius-orm Show documentation
Java orm for Postgres or Mysql with migration system and connection pool
package com.wizarius.orm.database.data;
/**
* Created by Vladyslav Shyshkin on 16.01.2018.
*/
public class AggregateField {
private final String dbFieldName;
private final String tableName;
private final AggregateFunctionTypes type;
public AggregateField(String dbFieldName, String tableName, AggregateFunctionTypes type) {
this.dbFieldName = dbFieldName;
this.tableName = tableName;
this.type = type;
}
public String getDbFieldName() {
return dbFieldName;
}
public String getTableName() {
return tableName;
}
public AggregateFunctionTypes getType() {
return type;
}
@Override
public String toString() {
return "AggregateField{" +
"dbFieldName='" + dbFieldName + '\'' +
", tableName='" + tableName + '\'' +
", type=" + type +
'}';
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy