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

org.hibernate.metamodel.source.annotations.attribute.FormulaValue Maven / Gradle / Ivy

There is a newer version: 7.0.0.Alpha1
Show newest version
package org.hibernate.metamodel.source.annotations.attribute;

/**
 * @author Strong Liu
 */
public class FormulaValue {
    private String tableName;
    private final String expression;

    public FormulaValue(String tableName, String expression) {
        this.tableName = tableName;
        this.expression = expression;
    }

    public String getExpression() {
        return expression;
    }

    public String getContainingTableName() {
        return tableName;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy