com.danidemi.jlubricant.embeddable.h2.H2Storage Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jlubricant-embeddable-h2 Show documentation
Show all versions of jlubricant-embeddable-h2 Show documentation
An Embeddable running the H2 database http://www.h2database.com.
package com.danidemi.jlubricant.embeddable.h2;
/**
* Implementations define how H2 can store database data.
*
* @author Daniele Demichelis
*/
public abstract class H2Storage {
/** Implementations should return the storage specifier as expected by H2. */
public abstract String getStorageSpecifier();
/** Implementations should return whether this is a memory only mode, or not. */
public abstract boolean isMemoryMode();
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy