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

com.heliorm.def.WithLike Maven / Gradle / Ivy

The newest version!
package com.heliorm.def;

import com.heliorm.OrmException;

/**
 * @param  Object type
 * @param  Column/field type
 * @author gideon
 */
public interface WithLike< O, C> {

    Continuation< O> like(C value) throws OrmException;

    Continuation< O> notLike(C value) throws OrmException;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy