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

com.github.grzesiek_galezowski.collections.readonly.interfaces.ReadOnlyNavigableSet Maven / Gradle / Ivy

The newest version!
package com.github.grzesiek_galezowski.collections.readonly.interfaces;

public interface ReadOnlyNavigableSet extends ReadOnlySortedSet {
    E lower(E var1);

    E floor(E var1);

    E ceiling(E var1);

    E higher(E var1);

    ReadOnlyNavigableSet descendingSet();

    ReadOnlyCollectionIterator descendingIterator();

    ReadOnlyNavigableSet subSet(E var1, boolean var2, E var3, boolean var4);

    ReadOnlyNavigableSet headSet(E var1, boolean var2);

    ReadOnlyNavigableSet tailSet(E var1, boolean var2);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy