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

com.heliorm.def.BooleanField Maven / Gradle / Ivy

The newest version!
package com.heliorm.def;

import com.heliorm.Field;

/**
 * A field representing a boolean value
 *
 * @param  Object type
 * @author gideon
 */
public interface BooleanField< DO> extends Field< DO, Boolean>, WithEquals, WithIs {

    @Override
    default FieldType getFieldType() {
        return FieldType.BOOLEAN;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy