package com.iteye.injavawetrust.miner;
/**
* 存儲方式
* @author InJavaWeTrust
*
*/
public enum StoreType {
/**
* DB-資料庫存儲
*/
DB("DB"),
/**
* FILE-檔案存儲
*/
FILE("FILE");
private String type;
private StoreType(String type) {
this.type = type;
}
public String getType() {
return type;
}
}