⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 sublist.java

📁 Heritrix是一个开源,可扩展的web爬虫项目。Heritrix设计成严格按照robots.txt文件的排除指示和META robots标签。
💻 JAVA
字号:
/* SubList * * $Id: SubList.java 4648 2006-09-25 16:25:53Z paul_jack $ * Created on September 23, 2006 * * Copyright (C) 2006 Internet Archive. * * This file is part of the Heritrix web crawler (crawler.archive.org). * * Heritrix is free software; you can redistribute it and/or modify * it under the terms of the GNU Lesser Public License as published by * the Free Software Foundation; either version 2.1 of the License, or * any later version. * * Heritrix is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the * GNU Lesser Public License for more details. * * You should have received a copy of the GNU Lesser Public License * along with Heritrix; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA */package org.archive.util;import java.io.Serializable;import java.util.AbstractList;import java.util.List;/** * Universal sublist implementation.  Instances of this class are  * appropriate to return from {@link List#subList(int, int)}  * implementations. *  * <p>This implementation is efficient if the super list is random-access. * LinkedList-style super lists should subclass this and provide a custom * iterator. *  * @author pjack * @param <E>  the element type of the list */public class SubList<E> extends AbstractList<E> implements Serializable {    private static final long serialVersionUID = 1L;    /**     * The list that created this SubList.     */    final private List<E> delegate;    /**     * The starting index of the SubList, inclusive.     */    private int start;    /**     * The ending index of the SubList, exclusive.     */    private int end;        /**     * Constructor.     *      * @param delegate  the list that create this SubList     * @param start   the starting index of the sublist, inclusive     * @param end  the ending index of the sublist, exclusive     * @throws IndexOutOfBoundsException   if start or end are outside the     *   bounds of the list     * @throws IllegalArgumentException  if end is less than start     */    public SubList(List<E> delegate, int start, int end) {        if ((start < 0) || (start > delegate.size())) {            throw new IndexOutOfBoundsException();        }        if ((end < 0) || (end > delegate.size())) {            throw new IndexOutOfBoundsException();        }        if (end < start) {            throw new IllegalArgumentException();        }        this.delegate = delegate;        this.start = start;        this.end = end;    }        /**     * Ensures that the given index is strictly within the bounds of this     * SubList.       *      * @param index  the index to check     * @throws  IndexOutOfBoundsException  if the index is out of bounds     */    private void ensureInside(int index) {        if ((index < 0) || (index >= end - start)) {            throw new IndexOutOfBoundsException();        }    }    /**     * Ensures that the given index is either within bounds or on the border     * of this SubList.  In other words, this method allows the given index     * to be equal to {@link #size()}.     *      * @param index  the index to check     * @throws  IndexOutOfBoundsException  if the index is out of bounds     */    private void ensureBorder(int index) {        if ((index < 0) || (index > end - start)) {            throw new IndexOutOfBoundsException();        }    }    @Override    public E get(int index) {        ensureInside(index);        return delegate.get(start + index);    }    @Override    public int size() {        return end - start;    }    @Override    public E set(int index, E value) {        ensureInside(index);        return delegate.set(start + index, value);    }    @Override    public void add(int index, E value) {        ensureBorder(index);        delegate.add(start + index, value);        end++;    }        @Override    public E remove(int index) {        ensureInside(index);        return delegate.remove(start + index);    }}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -