cdc.applic.expressions.content.BooleanSItem Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cdc-applic-expressions Show documentation
Show all versions of cdc-applic-expressions Show documentation
Applicabilities Expressions.
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 extends CheckedSet, ?>> getCheckedSetClass() {
return BooleanSet.class;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy