Class SortedSetProxy<U>
- java.lang.Object
-
- org.hibernate.envers.internal.entities.mapper.relation.lazy.proxy.CollectionProxy<U,SortedSet<U>>
-
- org.hibernate.envers.internal.entities.mapper.relation.lazy.proxy.SortedSetProxy<U>
-
- All Implemented Interfaces:
Serializable
,Iterable<U>
,Collection<U>
,Set<U>
,SortedSet<U>
,LazyInitializable
public class SortedSetProxy<U> extends CollectionProxy<U,SortedSet<U>> implements SortedSet<U>
- See Also:
- Serialized Form
-
-
Field Summary
-
Fields inherited from class org.hibernate.envers.internal.entities.mapper.relation.lazy.proxy.CollectionProxy
delegate
-
-
Constructor Summary
Constructors Constructor Description SortedSetProxy()
SortedSetProxy(Initializor<SortedSet<U>> initializor)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Comparator<? super U>
comparator()
U
first()
SortedSet<U>
headSet(U u)
U
last()
SortedSet<U>
subSet(U u, U u1)
SortedSet<U>
tailSet(U u)
-
Methods inherited from class org.hibernate.envers.internal.entities.mapper.relation.lazy.proxy.CollectionProxy
add, addAll, checkInit, clear, contains, containsAll, equals, forceInitialization, hashCode, isEmpty, iterator, remove, removeAll, retainAll, size, toArray, toArray, toString, wasInitialized
-
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface java.util.Collection
parallelStream, removeIf, stream, toArray
-
Methods inherited from interface java.util.Set
add, addAll, clear, contains, containsAll, equals, hashCode, isEmpty, iterator, remove, removeAll, retainAll, size, toArray, toArray
-
Methods inherited from interface java.util.SortedSet
spliterator
-
-
-
-
Constructor Detail
-
SortedSetProxy
public SortedSetProxy()
-
SortedSetProxy
public SortedSetProxy(Initializor<SortedSet<U>> initializor)
-
-
Method Detail
-
comparator
public Comparator<? super U> comparator()
- Specified by:
comparator
in interfaceSortedSet<U>
-
-