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

de.jaggl.sqlbuilder.conditions.NullableConditions Maven / Gradle / Ivy

There is a newer version: 2.7.2
Show newest version
package de.jaggl.sqlbuilder.conditions;

import static de.jaggl.sqlbuilder.conditions.GenericCondition.GenericConditionType.IS_NOT_NULL;
import static de.jaggl.sqlbuilder.conditions.GenericCondition.GenericConditionType.IS_NULL;

public interface NullableConditions
{
    default Condition isNull()
    {
        return new GenericCondition(IS_NULL, this);
    }

    default Condition isNotNull()
    {
        return new GenericCondition(IS_NOT_NULL, this);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy