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

com.vladmihalcea.hibernate.type.array.internal.DecimalArrayTypeDescriptor Maven / Gradle / Ivy

There is a newer version: 2.21.1
Show newest version
package com.vladmihalcea.hibernate.type.array.internal;

import java.math.BigDecimal;

/**
 * @author Moritz Kobel
 */
public class DecimalArrayTypeDescriptor extends AbstractArrayTypeDescriptor {

    public DecimalArrayTypeDescriptor() {
        super(BigDecimal[].class);
    }

    @Override
    protected String getSqlArrayType() {
        return "decimal";
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy