cdc.applic.expressions.content.CountableSet 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.
package cdc.applic.expressions.content;
public interface CountableSet extends SItemSet {
/**
* The value used to indicate that the number of values in the set is undefined.
*/
public static final long UNDEFINED_NUMBER_OF_VALUES = -1L;
/**
* @return The number of values contained in this set, or {@link CountableSet#UNDEFINED_NUMBER_OF_VALUES}.
*/
public long getExtent();
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy