com.kenshoo.jooq.FieldAndValues Maven / Gradle / Ivy
                 Go to download
                
        
                    Show more of this group  Show more artifacts with this name
Show all versions of persistence-layer Show documentation
                Show all versions of persistence-layer Show documentation
A Java persistence layer based on JOOQ for high performance and business flow support.
                
             The newest version!
        
        package com.kenshoo.jooq;
import org.jooq.Field;
import java.util.Collection;
public class FieldAndValues {
    private final Field field;
    private final Collection extends T> values;
    public FieldAndValues(Field field, Collection extends T> values) {
        this.field = field;
        this.values = values;
    }
    public Field getField() {
        return field;
    }
    public Collection extends T> getValues() {
        return values;
    }
}
        © 2015 - 2025 Weber Informatics LLC | Privacy Policy