net.avcompris.commons.query.impl.AlwaysFalseProxy Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of avc-commons3-query Show documentation
Show all versions of avc-commons3-query Show documentation
Common classes for avc-commons3 queries and filtering.
package net.avcompris.commons.query.impl;
import static net.avcompris.commons.query.Filtering.Type.FALSE;
import net.avcompris.commons.query.AlwaysFalse;
import net.avcompris.commons.query.Filtering;
final class AlwaysFalseProxy, U extends Filtering.Field> extends AbstractAlwaysXxxProxy
implements AlwaysFalse {
public AlwaysFalseProxy(final Class extends T> filteringClass) {
super(filteringClass, false);
}
@Override
public Type getType() {
return FALSE;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy