com.kenshoo.pl.entity.internal.VirtualEntityFieldImpl 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.
package com.kenshoo.pl.entity.internal;
import com.kenshoo.pl.entity.EntityFieldDbAdapter;
import com.kenshoo.pl.entity.EntityType;
import com.kenshoo.pl.entity.ValueConverter;
import com.kenshoo.pl.entity.equalityfunctions.EntityValueEqualityFunction;
public class VirtualEntityFieldImpl, T> extends EntityFieldImpl {
public VirtualEntityFieldImpl(EntityType entityType, EntityFieldDbAdapter dbAdapter, ValueConverter stringValueConverter, EntityValueEqualityFunction valueEqualityFunction) {
super(entityType, dbAdapter, stringValueConverter, valueEqualityFunction);
}
@Override
public boolean isVirtual() {
return true;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy