blob: 0c5359cb5c988f7965f63b56a79d1c9b397adafd [file] [log] [blame]
package io.v.syncbase.v23.services.syncbase;
/**
* Storage engine used for storing the syncbase data.
*/
public enum SyncbaseStorageEngine {
LEVELDB ("leveldb"),
MEMSTORE ("memstore");
private final String value;
SyncbaseStorageEngine(String value) {
this.value = value;
}
/**
* Returns the {@link String} value corresponding to this {@link SyncbaseStorageEngine}.
*/
public String getValue() {
return this.value;
}
}