1 package com.vladmihalcea.hibernate.type.array.internal;
2
3 /**
4 * @author Vlad Mihalcea
5 */
6 public class DoubleArrayTypeDescriptor
7 extends AbstractArrayTypeDescriptor<double[]> {
8
9 public DoubleArrayTypeDescriptor() {
10 super(double[].class);
11 }
12
13 @Override
14 protected String getSqlArrayType() {
15 String sqlArrayType = super.getSqlArrayType();
16 return sqlArrayType != null ? sqlArrayType : "float8";
17 }
18 }
19