DataTypes.java

/*
 * Copyright 2015 gregorygraham.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
package nz.co.gregs.dbvolution.internal.h2;

import java.sql.SQLException;
import java.sql.Statement;
import nz.co.gregs.dbvolution.exceptions.ExceptionDuringDatabaseFeatureSetup;

/**
 *
 *
 * @author gregorygraham
 */
public enum DataTypes implements DBVFeature {

	/**
	 *
	 */
//	INTEGER("BIGINT", "INT8", new DBVFeature[]{}),
	/**
	 *
	 */
	DATEREPEAT("DBV_DATEREPEAT", "VARCHAR(100)", "DATEREPEAT", DateRepeatFunctions.values()),
	/**
	 *
	 */
	POINT2D("DBV_POINT2D", "VARCHAR(2000)", "POINT", Point2DFunctions.values()),
	/**
	 *
	 */
	LINE2D("DBV_LINE2D", "VARCHAR(2001)", "LINESTRING", Line2DFunctions.values()),
	/**
	 *
	 */
	LINESEGMENT2D("DBV_LINESEGMENT2D", "VARCHAR(2001)", "LINESTRING", LineSegment2DFunctions.values()),
	/**
	 *
	 */
	POLYGON2D("DBV_POLYGON2D", "VARCHAR(2002)", "POLYGON", Polygon2DFunctions.values()),
	/**
	 *
	 */
	MULTIPOINT2D("DBV_MULTIPOINT2D", "VARCHAR(2003)", "MULTIPOINT", MultiPoint2DFunctions.values());
	private final String datatype;
	private final String actualType;
	private final String conceptualType;
//	private final DBVFeature[] functions;

	DataTypes(String datatype, String actualType, String conceptualType, DBVFeature[] functions) {
		this.datatype = datatype;
		this.actualType = actualType;
		this.conceptualType = conceptualType;
//		this.functions = functions;
	}

	@Override
	public String toString() {
		return datatype;
	}

	/**
	 *
	 * @param stmt the database statement to add the datatype to.
	 * @throws SQLException database errors
	 */
	@Override
	public void add(Statement stmt) throws SQLException {
		stmt.execute("CREATE DOMAIN IF NOT EXISTS " + datatype + " AS " + actualType + "; ");
	}

	/**
	 *
	 * @param stmt the database statement to add the datatype to.
	 * @throws ExceptionDuringDatabaseFeatureSetup database errors
	 */
	public static void addAll(Statement stmt) throws ExceptionDuringDatabaseFeatureSetup {
	}

	/**
	 *
	 *
	 * @return the DBvolution data type of this abstracted datatype
	 */
	public String datatype() {
		return datatype;
	}

	/**
	 *
	 *
	 * @return the DBvolution data type as a String
	 */
	@Override
	public String alias() {
		return toString();
	}

	/**
	 * @return the actualType
	 */
	public String getActualType() {
		return actualType;
	}

	/**
	 * @return the conceptualType
	 */
	public String getConceptualType() {
		return conceptualType;
	}

}