selva.oss.ds.document.Store Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of lib Show documentation
Show all versions of lib Show documentation
Collection of libraries that make backend DX an oasis.
The newest version!
package selva.oss.ds.document;
import static selva.oss.lang.Commons.*;
import selva.oss.ds.document.datatype.DataTypeConfig;
import selva.oss.ds.document.datatype.TypedValue;
import java.util.*;
public interface Store extends StoreGetApi, StoreSetApi {
public static Store create(Object object) {
return new PojoDocumentImpl(object);
}
public static Store create(Class pojoClass) {
return new PojoDocumentImpl(pojoClass);
}
}