1 8 package org.ozoneDB.collections; 9 10 import java.util.SortedSet ; 11 12 16 public interface OzoneSortedSet extends OzoneSet, SortedSet { 17 18 29 public SortedSet getClientSortedSet(); 30 31 36 public OzoneSortedSet ozoneHeadSet(Object toElement); 37 38 43 public OzoneSortedSet ozoneSubSet(Object fromElement, Object toElement); 44 45 50 public OzoneSortedSet ozoneTailSet(Object toElement); 51 52 } 53 | Popular Tags |