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

com.github.alittlehuang.data.query.specification.Criteria Maven / Gradle / Ivy

The newest version!
package com.github.alittlehuang.data.query.specification;

import javax.persistence.LockModeType;
import java.util.List;

/**
 * @author ALittleHuang
 */
public interface Criteria {

    WhereClause getWhereClause();

    List> getSelections();

    List> getGroupings();

    List> getOrders();

    List> getFetchAttributes();

    Long getOffset();

    Long getMaxResults();

    LockModeType getLockModeType();

    Class getJavaType();

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy