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

com.speedment.runtime.field.comparator.BooleanFieldComparator Maven / Gradle / Ivy

package com.speedment.runtime.field.comparator;

import com.speedment.runtime.field.BooleanField;
import com.speedment.runtime.field.trait.HasBooleanValue;

/**
 * A {@link FieldComparator} that compares values of a {@link BooleanField}.
 *
 * @param  entity type
 * @param       database type
 *
 * @author Emil Forslund
 * @since  3.1.4
 */
public interface BooleanFieldComparator extends FieldComparator {

    /**
     * Gets the field that is being compared.
     *
     * @return the compared field
     */
    @Override
    HasBooleanValue getField();

    @Override
    BooleanFieldComparator reversed();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy