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

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

There is a newer version: 0.13.3
Show newest version
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