com.github.grzesiek_galezowski.collections.readonly.interfaces.ReadOnlyNavigableSet Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of readonly-collections Show documentation
Show all versions of readonly-collections Show documentation
Read-only collection wrappers for Java built-in collections
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);
}