com.sleepycat.collections.StoredSortedEntrySet Maven / Gradle / Ivy
/*-
* Copyright (C) 2002, 2018, Oracle and/or its affiliates. All rights reserved.
*
* This file was distributed by Oracle as part of a version of Oracle Berkeley
* DB Java Edition made available at:
*
* http://www.oracle.com/technetwork/database/database-technologies/berkeleydb/downloads/index.html
*
* Please see the LICENSE file included in the top-level directory of the
* appropriate version of Oracle Berkeley DB Java Edition for a copy of the
* license and additional information.
*/
package com.sleepycat.collections;
import java.util.Comparator;
import java.util.Map;
import java.util.SortedSet;
/* */
import com.sleepycat.je.EnvironmentFailureException; // for javadoc
import com.sleepycat.je.OperationFailureException; // for javadoc
/* */
import com.sleepycat.util.RuntimeExceptionWrapper;
/**
* The SortedSet returned by Map.entrySet(). This class may not be
* instantiated directly. Contrary to what is stated by {@link Map#entrySet}
* this class does support the {@link #add} and {@link #addAll} methods.
*
* The {@link java.util.Map.Entry#setValue} method of the Map.Entry objects
* that are returned by this class and its iterators behaves just as the {@link
* StoredIterator#set} method does.
*
* In addition to the standard SortedSet methods, this class provides the
* following methods for stored sorted sets only. Note that the use of these
* methods is not compatible with the standard Java collections interface.
*
* - {@link #headSet(Map.Entry, boolean)}
* - {@link #tailSet(Map.Entry, boolean)}
* - {@link #subSet(Map.Entry, boolean, Map.Entry, boolean)}
*
*
* @author Mark Hayes
*/
public class StoredSortedEntrySet
extends StoredEntrySet
implements SortedSet> {
StoredSortedEntrySet(DataView mapView) {
super(mapView);
}
/**
* Returns null since comparators are not supported. The natural ordering
* of a stored collection is data byte order, whether the data classes
* implement the {@link java.lang.Comparable} interface or not.
* This method does not conform to the {@link SortedSet#comparator}
* interface.
*
* @return null.
*/
public Comparator super Map.Entry> comparator() {
return null;
}
/**
* Returns the first (lowest) element currently in this sorted set.
* This method conforms to the {@link SortedSet#first} interface.
*
* @return the first element.
*
*
* @throws OperationFailureException if one of the Read Operation
* Failures occurs.
*
* @throws EnvironmentFailureException if an unexpected, internal or
* environment-wide failure occurs.
*
*
* @throws RuntimeExceptionWrapper if a checked exception is thrown,
* including a {@code DatabaseException} on BDB (C edition).
*/
public Map.Entry first() {
return getFirstOrLast(true);
}
/**
* Returns the last (highest) element currently in this sorted set.
* This method conforms to the {@link SortedSet#last} interface.
*
* @return the last element.
*
*
* @throws OperationFailureException if one of the Read Operation
* Failures occurs.
*
* @throws EnvironmentFailureException if an unexpected, internal or
* environment-wide failure occurs.
*
*
* @throws RuntimeExceptionWrapper if a checked exception is thrown,
* including a {@code DatabaseException} on BDB (C edition).
*/
public Map.Entry last() {
return getFirstOrLast(false);
}
/**
* Returns a view of the portion of this sorted set whose elements are
* strictly less than toMapEntry.
* This method conforms to the {@link SortedSet#headSet} interface.
*
* Note that the return value is a StoredCollection and must be treated
* as such; for example, its iterators must be explicitly closed.
*
* @param toMapEntry the upper bound.
*
* @return the subset.
*
* @throws RuntimeExceptionWrapper if a checked exception is thrown,
* including a {@code DatabaseException} on BDB (C edition).
*/
public SortedSet> headSet(Map.Entry toMapEntry) {
return subSet(null, false, toMapEntry, false);
}
/**
* Returns a view of the portion of this sorted set whose elements are
* strictly less than toMapEntry, optionally including toMapEntry.
* This method does not exist in the standard {@link SortedSet} interface.
*
* Note that the return value is a StoredCollection and must be treated
* as such; for example, its iterators must be explicitly closed.
*
* @param toMapEntry is the upper bound.
*
* @param toInclusive is true to include toMapEntry.
*
* @return the subset.
*
* @throws RuntimeExceptionWrapper if a checked exception is thrown,
* including a {@code DatabaseException} on BDB (C edition).
*/
public SortedSet> headSet(Map.Entry toMapEntry,
boolean toInclusive) {
return subSet(null, false, toMapEntry, toInclusive);
}
/**
* Returns a view of the portion of this sorted set whose elements are
* greater than or equal to fromMapEntry.
* This method conforms to the {@link SortedSet#tailSet} interface.
*
* Note that the return value is a StoredCollection and must be treated
* as such; for example, its iterators must be explicitly closed.
*
* @param fromMapEntry is the lower bound.
*
* @return the subset.
*
* @throws RuntimeExceptionWrapper if a checked exception is thrown,
* including a {@code DatabaseException} on BDB (C edition).
*/
public SortedSet> tailSet(Map.Entry fromMapEntry) {
return subSet(fromMapEntry, true, null, false);
}
/**
* Returns a view of the portion of this sorted set whose elements are
* strictly greater than fromMapEntry, optionally including fromMapEntry.
* This method does not exist in the standard {@link SortedSet} interface.
*
* Note that the return value is a StoredCollection and must be treated
* as such; for example, its iterators must be explicitly closed.
*
* @param fromMapEntry is the lower bound.
*
* @param fromInclusive is true to include fromMapEntry.
*
* @return the subset.
*
* @throws RuntimeExceptionWrapper if a checked exception is thrown,
* including a {@code DatabaseException} on BDB (C edition).
*/
public SortedSet> tailSet(Map.Entry fromMapEntry,
boolean fromInclusive) {
return subSet(fromMapEntry, fromInclusive, null, false);
}
/**
* Returns a view of the portion of this sorted set whose elements range
* from fromMapEntry, inclusive, to toMapEntry, exclusive.
* This method conforms to the {@link SortedSet#subSet} interface.
*
* Note that the return value is a StoredCollection and must be treated
* as such; for example, its iterators must be explicitly closed.
*
* @param fromMapEntry is the lower bound.
*
* @param toMapEntry is the upper bound.
*
* @return the subset.
*
* @throws RuntimeExceptionWrapper if a checked exception is thrown,
* including a {@code DatabaseException} on BDB (C edition).
*/
public SortedSet> subSet(Map.Entry fromMapEntry,
Map.Entry toMapEntry) {
return subSet(fromMapEntry, true, toMapEntry, false);
}
/**
* Returns a view of the portion of this sorted set whose elements are
* strictly greater than fromMapEntry and strictly less than toMapEntry,
* optionally including fromMapEntry and toMapEntry.
* This method does not exist in the standard {@link SortedSet} interface.
*
* Note that the return value is a StoredCollection and must be treated
* as such; for example, its iterators must be explicitly closed.
*
* @param fromMapEntry is the lower bound.
*
* @param fromInclusive is true to include fromMapEntry.
*
* @param toMapEntry is the upper bound.
*
* @param toInclusive is true to include toMapEntry.
*
* @return the subset.
*
* @throws RuntimeExceptionWrapper if a checked exception is thrown,
* including a {@code DatabaseException} on BDB (C edition).
*/
public SortedSet> subSet(Map.Entry fromMapEntry,
boolean fromInclusive,
Map.Entry toMapEntry,
boolean toInclusive) {
Object fromKey = (fromMapEntry != null) ? fromMapEntry.getKey() : null;
Object toKey = (toMapEntry != null) ? toMapEntry.getKey() : null;
try {
return new StoredSortedEntrySet(
view.subView(fromKey, fromInclusive, toKey, toInclusive, null));
} catch (Exception e) {
throw StoredContainer.convertException(e);
}
}
}