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

com.github.lontime.extjobrunr.common.StorageProviderKind Maven / Gradle / Ivy

package com.github.lontime.extjobrunr.common;

/**
 * StorageProviderKind.
 * @author lontime
 * @since 1.0
 */
public enum StorageProviderKind {

    /**
     * H2.
     */
    H2,
    /**
     * mysql.
     */
    MYSQL,
    /**
     * postgre.
     */
    POSTGRE,
    /**
     * in memory.
     */
    INMEMORY;

    public static boolean isSql(StorageProviderKind kind) {
        return kind == MYSQL || kind == POSTGRE || kind == H2;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy