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

prompto.store.IStored Maven / Gradle / Ivy

The newest version!
package prompto.store;

import java.util.Set;

import prompto.error.PromptoError;
import prompto.intrinsic.PromptoDbId;


public interface IStored {

	PromptoDbId getDbId();
	String[] getCategories();
	boolean hasData(String fieldName);
	Object getRawData(String fieldName);
	Object getData(String fieldName) throws PromptoError;
	Set getNames() throws PromptoError;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy