001package com.avaje.ebean.config.dbplatform;
002
003/**
004 * Built in supported platforms.
005 */
006public enum DbPlatformName {
007
008  /**
009   * Generic base platform configured via properties or code.
010   */
011  GENERIC,
012
013  /**
014   * H2.
015   */
016  H2,
017
018  /**
019   * Postgres.
020   */
021  POSTGRES,
022
023  /**
024   * MySql.
025   */
026  MYSQL,
027
028  /**
029   * Oracle.
030   */
031  ORACLE,
032
033  /**
034   * Microsoft SQL Server.
035   */
036  SQLSERVER,
037
038  /**
039   * DB2.
040   */
041  DB2,
042
043  /**
044   * SQLite.
045   */
046  SQLITE
047}