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

org.xblackcat.sjpu.storage.consumer.IRowSetConsumer Maven / Gradle / Ivy

Go to download

Service for generating DB access logic in simple way via interfaces and annotations

There is a newer version: 2.0
Show newest version
package org.xblackcat.sjpu.storage.consumer;

/**
 * Consume all results to a container and return the container. The implementation should have a default constructor or constructor which
 * takes one parameter: target object class
 * 

* Implementation of the interface could be registered at storage setup procedure. * * @author xBlackCat * @see org.xblackcat.sjpu.storage.consumer.ToEnumSetConsumer * @see org.xblackcat.sjpu.storage.StorageBuilder#addRowSetConsumer(Class, Class) */ public interface IRowSetConsumer extends IRowConsumer { RowsHolder getRowsHolder(); }