/* * Copyright (C) 2011 The Guava Authors * * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except * in compliance with the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software distributed under the * License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either * express or implied. See the License for the specific language governing permissions and * limitations under the License. */ package com.google.common.collect; import java.util.NoSuchElementException; import java.util.Set; import javax.annotation.Nullable; import com.google.common.annotations.Beta; /** * A set comprising zero or more {@linkplain Range#isEmpty nonempty}, * {@linkplain Range#isConnected(Range) disconnected} ranges of type {@code C}. * *
* Implementations that choose to support the {@link #add(Range)} operation are * required to ignore empty ranges and coalesce connected ranges. For example: * *
* {@code * * RangeSet* *rangeSet = TreeRangeSet.create(); * rangeSet.add(Range.closed(1, 10)); // {[1, 10]} * rangeSet.add(Range.closedOpen(11, 15)); // disconnected range; {[1, 10], [11, 15)} * rangeSet.add(Range.closedOpen(15, 20)); // connected range; {[1, 10], [11, 20)} * rangeSet.add(Range.openClosed(0, 0)); // empty range; {[1, 10], [11, 20)} * rangeSet.remove(Range.open(5, 10)); // splits [1, 10]; {[1, 5], [10, 10], [11, 20)}} *
* Note that the behavior of {@link Range#isEmpty()} and * {@link Range#isConnected(Range)} may not be as expected on discrete ranges. * See the Javadoc of those methods for details. * *
* For a {@link Set} whose contents are specified by a {@link Range}, see
* {@link ContiguousSet}.
*
* @author Kevin Bourrillion
* @author Louis Wasserman
* @since 14.0
*/
@Beta
public interface RangeSet
* This is equivalent to checking if this range set {@link #encloses} each of
* the ranges in {@code other}.
*/
boolean enclosesAll(RangeSet
* The returned view supports the {@link #add} operation if this
* {@code RangeSet} supports {@link #remove}, and vice versa.
*/
RangeSet
* The returned view supports all optional operations supported by this
* {@code RangeSet}, with the caveat that an {@link IllegalArgumentException} is
* thrown on an attempt to {@linkplain #add(Range) add} any range not
* {@linkplain Range#encloses(Range) enclosed} by {@code view}.
*/
RangeSet
* Note that {@code range} will be {@linkplain Range#span(Range) coalesced} with
* any ranges in the range set that are {@linkplain Range#isConnected(Range)
* connected} with it. Moreover, if {@code range} is empty, this is a no-op.
*
* @throws UnsupportedOperationException if this range set does not support the
* {@code add} operation
*/
void add(Range
* If {@code range} is empty, this is a no-op.
*
* @throws UnsupportedOperationException if this range set does not support the
* {@code remove} operation
*/
void remove(Range
* This is equivalent to {@code remove(Range.all())}.
*
* @throws UnsupportedOperationException if this range set does not support the
* {@code clear} operation
*/
void clear();
/**
* Adds all of the ranges from the specified range set to this range set
* (optional operation). After this operation, this range set is the minimal
* range set that {@linkplain #enclosesAll(RangeSet) encloses} both the original
* range set and {@code other}.
*
*
* This is equivalent to calling {@link #add} on each of the ranges in
* {@code other} in turn.
*
* @throws UnsupportedOperationException if this range set does not support the
* {@code addAll} operation
*/
void addAll(RangeSet
* This is equivalent to calling {@link #remove} on each of the ranges in
* {@code other} in turn.
*
* @throws UnsupportedOperationException if this range set does not support the
* {@code removeAll} operation
*/
void removeAll(RangeSet