All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.google.common.collect.ImmutableSortedAsList Maven / Gradle / Ivy

There is a newer version: 4.1.4
Show newest version
/*
 * Copyright (C) 2009 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 com.google.common.base.Preconditions;

import java.util.Comparator;

import javax.annotation.Nullable;

/**
 * List returned by {@code ImmutableSortedSet.asList()} when the set isn't empty.
 *
 * @author Jared Levy
 * @author Louis Wasserman
 */
@SuppressWarnings("serial")
final class ImmutableSortedAsList extends ImmutableList implements SortedIterable {
  private final transient ImmutableSortedSet backingSet;
  private final transient ImmutableList backingList;

  ImmutableSortedAsList(
      ImmutableSortedSet backingSet, ImmutableList backingList) {
    this.backingSet = backingSet;
    this.backingList = backingList;
  }

  @Override public Comparator comparator() {
    return backingSet.comparator();
  }

  // Override contains(), indexOf(), and lastIndexOf() to be O(log N) instead of O(N).

  @Override public boolean contains(@Nullable Object target) {
    // TODO: why not contains(target)?
    return backingSet.indexOf(target) >= 0;
  }

  @Override public int indexOf(@Nullable Object target) {
    return backingSet.indexOf(target);
  }

  @Override public int lastIndexOf(@Nullable Object target) {
    return backingSet.indexOf(target);
  }

  // The returned ImmutableSortedAsList maintains the contains(), indexOf(), and
  // lastIndexOf() performance benefits.
  @Override public ImmutableList subList(int fromIndex, int toIndex) {
    Preconditions.checkPositionIndexes(fromIndex, toIndex, size());
    return (fromIndex == toIndex) ? ImmutableList.of()
        : new RegularImmutableSortedSet(
            backingList.subList(fromIndex, toIndex), backingSet.comparator())
            .asList();
  }

  // The ImmutableAsList serialized form has the correct behavior.
  @Override Object writeReplace() {
    return new ImmutableAsList.SerializedForm(backingSet);
  }

  @Override public UnmodifiableIterator iterator() {
    return backingList.iterator();
  }

  @Override public E get(int index) {
    return backingList.get(index);
  }

  @Override public UnmodifiableListIterator listIterator() {
    return backingList.listIterator();
  }

  @Override public UnmodifiableListIterator listIterator(int index) {
    return backingList.listIterator(index);
  }

  @Override public int size() {
    return backingList.size();
  }

  @Override public boolean equals(@Nullable Object obj) {
    return backingList.equals(obj);
  }

  @Override public int hashCode() {
    return backingList.hashCode();
  }

  @Override boolean isPartialView() {
    return backingList.isPartialView();
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy