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

cdc.applic.expressions.content.BooleanSItem Maven / Gradle / Ivy

The newest version!
package cdc.applic.expressions.content;

/**
 * Base interface of boolean items: {@link BooleanValue}.
 * 

* Note: there are no {@code BooleanRange} as this does not seem useful * and their use may be counter-intuitive. * * @author Damien Carbonne */ public interface BooleanSItem extends SItem { @Override default Class> getCheckedSetClass() { return BooleanSet.class; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy