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

selva.oss.ds.document.Store Maven / Gradle / Ivy

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);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy