16.83/9.18 YES 16.99/9.21 proof of /export/starexec/sandbox/benchmark/theBenchmark.jar 16.99/9.21 # AProVE Commit ID: 48fb2092695e11cc9f56e44b17a92a5f88ffb256 marcel 20180622 unpublished dirty 16.99/9.21 16.99/9.21 16.99/9.21 termination of the given Bare JBC problem could be proven: 16.99/9.21 16.99/9.21 (0) Bare JBC problem 16.99/9.21 (1) BareJBCToJBCProof [EQUIVALENT, 96 ms] 16.99/9.21 (2) JBC problem 16.99/9.21 (3) JBCToGraph [EQUIVALENT, 2131 ms] 16.99/9.21 (4) JBCTerminationGraph 16.99/9.21 (5) TerminationGraphToSCCProof [SOUND, 0 ms] 16.99/9.21 (6) JBCTerminationSCC 16.99/9.21 (7) SCCToIRSProof [SOUND, 431 ms] 16.99/9.21 (8) IRSwT 16.99/9.21 (9) IRSFormatTransformerProof [EQUIVALENT, 0 ms] 16.99/9.21 (10) IRSwT 16.99/9.21 (11) IRSwTTerminationDigraphProof [EQUIVALENT, 128 ms] 16.99/9.21 (12) IRSwT 16.99/9.21 (13) IntTRSCompressionProof [EQUIVALENT, 0 ms] 16.99/9.21 (14) IRSwT 16.99/9.21 (15) TempFilterProof [SOUND, 127 ms] 16.99/9.21 (16) IntTRS 16.99/9.21 (17) PolynomialOrderProcessor [EQUIVALENT, 0 ms] 16.99/9.21 (18) IntTRS 16.99/9.21 (19) RankingReductionPairProof [EQUIVALENT, 12 ms] 16.99/9.21 (20) YES 16.99/9.21 16.99/9.21 16.99/9.21 ---------------------------------------- 16.99/9.21 16.99/9.21 (0) 16.99/9.21 Obligation: 16.99/9.21 need to prove termination of the following program: 16.99/9.21 /* 16.99/9.21 * Copyright 1997-2006 Sun Microsystems, Inc. All Rights Reserved. 16.99/9.21 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 16.99/9.21 * 16.99/9.21 * This code is free software; you can redistribute it and/or modify it 16.99/9.21 * under the terms of the GNU General Public License version 2 only, as 16.99/9.21 * published by the Free Software Foundation. Sun designates this 16.99/9.21 * particular file as subject to the "Classpath" exception as provided 16.99/9.21 * by Sun in the LICENSE file that accompanied this code. 16.99/9.21 * 16.99/9.21 * This code is distributed in the hope that it will be useful, but WITHOUT 16.99/9.21 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or 16.99/9.21 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License 16.99/9.21 * version 2 for more details (a copy is included in the LICENSE file that 16.99/9.21 * accompanied this code). 16.99/9.21 * 16.99/9.21 * You should have received a copy of the GNU General Public License version 16.99/9.21 * 2 along with this work; if not, write to the Free Software Foundation, 16.99/9.21 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. 16.99/9.21 * 16.99/9.21 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara, 16.99/9.21 * CA 95054 USA or visit www.sun.com if you need additional information or 16.99/9.21 * have any questions. 16.99/9.21 */ 16.99/9.21 16.99/9.21 package javaUtilEx; 16.99/9.21 16.99/9.21 /** 16.99/9.21 * This class provides a skeletal implementation of the Collection 16.99/9.21 * interface, to minimize the effort required to implement this interface.

16.99/9.21 * 16.99/9.21 * To implement an unmodifiable collection, the programmer needs only to 16.99/9.21 * extend this class and provide implementations for the iterator and 16.99/9.21 * size methods. (The iterator returned by the iterator 16.99/9.21 * method must implement hasNext and next.)

16.99/9.21 * 16.99/9.21 * To implement a modifiable collection, the programmer must additionally 16.99/9.21 * override this class's add method (which otherwise throws an 16.99/9.21 * UnsupportedOperationException), and the iterator returned by the 16.99/9.21 * iterator method must additionally implement its remove 16.99/9.21 * method.

16.99/9.21 * 16.99/9.21 * The programmer should generally provide a void (no argument) and 16.99/9.21 * Collection constructor, as per the recommendation in the 16.99/9.21 * Collection interface specification.

16.99/9.21 * 16.99/9.21 * The documentation for each non-abstract method in this class describes its 16.99/9.21 * implementation in detail. Each of these methods may be overridden if 16.99/9.21 * the collection being implemented admits a more efficient implementation.

16.99/9.21 * 16.99/9.21 * This class is a member of the 16.99/9.21 * 16.99/9.21 * Java Collections Framework. 16.99/9.21 * 16.99/9.21 * @author Josh Bloch 16.99/9.21 * @author Neal Gafter 16.99/9.21 * @see Collection 16.99/9.21 * @since 1.2 16.99/9.21 */ 16.99/9.21 16.99/9.21 public abstract class AbstractCollection implements Collection { 16.99/9.21 /** 16.99/9.21 * Sole constructor. (For invocation by subclass constructors, typically 16.99/9.21 * implicit.) 16.99/9.21 */ 16.99/9.21 protected AbstractCollection() { 16.99/9.21 } 16.99/9.21 16.99/9.21 // Query Operations 16.99/9.21 16.99/9.21 /** 16.99/9.21 * Returns an iterator over the elements contained in this collection. 16.99/9.21 * 16.99/9.21 * @return an iterator over the elements contained in this collection 16.99/9.21 */ 16.99/9.21 public abstract Iterator iterator(); 16.99/9.21 16.99/9.21 public abstract int size(); 16.99/9.21 16.99/9.21 /** 16.99/9.21 * {@inheritDoc} 16.99/9.21 * 16.99/9.21 *

This implementation returns size() == 0. 16.99/9.21 */ 16.99/9.21 public boolean isEmpty() { 16.99/9.21 return size() == 0; 16.99/9.21 } 16.99/9.21 16.99/9.21 /** 16.99/9.21 * {@inheritDoc} 16.99/9.21 * 16.99/9.21 *

This implementation iterates over the elements in the collection, 16.99/9.21 * checking each element in turn for equality with the specified element. 16.99/9.21 * 16.99/9.21 * @throws ClassCastException {@inheritDoc} 16.99/9.21 * @throws NullPointerException {@inheritDoc} 16.99/9.21 */ 16.99/9.21 public boolean contains(Object o) { 16.99/9.21 Iterator e = iterator(); 16.99/9.21 if (o==null) { 16.99/9.21 while (e.hasNext()) 16.99/9.21 if (e.next()==null) 16.99/9.21 return true; 16.99/9.21 } else { 16.99/9.21 while (e.hasNext()) 16.99/9.21 if (o.equals(e.next())) 16.99/9.21 return true; 16.99/9.21 } 16.99/9.21 return false; 16.99/9.21 } 16.99/9.21 16.99/9.21 // Modification Operations 16.99/9.21 16.99/9.21 /** 16.99/9.21 * {@inheritDoc} 16.99/9.21 * 16.99/9.21 *

This implementation always throws an 16.99/9.21 * UnsupportedOperationException. 16.99/9.21 * 16.99/9.21 * @throws UnsupportedOperationException {@inheritDoc} 16.99/9.21 * @throws ClassCastException {@inheritDoc} 16.99/9.21 * @throws NullPointerException {@inheritDoc} 16.99/9.21 * @throws IllegalArgumentException {@inheritDoc} 16.99/9.21 * @throws IllegalStateException {@inheritDoc} 16.99/9.21 */ 16.99/9.21 public boolean add(E e) { 16.99/9.21 throw new UnsupportedOperationException(); 16.99/9.21 } 16.99/9.21 16.99/9.21 /** 16.99/9.21 * {@inheritDoc} 16.99/9.21 * 16.99/9.21 *

This implementation iterates over the collection looking for the 16.99/9.21 * specified element. If it finds the element, it removes the element 16.99/9.21 * from the collection using the iterator's remove method. 16.99/9.21 * 16.99/9.21 *

Note that this implementation throws an 16.99/9.21 * UnsupportedOperationException if the iterator returned by this 16.99/9.21 * collection's iterator method does not implement the remove 16.99/9.21 * method and this collection contains the specified object. 16.99/9.21 * 16.99/9.21 * @throws UnsupportedOperationException {@inheritDoc} 16.99/9.21 * @throws ClassCastException {@inheritDoc} 16.99/9.21 * @throws NullPointerException {@inheritDoc} 16.99/9.21 */ 16.99/9.21 public boolean remove(Object o) { 16.99/9.21 Iterator e = iterator(); 16.99/9.21 if (o==null) { 16.99/9.21 while (e.hasNext()) { 16.99/9.21 if (e.next()==null) { 16.99/9.21 e.remove(); 16.99/9.21 return true; 16.99/9.21 } 16.99/9.21 } 16.99/9.21 } else { 16.99/9.21 while (e.hasNext()) { 16.99/9.21 if (o.equals(e.next())) { 16.99/9.21 e.remove(); 16.99/9.21 return true; 16.99/9.21 } 16.99/9.21 } 16.99/9.21 } 16.99/9.21 return false; 16.99/9.21 } 16.99/9.21 16.99/9.21 16.99/9.21 // Bulk Operations 16.99/9.21 16.99/9.21 /** 16.99/9.21 * {@inheritDoc} 16.99/9.21 * 16.99/9.21 *

This implementation iterates over the specified collection, 16.99/9.21 * checking each element returned by the iterator in turn to see 16.99/9.21 * if it's contained in this collection. If all elements are so 16.99/9.21 * contained true is returned, otherwise false. 16.99/9.21 * 16.99/9.21 * @throws ClassCastException {@inheritDoc} 16.99/9.21 * @throws NullPointerException {@inheritDoc} 16.99/9.21 * @see #contains(Object) 16.99/9.21 */ 16.99/9.21 public boolean containsAll(Collection c) { 16.99/9.21 Iterator e = c.iterator(); 16.99/9.21 while (e.hasNext()) 16.99/9.21 if (!contains(e.next())) 16.99/9.21 return false; 16.99/9.21 return true; 16.99/9.21 } 16.99/9.21 16.99/9.21 /** 16.99/9.21 * {@inheritDoc} 16.99/9.21 * 16.99/9.21 *

This implementation iterates over the specified collection, and adds 16.99/9.21 * each object returned by the iterator to this collection, in turn. 16.99/9.21 * 16.99/9.21 *

Note that this implementation will throw an 16.99/9.21 * UnsupportedOperationException unless add is 16.99/9.21 * overridden (assuming the specified collection is non-empty). 16.99/9.21 * 16.99/9.21 * @throws UnsupportedOperationException {@inheritDoc} 16.99/9.21 * @throws ClassCastException {@inheritDoc} 16.99/9.21 * @throws NullPointerException {@inheritDoc} 16.99/9.21 * @throws IllegalArgumentException {@inheritDoc} 16.99/9.21 * @throws IllegalStateException {@inheritDoc} 16.99/9.21 * 16.99/9.21 * @see #add(Object) 16.99/9.21 */ 16.99/9.21 public boolean addAll(Collection c) { 16.99/9.21 boolean modified = false; 16.99/9.21 Iterator e = c.iterator(); 16.99/9.21 while (e.hasNext()) { 16.99/9.21 if (add(e.next())) 16.99/9.21 modified = true; 16.99/9.21 } 16.99/9.21 return modified; 16.99/9.21 } 16.99/9.21 16.99/9.21 /** 16.99/9.21 * {@inheritDoc} 16.99/9.21 * 16.99/9.21 *

This implementation iterates over this collection, checking each 16.99/9.21 * element returned by the iterator in turn to see if it's contained 16.99/9.21 * in the specified collection. If it's so contained, it's removed from 16.99/9.21 * this collection with the iterator's remove method. 16.99/9.21 * 16.99/9.21 *

Note that this implementation will throw an 16.99/9.21 * UnsupportedOperationException if the iterator returned by the 16.99/9.21 * iterator method does not implement the remove method 16.99/9.21 * and this collection contains one or more elements in common with the 16.99/9.21 * specified collection. 16.99/9.21 * 16.99/9.21 * @throws UnsupportedOperationException {@inheritDoc} 16.99/9.21 * @throws ClassCastException {@inheritDoc} 16.99/9.21 * @throws NullPointerException {@inheritDoc} 16.99/9.21 * 16.99/9.21 * @see #remove(Object) 16.99/9.21 * @see #contains(Object) 16.99/9.21 */ 16.99/9.21 public boolean removeAll(Collection c) { 16.99/9.21 boolean modified = false; 16.99/9.21 Iterator e = iterator(); 16.99/9.21 while (e.hasNext()) { 16.99/9.21 if (c.contains(e.next())) { 16.99/9.21 e.remove(); 16.99/9.21 modified = true; 16.99/9.21 } 16.99/9.21 } 16.99/9.21 return modified; 16.99/9.21 } 16.99/9.21 16.99/9.21 /** 16.99/9.21 * {@inheritDoc} 16.99/9.21 * 16.99/9.21 *

This implementation iterates over this collection, checking each 16.99/9.21 * element returned by the iterator in turn to see if it's contained 16.99/9.21 * in the specified collection. If it's not so contained, it's removed 16.99/9.21 * from this collection with the iterator's remove method. 16.99/9.21 * 16.99/9.21 *

Note that this implementation will throw an 16.99/9.21 * UnsupportedOperationException if the iterator returned by the 16.99/9.21 * iterator method does not implement the remove method 16.99/9.21 * and this collection contains one or more elements not present in the 16.99/9.21 * specified collection. 16.99/9.21 * 16.99/9.21 * @throws UnsupportedOperationException {@inheritDoc} 16.99/9.21 * @throws ClassCastException {@inheritDoc} 16.99/9.21 * @throws NullPointerException {@inheritDoc} 16.99/9.21 * 16.99/9.21 * @see #remove(Object) 16.99/9.21 * @see #contains(Object) 16.99/9.21 */ 16.99/9.21 public boolean retainAll(Collection c) { 16.99/9.21 boolean modified = false; 16.99/9.21 Iterator e = iterator(); 16.99/9.21 while (e.hasNext()) { 16.99/9.21 if (!c.contains(e.next())) { 16.99/9.21 e.remove(); 16.99/9.21 modified = true; 16.99/9.21 } 16.99/9.21 } 16.99/9.21 return modified; 16.99/9.21 } 16.99/9.21 16.99/9.21 /** 16.99/9.21 * {@inheritDoc} 16.99/9.21 * 16.99/9.21 *

This implementation iterates over this collection, removing each 16.99/9.21 * element using the Iterator.remove operation. Most 16.99/9.21 * implementations will probably choose to override this method for 16.99/9.21 * efficiency. 16.99/9.21 * 16.99/9.21 *

Note that this implementation will throw an 16.99/9.21 * UnsupportedOperationException if the iterator returned by this 16.99/9.21 * collection's iterator method does not implement the 16.99/9.21 * remove method and this collection is non-empty. 16.99/9.21 * 16.99/9.21 * @throws UnsupportedOperationException {@inheritDoc} 16.99/9.21 */ 16.99/9.21 public void clear() { 16.99/9.21 Iterator e = iterator(); 16.99/9.21 while (e.hasNext()) { 16.99/9.21 e.next(); 16.99/9.21 e.remove(); 16.99/9.21 } 16.99/9.21 } 16.99/9.21 16.99/9.21 16.99/9.21 // String conversion 16.99/9.21 16.99/9.21 /** 16.99/9.21 * Returns a string representation of this collection. The string 16.99/9.21 * representation consists of a list of the collection's elements in the 16.99/9.21 * order they are returned by its iterator, enclosed in square brackets 16.99/9.21 * ("[]"). Adjacent elements are separated by the characters 16.99/9.21 * ", " (comma and space). Elements are converted to strings as 16.99/9.21 * by {@link String#valueOf(Object)}. 16.99/9.21 * 16.99/9.21 * @return a string representation of this collection 16.99/9.21 */ 16.99/9.21 public String toString() { 16.99/9.21 Iterator i = iterator(); 16.99/9.21 if (! i.hasNext()) 16.99/9.21 return "[]"; 16.99/9.21 16.99/9.21 String sb = ""; 16.99/9.21 sb = sb + "["; 16.99/9.21 for (;;) { 16.99/9.21 E e = i.next(); 16.99/9.21 sb = sb + (e == this ? "(this Collection)" : e); 16.99/9.21 if (! i.hasNext()) { 16.99/9.21 sb = sb + "]"; 16.99/9.21 return sb; 16.99/9.21 } 16.99/9.21 sb = sb + ", "; 16.99/9.21 } 16.99/9.21 } 16.99/9.21 16.99/9.21 } 16.99/9.21 16.99/9.21 16.99/9.21 /* 16.99/9.21 * Copyright 1997-2007 Sun Microsystems, Inc. All Rights Reserved. 16.99/9.21 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 16.99/9.21 * 16.99/9.21 * This code is free software; you can redistribute it and/or modify it 16.99/9.21 * under the terms of the GNU General Public License version 2 only, as 16.99/9.21 * published by the Free Software Foundation. Sun designates this 16.99/9.21 * particular file as subject to the "Classpath" exception as provided 16.99/9.21 * by Sun in the LICENSE file that accompanied this code. 16.99/9.21 * 16.99/9.21 * This code is distributed in the hope that it will be useful, but WITHOUT 16.99/9.21 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or 16.99/9.21 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License 16.99/9.21 * version 2 for more details (a copy is included in the LICENSE file that 16.99/9.21 * accompanied this code). 16.99/9.21 * 16.99/9.21 * You should have received a copy of the GNU General Public License version 16.99/9.21 * 2 along with this work; if not, write to the Free Software Foundation, 16.99/9.21 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. 16.99/9.21 * 16.99/9.21 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara, 16.99/9.21 * CA 95054 USA or visit www.sun.com if you need additional information or 16.99/9.21 * have any questions. 16.99/9.21 */ 16.99/9.21 16.99/9.21 package javaUtilEx; 16.99/9.21 16.99/9.21 /** 16.99/9.21 * This class provides a skeletal implementation of the {@link List} 16.99/9.21 * interface to minimize the effort required to implement this interface 16.99/9.21 * backed by a "random access" data store (such as an array). For sequential 16.99/9.21 * access data (such as a linked list), {@link AbstractSequentialList} should 16.99/9.21 * be used in preference to this class. 16.99/9.21 * 16.99/9.21 *

To implement an unmodifiable list, the programmer needs only to extend 16.99/9.21 * this class and provide implementations for the {@link #get(int)} and 16.99/9.21 * {@link List#size() size()} methods. 16.99/9.21 * 16.99/9.21 *

To implement a modifiable list, the programmer must additionally 16.99/9.21 * override the {@link #set(int, Object) set(int, E)} method (which otherwise 16.99/9.21 * throws an {@code UnsupportedOperationException}). If the list is 16.99/9.21 * variable-size the programmer must additionally override the 16.99/9.21 * {@link #add(int, Object) add(int, E)} and {@link #remove(int)} methods. 16.99/9.21 * 16.99/9.21 *

The programmer should generally provide a void (no argument) and collection 16.99/9.21 * constructor, as per the recommendation in the {@link Collection} interface 16.99/9.21 * specification. 16.99/9.21 * 16.99/9.21 *

Unlike the other abstract collection implementations, the programmer does 16.99/9.21 * not have to provide an iterator implementation; the iterator and 16.99/9.21 * list iterator are implemented by this class, on top of the "random access" 16.99/9.21 * methods: 16.99/9.21 * {@link #get(int)}, 16.99/9.21 * {@link #set(int, Object) set(int, E)}, 16.99/9.21 * {@link #add(int, Object) add(int, E)} and 16.99/9.21 * {@link #remove(int)}. 16.99/9.21 * 16.99/9.21 *

The documentation for each non-abstract method in this class describes its 16.99/9.21 * implementation in detail. Each of these methods may be overridden if the 16.99/9.21 * collection being implemented admits a more efficient implementation. 16.99/9.21 * 16.99/9.21 *

This class is a member of the 16.99/9.21 * 16.99/9.21 * Java Collections Framework. 16.99/9.21 * 16.99/9.21 * @author Josh Bloch 16.99/9.21 * @author Neal Gafter 16.99/9.21 * @since 1.2 16.99/9.21 */ 16.99/9.21 16.99/9.21 public abstract class AbstractList extends AbstractCollection implements List { 16.99/9.21 /** 16.99/9.21 * Sole constructor. (For invocation by subclass constructors, typically 16.99/9.21 * implicit.) 16.99/9.21 */ 16.99/9.21 protected AbstractList() { 16.99/9.21 } 16.99/9.21 16.99/9.21 /** 16.99/9.21 * Appends the specified element to the end of this list (optional 16.99/9.21 * operation). 16.99/9.21 * 16.99/9.21 *

Lists that support this operation may place limitations on what 16.99/9.21 * elements may be added to this list. In particular, some 16.99/9.21 * lists will refuse to add null elements, and others will impose 16.99/9.21 * restrictions on the type of elements that may be added. List 16.99/9.21 * classes should clearly specify in their documentation any restrictions 16.99/9.21 * on what elements may be added. 16.99/9.21 * 16.99/9.21 *

This implementation calls {@code add(size(), e)}. 16.99/9.21 * 16.99/9.21 *

Note that this implementation throws an 16.99/9.21 * {@code UnsupportedOperationException} unless 16.99/9.21 * {@link #add(int, Object) add(int, E)} is overridden. 16.99/9.21 * 16.99/9.21 * @param e element to be appended to this list 16.99/9.21 * @return {@code true} (as specified by {@link Collection#add}) 16.99/9.21 * @throws UnsupportedOperationException if the {@code add} operation 16.99/9.21 * is not supported by this list 16.99/9.21 * @throws ClassCastException if the class of the specified element 16.99/9.21 * prevents it from being added to this list 16.99/9.21 * @throws NullPointerException if the specified element is null and this 16.99/9.21 * list does not permit null elements 16.99/9.21 * @throws IllegalArgumentException if some property of this element 16.99/9.21 * prevents it from being added to this list 16.99/9.21 */ 16.99/9.21 public boolean add(E e) { 16.99/9.21 add(size(), e); 16.99/9.21 return true; 16.99/9.21 } 16.99/9.21 16.99/9.21 /** 16.99/9.21 * {@inheritDoc} 16.99/9.21 * 16.99/9.21 * @throws IndexOutOfBoundsException {@inheritDoc} 16.99/9.21 */ 16.99/9.21 abstract public E get(int index); 16.99/9.21 16.99/9.21 /** 16.99/9.21 * {@inheritDoc} 16.99/9.21 * 16.99/9.21 *

This implementation always throws an 16.99/9.21 * {@code UnsupportedOperationException}. 16.99/9.21 * 16.99/9.21 * @throws UnsupportedOperationException {@inheritDoc} 16.99/9.21 * @throws ClassCastException {@inheritDoc} 16.99/9.21 * @throws NullPointerException {@inheritDoc} 16.99/9.21 * @throws IllegalArgumentException {@inheritDoc} 16.99/9.21 * @throws IndexOutOfBoundsException {@inheritDoc} 16.99/9.21 */ 16.99/9.21 public E set(int index, E element) { 16.99/9.21 throw new UnsupportedOperationException(); 16.99/9.21 } 16.99/9.21 16.99/9.21 /** 16.99/9.21 * {@inheritDoc} 16.99/9.21 * 16.99/9.21 *

This implementation always throws an 16.99/9.21 * {@code UnsupportedOperationException}. 16.99/9.21 * 16.99/9.21 * @throws UnsupportedOperationException {@inheritDoc} 16.99/9.21 * @throws ClassCastException {@inheritDoc} 16.99/9.21 * @throws NullPointerException {@inheritDoc} 16.99/9.21 * @throws IllegalArgumentException {@inheritDoc} 16.99/9.21 * @throws IndexOutOfBoundsException {@inheritDoc} 16.99/9.22 */ 16.99/9.22 public void add(int index, E element) { 16.99/9.22 throw new UnsupportedOperationException(); 16.99/9.22 } 16.99/9.22 16.99/9.22 /** 16.99/9.22 * {@inheritDoc} 16.99/9.22 * 16.99/9.22 *

This implementation always throws an 16.99/9.22 * {@code UnsupportedOperationException}. 16.99/9.22 * 16.99/9.22 * @throws UnsupportedOperationException {@inheritDoc} 16.99/9.22 * @throws IndexOutOfBoundsException {@inheritDoc} 16.99/9.22 */ 16.99/9.22 public E remove(int index) { 16.99/9.22 throw new UnsupportedOperationException(); 16.99/9.22 } 16.99/9.22 16.99/9.22 16.99/9.22 // Search Operations 16.99/9.22 16.99/9.22 /** 16.99/9.22 * {@inheritDoc} 16.99/9.22 * 16.99/9.22 *

This implementation first gets a list iterator (with 16.99/9.22 * {@code listIterator()}). Then, it iterates over the list until the 16.99/9.22 * specified element is found or the end of the list is reached. 16.99/9.22 * 16.99/9.22 * @throws ClassCastException {@inheritDoc} 16.99/9.22 * @throws NullPointerException {@inheritDoc} 16.99/9.22 */ 16.99/9.22 public int indexOf(Object o) { 16.99/9.22 ListIterator e = listIterator(); 16.99/9.22 if (o==null) { 16.99/9.22 while (e.hasNext()) 16.99/9.22 if (e.next()==null) 16.99/9.22 return e.previousIndex(); 16.99/9.22 } else { 16.99/9.22 while (e.hasNext()) 16.99/9.22 if (o.equals(e.next())) 16.99/9.22 return e.previousIndex(); 16.99/9.22 } 16.99/9.22 return -1; 16.99/9.22 } 16.99/9.22 16.99/9.22 /** 16.99/9.22 * {@inheritDoc} 16.99/9.22 * 16.99/9.22 *

This implementation first gets a list iterator that points to the end 16.99/9.22 * of the list (with {@code listIterator(size())}). Then, it iterates 16.99/9.22 * backwards over the list until the specified element is found, or the 16.99/9.22 * beginning of the list is reached. 16.99/9.22 * 16.99/9.22 * @throws ClassCastException {@inheritDoc} 16.99/9.22 * @throws NullPointerException {@inheritDoc} 16.99/9.22 */ 16.99/9.22 public int lastIndexOf(Object o) { 16.99/9.22 ListIterator e = listIterator(size()); 16.99/9.22 if (o==null) { 16.99/9.22 while (e.hasPrevious()) 16.99/9.22 if (e.previous()==null) 16.99/9.22 return e.nextIndex(); 16.99/9.22 } else { 16.99/9.22 while (e.hasPrevious()) 16.99/9.22 if (o.equals(e.previous())) 16.99/9.22 return e.nextIndex(); 16.99/9.22 } 16.99/9.22 return -1; 16.99/9.22 } 16.99/9.22 16.99/9.22 16.99/9.22 // Bulk Operations 16.99/9.22 16.99/9.22 /** 16.99/9.22 * Removes all of the elements from this list (optional operation). 16.99/9.22 * The list will be empty after this call returns. 16.99/9.22 * 16.99/9.22 *

This implementation calls {@code removeRange(0, size())}. 16.99/9.22 * 16.99/9.22 *

Note that this implementation throws an 16.99/9.22 * {@code UnsupportedOperationException} unless {@code remove(int 16.99/9.22 * index)} or {@code removeRange(int fromIndex, int toIndex)} is 16.99/9.22 * overridden. 16.99/9.22 * 16.99/9.22 * @throws UnsupportedOperationException if the {@code clear} operation 16.99/9.22 * is not supported by this list 16.99/9.22 */ 16.99/9.22 public void clear() { 16.99/9.22 removeRange(0, size()); 16.99/9.22 } 16.99/9.22 16.99/9.22 /** 16.99/9.22 * {@inheritDoc} 16.99/9.22 * 16.99/9.22 *

This implementation gets an iterator over the specified collection 16.99/9.22 * and iterates over it, inserting the elements obtained from the 16.99/9.22 * iterator into this list at the appropriate position, one at a time, 16.99/9.22 * using {@code add(int, E)}. 16.99/9.22 * Many implementations will override this method for efficiency. 16.99/9.22 * 16.99/9.22 *

Note that this implementation throws an 16.99/9.22 * {@code UnsupportedOperationException} unless 16.99/9.22 * {@link #add(int, Object) add(int, E)} is overridden. 16.99/9.22 * 16.99/9.22 * @throws UnsupportedOperationException {@inheritDoc} 16.99/9.22 * @throws ClassCastException {@inheritDoc} 16.99/9.22 * @throws NullPointerException {@inheritDoc} 16.99/9.22 * @throws IllegalArgumentException {@inheritDoc} 16.99/9.22 * @throws IndexOutOfBoundsException {@inheritDoc} 16.99/9.22 */ 16.99/9.22 public boolean addAll(int index, Collection c) { 16.99/9.22 rangeCheckForAdd(index); 16.99/9.22 boolean modified = false; 16.99/9.22 Iterator e = c.iterator(); 16.99/9.22 while (e.hasNext()) { 16.99/9.22 add(index++, e.next()); 16.99/9.22 modified = true; 16.99/9.22 } 16.99/9.22 return modified; 16.99/9.22 } 16.99/9.22 16.99/9.22 16.99/9.22 // Iterators 16.99/9.22 16.99/9.22 /** 16.99/9.22 * Returns an iterator over the elements in this list in proper sequence. 16.99/9.22 * 16.99/9.22 *

This implementation returns a straightforward implementation of the 16.99/9.22 * iterator interface, relying on the backing list's {@code size()}, 16.99/9.22 * {@code get(int)}, and {@code remove(int)} methods. 16.99/9.22 * 16.99/9.22 *

Note that the iterator returned by this method will throw an 16.99/9.22 * {@link UnsupportedOperationException} in response to its 16.99/9.22 * {@code remove} method unless the list's {@code remove(int)} method is 16.99/9.22 * overridden. 16.99/9.22 * 16.99/9.22 *

This implementation can be made to throw runtime exceptions in the 16.99/9.22 * face of concurrent modification, as described in the specification 16.99/9.22 * for the (protected) {@link #modCount} field. 16.99/9.22 * 16.99/9.22 * @return an iterator over the elements in this list in proper sequence 16.99/9.22 */ 16.99/9.22 public Iterator iterator() { 16.99/9.22 return new Itr(); 16.99/9.22 } 16.99/9.22 16.99/9.22 /** 16.99/9.22 * {@inheritDoc} 16.99/9.22 * 16.99/9.22 *

This implementation returns {@code listIterator(0)}. 16.99/9.22 * 16.99/9.22 * @see #listIterator(int) 16.99/9.22 */ 16.99/9.22 public ListIterator listIterator() { 16.99/9.22 return listIterator(0); 16.99/9.22 } 16.99/9.22 16.99/9.22 /** 16.99/9.22 * {@inheritDoc} 16.99/9.22 * 16.99/9.22 *

This implementation returns a straightforward implementation of the 16.99/9.22 * {@code ListIterator} interface that extends the implementation of the 16.99/9.22 * {@code Iterator} interface returned by the {@code iterator()} method. 16.99/9.22 * The {@code ListIterator} implementation relies on the backing list's 16.99/9.22 * {@code get(int)}, {@code set(int, E)}, {@code add(int, E)} 16.99/9.22 * and {@code remove(int)} methods. 16.99/9.22 * 16.99/9.22 *

Note that the list iterator returned by this implementation will 16.99/9.22 * throw an {@link UnsupportedOperationException} in response to its 16.99/9.22 * {@code remove}, {@code set} and {@code add} methods unless the 16.99/9.22 * list's {@code remove(int)}, {@code set(int, E)}, and 16.99/9.22 * {@code add(int, E)} methods are overridden. 16.99/9.22 * 16.99/9.22 *

This implementation can be made to throw runtime exceptions in the 16.99/9.22 * face of concurrent modification, as described in the specification for 16.99/9.22 * the (protected) {@link #modCount} field. 16.99/9.22 * 16.99/9.22 * @throws IndexOutOfBoundsException {@inheritDoc} 16.99/9.22 */ 16.99/9.22 public ListIterator listIterator(final int index) { 16.99/9.22 rangeCheckForAdd(index); 16.99/9.22 16.99/9.22 return new ListItr(index); 16.99/9.22 } 16.99/9.22 16.99/9.22 private class Itr implements Iterator { 16.99/9.22 /** 16.99/9.22 * Index of element to be returned by subsequent call to next. 16.99/9.22 */ 16.99/9.22 int cursor = 0; 16.99/9.22 16.99/9.22 /** 16.99/9.22 * Index of element returned by most recent call to next or 16.99/9.22 * previous. Reset to -1 if this element is deleted by a call 16.99/9.22 * to remove. 16.99/9.22 */ 16.99/9.22 int lastRet = -1; 16.99/9.22 16.99/9.22 /** 16.99/9.22 * The modCount value that the iterator believes that the backing 16.99/9.22 * List should have. If this expectation is violated, the iterator 16.99/9.22 * has detected concurrent modification. 16.99/9.22 */ 16.99/9.22 int expectedModCount = modCount; 16.99/9.22 16.99/9.22 public boolean hasNext() { 16.99/9.22 return cursor != size(); 16.99/9.22 } 16.99/9.22 16.99/9.22 public E next() { 16.99/9.22 checkForComodification(); 16.99/9.22 try { 16.99/9.22 int i = cursor; 16.99/9.22 E next = get(i); 16.99/9.22 lastRet = i; 16.99/9.22 cursor = i + 1; 16.99/9.22 return next; 16.99/9.22 } catch (IndexOutOfBoundsException e) { 16.99/9.22 checkForComodification(); 16.99/9.22 throw new NoSuchElementException(); 16.99/9.22 } 16.99/9.22 } 16.99/9.22 16.99/9.22 public void remove() { 16.99/9.22 if (lastRet < 0) 16.99/9.22 throw new IllegalStateException(); 16.99/9.22 checkForComodification(); 16.99/9.22 16.99/9.22 try { 16.99/9.22 AbstractList.this.remove(lastRet); 16.99/9.22 if (lastRet < cursor) 16.99/9.22 cursor--; 16.99/9.22 lastRet = -1; 16.99/9.22 expectedModCount = modCount; 16.99/9.22 } catch (IndexOutOfBoundsException e) { 16.99/9.22 throw new ConcurrentModificationException(); 16.99/9.22 } 16.99/9.22 } 16.99/9.22 16.99/9.22 final void checkForComodification() { 16.99/9.22 if (modCount != expectedModCount) 16.99/9.22 throw new ConcurrentModificationException(); 16.99/9.22 } 16.99/9.22 } 16.99/9.22 16.99/9.22 private class ListItr extends Itr implements ListIterator { 16.99/9.22 ListItr(int index) { 16.99/9.22 cursor = index; 16.99/9.22 } 16.99/9.22 16.99/9.22 public boolean hasPrevious() { 16.99/9.22 return cursor != 0; 16.99/9.22 } 16.99/9.22 16.99/9.22 public E previous() { 16.99/9.22 checkForComodification(); 16.99/9.22 try { 16.99/9.22 int i = cursor - 1; 16.99/9.22 E previous = get(i); 16.99/9.22 lastRet = cursor = i; 16.99/9.22 return previous; 16.99/9.22 } catch (IndexOutOfBoundsException e) { 16.99/9.22 checkForComodification(); 16.99/9.22 throw new NoSuchElementException(); 16.99/9.22 } 16.99/9.22 } 16.99/9.22 16.99/9.22 public int nextIndex() { 16.99/9.22 return cursor; 16.99/9.22 } 16.99/9.22 16.99/9.22 public int previousIndex() { 16.99/9.22 return cursor-1; 16.99/9.22 } 16.99/9.22 16.99/9.22 public void set(E e) { 16.99/9.22 if (lastRet < 0) 16.99/9.22 throw new IllegalStateException(); 16.99/9.22 checkForComodification(); 16.99/9.22 16.99/9.22 try { 16.99/9.22 AbstractList.this.set(lastRet, e); 16.99/9.22 expectedModCount = modCount; 16.99/9.22 } catch (IndexOutOfBoundsException ex) { 16.99/9.22 throw new ConcurrentModificationException(); 16.99/9.22 } 16.99/9.22 } 16.99/9.22 16.99/9.22 public void add(E e) { 16.99/9.22 checkForComodification(); 16.99/9.22 16.99/9.22 try { 16.99/9.22 int i = cursor; 16.99/9.22 AbstractList.this.add(i, e); 16.99/9.22 lastRet = -1; 16.99/9.22 cursor = i + 1; 16.99/9.22 expectedModCount = modCount; 16.99/9.22 } catch (IndexOutOfBoundsException ex) { 16.99/9.22 throw new ConcurrentModificationException(); 16.99/9.22 } 16.99/9.22 } 16.99/9.22 } 16.99/9.22 16.99/9.22 /** 16.99/9.22 * {@inheritDoc} 16.99/9.22 * 16.99/9.22 *

This implementation returns a list that subclasses 16.99/9.22 * {@code AbstractList}. The subclass stores, in private fields, the 16.99/9.22 * offset of the subList within the backing list, the size of the subList 16.99/9.22 * (which can change over its lifetime), and the expected 16.99/9.22 * {@code modCount} value of the backing list. There are two variants 16.99/9.22 * of the subclass, one of which implements {@code RandomAccess}. 16.99/9.22 * If this list implements {@code RandomAccess} the returned list will 16.99/9.22 * be an instance of the subclass that implements {@code RandomAccess}. 16.99/9.22 * 16.99/9.22 *

The subclass's {@code set(int, E)}, {@code get(int)}, 16.99/9.22 * {@code add(int, E)}, {@code remove(int)}, {@code addAll(int, 16.99/9.22 * Collection)} and {@code removeRange(int, int)} methods all 16.99/9.22 * delegate to the corresponding methods on the backing abstract list, 16.99/9.22 * after bounds-checking the index and adjusting for the offset. The 16.99/9.22 * {@code addAll(Collection c)} method merely returns {@code addAll(size, 16.99/9.22 * c)}. 16.99/9.22 * 16.99/9.22 *

The {@code listIterator(int)} method returns a "wrapper object" 16.99/9.22 * over a list iterator on the backing list, which is created with the 16.99/9.22 * corresponding method on the backing list. The {@code iterator} method 16.99/9.22 * merely returns {@code listIterator()}, and the {@code size} method 16.99/9.22 * merely returns the subclass's {@code size} field. 16.99/9.22 * 16.99/9.22 *

All methods first check to see if the actual {@code modCount} of 16.99/9.22 * the backing list is equal to its expected value, and throw a 16.99/9.22 * {@code ConcurrentModificationException} if it is not. 16.99/9.22 * 16.99/9.22 * @throws IndexOutOfBoundsException if an endpoint index value is out of range 16.99/9.22 * {@code (fromIndex < 0 || toIndex > size)} 16.99/9.22 * @throws IllegalArgumentException if the endpoint indices are out of order 16.99/9.22 * {@code (fromIndex > toIndex)} 16.99/9.22 */ 16.99/9.22 public List subList(int fromIndex, int toIndex) { 16.99/9.22 return (this instanceof RandomAccess ? 16.99/9.22 new RandomAccessSubList(this, fromIndex, toIndex) : 16.99/9.22 new SubList(this, fromIndex, toIndex)); 16.99/9.22 } 16.99/9.22 16.99/9.22 // Comparison and hashing 16.99/9.22 16.99/9.22 /** 16.99/9.22 * Compares the specified object with this list for equality. Returns 16.99/9.22 * {@code true} if and only if the specified object is also a list, both 16.99/9.22 * lists have the same size, and all corresponding pairs of elements in 16.99/9.22 * the two lists are equal. (Two elements {@code e1} and 16.99/9.22 * {@code e2} are equal if {@code (e1==null ? e2==null : 16.99/9.22 * e1.equals(e2))}.) In other words, two lists are defined to be 16.99/9.22 * equal if they contain the same elements in the same order.

16.99/9.22 * 16.99/9.22 * This implementation first checks if the specified object is this 16.99/9.22 * list. If so, it returns {@code true}; if not, it checks if the 16.99/9.22 * specified object is a list. If not, it returns {@code false}; if so, 16.99/9.22 * it iterates over both lists, comparing corresponding pairs of elements. 16.99/9.22 * If any comparison returns {@code false}, this method returns 16.99/9.22 * {@code false}. If either iterator runs out of elements before the 16.99/9.22 * other it returns {@code false} (as the lists are of unequal length); 16.99/9.22 * otherwise it returns {@code true} when the iterations complete. 16.99/9.22 * 16.99/9.22 * @param o the object to be compared for equality with this list 16.99/9.22 * @return {@code true} if the specified object is equal to this list 16.99/9.22 */ 16.99/9.22 public boolean equals(Object o) { 16.99/9.22 if (o == this) 16.99/9.22 return true; 16.99/9.22 if (!(o instanceof List)) 16.99/9.22 return false; 16.99/9.22 16.99/9.22 ListIterator e1 = listIterator(); 16.99/9.22 ListIterator e2 = ((List) o).listIterator(); 16.99/9.22 while(e1.hasNext() && e2.hasNext()) { 16.99/9.22 E o1 = e1.next(); 16.99/9.22 Object o2 = e2.next(); 16.99/9.22 if (!(o1==null ? o2==null : o1.equals(o2))) 16.99/9.22 return false; 16.99/9.22 } 16.99/9.22 return !(e1.hasNext() || e2.hasNext()); 16.99/9.22 } 16.99/9.22 16.99/9.22 /** 16.99/9.22 * Returns the hash code value for this list. 16.99/9.22 * 16.99/9.22 *

This implementation uses exactly the code that is used to define the 16.99/9.22 * list hash function in the documentation for the {@link List#hashCode} 16.99/9.22 * method. 16.99/9.22 * 16.99/9.22 * @return the hash code value for this list 16.99/9.22 */ 16.99/9.22 public int hashCode() { 16.99/9.22 int hashCode = 1; 16.99/9.22 Iterator it = this.iterator(); 16.99/9.22 while (it.hasNext()) { 16.99/9.22 E e = it.next(); 16.99/9.22 hashCode = 31*hashCode + (e==null ? 0 : e.hashCode()); 16.99/9.22 } 16.99/9.22 return hashCode; 16.99/9.22 } 16.99/9.22 16.99/9.22 /** 16.99/9.22 * Removes from this list all of the elements whose index is between 16.99/9.22 * {@code fromIndex}, inclusive, and {@code toIndex}, exclusive. 16.99/9.22 * Shifts any succeeding elements to the left (reduces their index). 16.99/9.22 * This call shortens the list by {@code (toIndex - fromIndex)} elements. 16.99/9.22 * (If {@code toIndex==fromIndex}, this operation has no effect.) 16.99/9.22 * 16.99/9.22 *

This method is called by the {@code clear} operation on this list 16.99/9.22 * and its subLists. Overriding this method to take advantage of 16.99/9.22 * the internals of the list implementation can substantially 16.99/9.22 * improve the performance of the {@code clear} operation on this list 16.99/9.22 * and its subLists. 16.99/9.22 * 16.99/9.22 *

This implementation gets a list iterator positioned before 16.99/9.22 * {@code fromIndex}, and repeatedly calls {@code ListIterator.next} 16.99/9.22 * followed by {@code ListIterator.remove} until the entire range has 16.99/9.22 * been removed. Note: if {@code ListIterator.remove} requires linear 16.99/9.22 * time, this implementation requires quadratic time. 16.99/9.22 * 16.99/9.22 * @param fromIndex index of first element to be removed 16.99/9.22 * @param toIndex index after last element to be removed 16.99/9.22 */ 16.99/9.22 protected void removeRange(int fromIndex, int toIndex) { 16.99/9.22 ListIterator it = listIterator(fromIndex); 16.99/9.22 for (int i=0, n=toIndex-fromIndex; istructurally modified. 16.99/9.22 * Structural modifications are those that change the size of the 16.99/9.22 * list, or otherwise perturb it in such a fashion that iterations in 16.99/9.22 * progress may yield incorrect results. 16.99/9.22 * 16.99/9.22 *

This field is used by the iterator and list iterator implementation 16.99/9.22 * returned by the {@code iterator} and {@code listIterator} methods. 16.99/9.22 * If the value of this field changes unexpectedly, the iterator (or list 16.99/9.22 * iterator) will throw a {@code ConcurrentModificationException} in 16.99/9.22 * response to the {@code next}, {@code remove}, {@code previous}, 16.99/9.22 * {@code set} or {@code add} operations. This provides 16.99/9.22 * fail-fast behavior, rather than non-deterministic behavior in 16.99/9.22 * the face of concurrent modification during iteration. 16.99/9.22 * 16.99/9.22 *

Use of this field by subclasses is optional. If a subclass 16.99/9.22 * wishes to provide fail-fast iterators (and list iterators), then it 16.99/9.22 * merely has to increment this field in its {@code add(int, E)} and 16.99/9.22 * {@code remove(int)} methods (and any other methods that it overrides 16.99/9.22 * that result in structural modifications to the list). A single call to 16.99/9.22 * {@code add(int, E)} or {@code remove(int)} must add no more than 16.99/9.22 * one to this field, or the iterators (and list iterators) will throw 16.99/9.22 * bogus {@code ConcurrentModificationExceptions}. If an implementation 16.99/9.22 * does not wish to provide fail-fast iterators, this field may be 16.99/9.22 * ignored. 16.99/9.22 */ 16.99/9.22 protected transient int modCount = 0; 16.99/9.22 16.99/9.22 private void rangeCheckForAdd(int index) { 16.99/9.22 if (index < 0 || index > size()) 16.99/9.22 throw new IndexOutOfBoundsException(outOfBoundsMsg(index)); 16.99/9.22 } 16.99/9.22 16.99/9.22 private String outOfBoundsMsg(int index) { 16.99/9.22 return ""; 16.99/9.22 } 16.99/9.22 } 16.99/9.22 16.99/9.22 class SubList extends AbstractList { 16.99/9.22 private final AbstractList l; 16.99/9.22 private final int offset; 16.99/9.22 private int size; 16.99/9.22 16.99/9.22 SubList(AbstractList list, int fromIndex, int toIndex) { 16.99/9.22 if (fromIndex < 0) 16.99/9.22 throw new IndexOutOfBoundsException(); 16.99/9.22 if (toIndex > list.size()) 16.99/9.22 throw new IndexOutOfBoundsException(); 16.99/9.22 if (fromIndex > toIndex) 16.99/9.22 throw new IllegalArgumentException(); 16.99/9.22 l = list; 16.99/9.22 offset = fromIndex; 16.99/9.22 size = toIndex - fromIndex; 16.99/9.22 this.modCount = l.modCount; 16.99/9.22 } 16.99/9.22 16.99/9.22 public E set(int index, E element) { 16.99/9.22 rangeCheck(index); 16.99/9.22 checkForComodification(); 16.99/9.22 return l.set(index+offset, element); 16.99/9.22 } 16.99/9.22 16.99/9.22 public E get(int index) { 16.99/9.22 rangeCheck(index); 16.99/9.22 checkForComodification(); 16.99/9.22 return l.get(index+offset); 16.99/9.22 } 16.99/9.22 16.99/9.22 public int size() { 16.99/9.22 checkForComodification(); 16.99/9.22 return size; 16.99/9.22 } 16.99/9.22 16.99/9.22 public void add(int index, E element) { 16.99/9.22 rangeCheckForAdd(index); 16.99/9.22 checkForComodification(); 16.99/9.22 l.add(index+offset, element); 16.99/9.22 this.modCount = l.modCount; 16.99/9.22 size++; 16.99/9.22 } 16.99/9.22 16.99/9.22 public E remove(int index) { 16.99/9.22 rangeCheck(index); 16.99/9.22 checkForComodification(); 16.99/9.22 E result = l.remove(index+offset); 16.99/9.22 this.modCount = l.modCount; 16.99/9.22 size--; 16.99/9.22 return result; 16.99/9.22 } 16.99/9.22 16.99/9.22 protected void removeRange(int fromIndex, int toIndex) { 16.99/9.22 checkForComodification(); 16.99/9.22 l.removeRange(fromIndex+offset, toIndex+offset); 16.99/9.22 this.modCount = l.modCount; 16.99/9.22 size -= (toIndex-fromIndex); 16.99/9.22 } 16.99/9.22 16.99/9.22 public boolean addAll(Collection c) { 16.99/9.22 return addAll(size, c); 16.99/9.22 } 16.99/9.22 16.99/9.22 public boolean addAll(int index, Collection c) { 16.99/9.22 rangeCheckForAdd(index); 16.99/9.22 int cSize = c.size(); 16.99/9.22 if (cSize==0) 16.99/9.22 return false; 16.99/9.22 16.99/9.22 checkForComodification(); 16.99/9.22 l.addAll(offset+index, c); 16.99/9.22 this.modCount = l.modCount; 16.99/9.22 size += cSize; 16.99/9.22 return true; 16.99/9.22 } 16.99/9.22 16.99/9.22 public Iterator iterator() { 16.99/9.22 return listIterator(); 16.99/9.22 } 16.99/9.22 16.99/9.22 public ListIterator listIterator(final int index) { 16.99/9.22 checkForComodification(); 16.99/9.22 rangeCheckForAdd(index); 16.99/9.22 16.99/9.22 return new ListIterator() { 16.99/9.22 private final ListIterator i = l.listIterator(index+offset); 16.99/9.22 16.99/9.22 public boolean hasNext() { 16.99/9.22 return nextIndex() < size; 16.99/9.22 } 16.99/9.22 16.99/9.22 public E next() { 16.99/9.22 if (hasNext()) 16.99/9.22 return i.next(); 16.99/9.22 else 16.99/9.22 throw new NoSuchElementException(); 16.99/9.22 } 16.99/9.22 16.99/9.22 public boolean hasPrevious() { 16.99/9.22 return previousIndex() >= 0; 16.99/9.22 } 16.99/9.22 16.99/9.22 public E previous() { 16.99/9.22 if (hasPrevious()) 16.99/9.22 return i.previous(); 16.99/9.22 else 16.99/9.22 throw new NoSuchElementException(); 16.99/9.22 } 16.99/9.22 16.99/9.22 public int nextIndex() { 16.99/9.22 return i.nextIndex() - offset; 16.99/9.22 } 16.99/9.22 16.99/9.22 public int previousIndex() { 16.99/9.22 return i.previousIndex() - offset; 16.99/9.22 } 16.99/9.22 16.99/9.22 public void remove() { 16.99/9.22 i.remove(); 16.99/9.22 SubList.this.modCount = l.modCount; 16.99/9.22 size--; 16.99/9.22 } 16.99/9.22 16.99/9.22 public void set(E e) { 16.99/9.22 i.set(e); 16.99/9.22 } 16.99/9.22 16.99/9.22 public void add(E e) { 16.99/9.22 i.add(e); 16.99/9.22 SubList.this.modCount = l.modCount; 16.99/9.22 size++; 16.99/9.22 } 16.99/9.22 }; 16.99/9.22 } 16.99/9.22 16.99/9.22 public List subList(int fromIndex, int toIndex) { 16.99/9.22 return new SubList(this, fromIndex, toIndex); 16.99/9.22 } 16.99/9.22 16.99/9.22 private void rangeCheck(int index) { 16.99/9.22 if (index < 0 || index >= size) 16.99/9.22 throw new IndexOutOfBoundsException(outOfBoundsMsg(index)); 16.99/9.22 } 16.99/9.22 16.99/9.22 private void rangeCheckForAdd(int index) { 16.99/9.22 if (index < 0 || index > size) 16.99/9.22 throw new IndexOutOfBoundsException(outOfBoundsMsg(index)); 16.99/9.22 } 16.99/9.22 16.99/9.22 private String outOfBoundsMsg(int index) { 16.99/9.22 return ""; 16.99/9.22 } 16.99/9.22 16.99/9.22 private void checkForComodification() { 16.99/9.22 if (this.modCount != l.modCount) 16.99/9.22 throw new ConcurrentModificationException(); 16.99/9.22 } 16.99/9.22 } 16.99/9.22 16.99/9.22 class RandomAccessSubList extends SubList implements RandomAccess { 16.99/9.22 RandomAccessSubList(AbstractList list, int fromIndex, int toIndex) { 16.99/9.22 super(list, fromIndex, toIndex); 16.99/9.22 } 16.99/9.22 16.99/9.22 public List subList(int fromIndex, int toIndex) { 16.99/9.22 return new RandomAccessSubList(this, fromIndex, toIndex); 16.99/9.22 } 16.99/9.22 } 16.99/9.22 16.99/9.22 16.99/9.22 /* 16.99/9.22 * Copyright 1997-2006 Sun Microsystems, Inc. All Rights Reserved. 16.99/9.22 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 16.99/9.22 * 16.99/9.22 * This code is free software; you can redistribute it and/or modify it 16.99/9.22 * under the terms of the GNU General Public License version 2 only, as 16.99/9.22 * published by the Free Software Foundation. Sun designates this 16.99/9.22 * particular file as subject to the "Classpath" exception as provided 16.99/9.22 * by Sun in the LICENSE file that accompanied this code. 16.99/9.22 * 16.99/9.22 * This code is distributed in the hope that it will be useful, but WITHOUT 16.99/9.22 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or 16.99/9.22 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License 16.99/9.22 * version 2 for more details (a copy is included in the LICENSE file that 16.99/9.22 * accompanied this code). 16.99/9.22 * 16.99/9.22 * You should have received a copy of the GNU General Public License version 16.99/9.22 * 2 along with this work; if not, write to the Free Software Foundation, 16.99/9.22 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. 16.99/9.22 * 16.99/9.22 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara, 16.99/9.22 * CA 95054 USA or visit www.sun.com if you need additional information or 16.99/9.22 * have any questions. 16.99/9.22 */ 16.99/9.22 16.99/9.22 package javaUtilEx; 16.99/9.22 16.99/9.22 /** 16.99/9.22 * This class provides a skeletal implementation of the List 16.99/9.22 * interface to minimize the effort required to implement this interface 16.99/9.22 * backed by a "sequential access" data store (such as a linked list). For 16.99/9.22 * random access data (such as an array), AbstractList should be used 16.99/9.22 * in preference to this class.

16.99/9.22 * 16.99/9.22 * This class is the opposite of the AbstractList class in the sense 16.99/9.22 * that it implements the "random access" methods (get(int index), 16.99/9.22 * set(int index, E element), add(int index, E element) and 16.99/9.22 * remove(int index)) on top of the list's list iterator, instead of 16.99/9.22 * the other way around.

16.99/9.22 * 16.99/9.22 * To implement a list the programmer needs only to extend this class and 16.99/9.22 * provide implementations for the listIterator and size 16.99/9.22 * methods. For an unmodifiable list, the programmer need only implement the 16.99/9.22 * list iterator's hasNext, next, hasPrevious, 16.99/9.22 * previous and index methods.

16.99/9.22 * 16.99/9.22 * For a modifiable list the programmer should additionally implement the list 16.99/9.22 * iterator's set method. For a variable-size list the programmer 16.99/9.22 * should additionally implement the list iterator's remove and 16.99/9.22 * add methods.

16.99/9.22 * 16.99/9.22 * The programmer should generally provide a void (no argument) and collection 16.99/9.22 * constructor, as per the recommendation in the Collection interface 16.99/9.22 * specification.

16.99/9.22 * 16.99/9.22 * This class is a member of the 16.99/9.22 * 16.99/9.22 * Java Collections Framework. 16.99/9.22 * 16.99/9.22 * @author Josh Bloch 16.99/9.22 * @author Neal Gafter 16.99/9.22 * @see Collection 16.99/9.22 * @see List 16.99/9.22 * @see AbstractList 16.99/9.22 * @see AbstractCollection 16.99/9.22 * @since 1.2 16.99/9.22 */ 16.99/9.22 16.99/9.22 public abstract class AbstractSequentialList extends AbstractList { 16.99/9.22 /** 16.99/9.22 * Sole constructor. (For invocation by subclass constructors, typically 16.99/9.22 * implicit.) 16.99/9.22 */ 16.99/9.22 protected AbstractSequentialList() { 16.99/9.22 } 16.99/9.22 16.99/9.22 /** 16.99/9.22 * Returns the element at the specified position in this list. 16.99/9.22 * 16.99/9.22 *

This implementation first gets a list iterator pointing to the 16.99/9.22 * indexed element (with listIterator(index)). Then, it gets 16.99/9.22 * the element using ListIterator.next and returns it. 16.99/9.22 * 16.99/9.22 * @throws IndexOutOfBoundsException {@inheritDoc} 16.99/9.22 */ 16.99/9.22 public E get(int index) { 16.99/9.22 try { 16.99/9.22 return listIterator(index).next(); 16.99/9.22 } catch (NoSuchElementException exc) { 16.99/9.22 throw new IndexOutOfBoundsException(); 16.99/9.22 } 16.99/9.22 } 16.99/9.22 16.99/9.22 /** 16.99/9.22 * Replaces the element at the specified position in this list with the 16.99/9.22 * specified element (optional operation). 16.99/9.22 * 16.99/9.22 *

This implementation first gets a list iterator pointing to the 16.99/9.22 * indexed element (with listIterator(index)). Then, it gets 16.99/9.22 * the current element using ListIterator.next and replaces it 16.99/9.22 * with ListIterator.set. 16.99/9.22 * 16.99/9.22 *

Note that this implementation will throw an 16.99/9.22 * UnsupportedOperationException if the list iterator does not 16.99/9.22 * implement the set operation. 16.99/9.22 * 16.99/9.22 * @throws UnsupportedOperationException {@inheritDoc} 16.99/9.22 * @throws ClassCastException {@inheritDoc} 16.99/9.22 * @throws NullPointerException {@inheritDoc} 16.99/9.22 * @throws IllegalArgumentException {@inheritDoc} 16.99/9.22 * @throws IndexOutOfBoundsException {@inheritDoc} 16.99/9.22 */ 16.99/9.22 public E set(int index, E element) { 16.99/9.22 try { 16.99/9.22 ListIterator e = listIterator(index); 16.99/9.22 E oldVal = e.next(); 16.99/9.22 e.set(element); 16.99/9.22 return oldVal; 16.99/9.22 } catch (NoSuchElementException exc) { 16.99/9.22 throw new IndexOutOfBoundsException(); 16.99/9.22 } 16.99/9.22 } 16.99/9.22 16.99/9.22 /** 16.99/9.22 * Inserts the specified element at the specified position in this list 16.99/9.22 * (optional operation). Shifts the element currently at that position 16.99/9.22 * (if any) and any subsequent elements to the right (adds one to their 16.99/9.22 * indices). 16.99/9.22 * 16.99/9.22 *

This implementation first gets a list iterator pointing to the 16.99/9.22 * indexed element (with listIterator(index)). Then, it 16.99/9.22 * inserts the specified element with ListIterator.add. 16.99/9.22 * 16.99/9.22 *

Note that this implementation will throw an 16.99/9.22 * UnsupportedOperationException if the list iterator does not 16.99/9.22 * implement the add operation. 16.99/9.22 * 16.99/9.22 * @throws UnsupportedOperationException {@inheritDoc} 16.99/9.22 * @throws ClassCastException {@inheritDoc} 16.99/9.22 * @throws NullPointerException {@inheritDoc} 16.99/9.22 * @throws IllegalArgumentException {@inheritDoc} 16.99/9.22 * @throws IndexOutOfBoundsException {@inheritDoc} 16.99/9.22 */ 16.99/9.22 public void add(int index, E element) { 16.99/9.22 try { 16.99/9.22 listIterator(index).add(element); 16.99/9.22 } catch (NoSuchElementException exc) { 16.99/9.22 throw new IndexOutOfBoundsException(); 16.99/9.22 } 16.99/9.22 } 16.99/9.22 16.99/9.22 /** 16.99/9.22 * Removes the element at the specified position in this list (optional 16.99/9.22 * operation). Shifts any subsequent elements to the left (subtracts one 16.99/9.22 * from their indices). Returns the element that was removed from the 16.99/9.22 * list. 16.99/9.22 * 16.99/9.22 *

This implementation first gets a list iterator pointing to the 16.99/9.22 * indexed element (with listIterator(index)). Then, it removes 16.99/9.22 * the element with ListIterator.remove. 16.99/9.22 * 16.99/9.22 *

Note that this implementation will throw an 16.99/9.22 * UnsupportedOperationException if the list iterator does not 16.99/9.22 * implement the remove operation. 16.99/9.22 * 16.99/9.22 * @throws UnsupportedOperationException {@inheritDoc} 16.99/9.22 * @throws IndexOutOfBoundsException {@inheritDoc} 16.99/9.22 */ 16.99/9.22 public E remove(int index) { 16.99/9.22 try { 16.99/9.22 ListIterator e = listIterator(index); 16.99/9.22 E outCast = e.next(); 16.99/9.22 e.remove(); 16.99/9.22 return outCast; 16.99/9.22 } catch (NoSuchElementException exc) { 16.99/9.22 throw new IndexOutOfBoundsException(); 16.99/9.22 } 16.99/9.22 } 16.99/9.22 16.99/9.22 16.99/9.22 // Bulk Operations 16.99/9.22 16.99/9.22 /** 16.99/9.22 * Inserts all of the elements in the specified collection into this 16.99/9.22 * list at the specified position (optional operation). Shifts the 16.99/9.22 * element currently at that position (if any) and any subsequent 16.99/9.22 * elements to the right (increases their indices). The new elements 16.99/9.22 * will appear in this list in the order that they are returned by the 16.99/9.22 * specified collection's iterator. The behavior of this operation is 16.99/9.22 * undefined if the specified collection is modified while the 16.99/9.22 * operation is in progress. (Note that this will occur if the specified 16.99/9.22 * collection is this list, and it's nonempty.) 16.99/9.22 * 16.99/9.22 *

This implementation gets an iterator over the specified collection and 16.99/9.22 * a list iterator over this list pointing to the indexed element (with 16.99/9.22 * listIterator(index)). Then, it iterates over the specified 16.99/9.22 * collection, inserting the elements obtained from the iterator into this 16.99/9.22 * list, one at a time, using ListIterator.add followed by 16.99/9.22 * ListIterator.next (to skip over the added element). 16.99/9.22 * 16.99/9.22 *

Note that this implementation will throw an 16.99/9.22 * UnsupportedOperationException if the list iterator returned by 16.99/9.22 * the listIterator method does not implement the add 16.99/9.22 * operation. 16.99/9.22 * 16.99/9.22 * @throws UnsupportedOperationException {@inheritDoc} 16.99/9.22 * @throws ClassCastException {@inheritDoc} 16.99/9.22 * @throws NullPointerException {@inheritDoc} 16.99/9.22 * @throws IllegalArgumentException {@inheritDoc} 16.99/9.22 * @throws IndexOutOfBoundsException {@inheritDoc} 16.99/9.22 */ 16.99/9.22 public boolean addAll(int index, Collection c) { 16.99/9.22 try { 16.99/9.22 boolean modified = false; 16.99/9.22 ListIterator e1 = listIterator(index); 16.99/9.22 Iterator e2 = c.iterator(); 16.99/9.22 while (e2.hasNext()) { 16.99/9.22 e1.add(e2.next()); 16.99/9.22 modified = true; 16.99/9.22 } 16.99/9.22 return modified; 16.99/9.22 } catch (NoSuchElementException exc) { 16.99/9.22 throw new IndexOutOfBoundsException(); 16.99/9.22 } 16.99/9.22 } 16.99/9.22 16.99/9.22 16.99/9.22 // Iterators 16.99/9.22 16.99/9.22 /** 16.99/9.22 * Returns an iterator over the elements in this list (in proper 16.99/9.22 * sequence).

16.99/9.22 * 16.99/9.22 * This implementation merely returns a list iterator over the list. 16.99/9.22 * 16.99/9.22 * @return an iterator over the elements in this list (in proper sequence) 16.99/9.22 */ 16.99/9.22 public Iterator iterator() { 16.99/9.22 return listIterator(); 16.99/9.22 } 16.99/9.22 16.99/9.22 /** 16.99/9.22 * Returns a list iterator over the elements in this list (in proper 16.99/9.22 * sequence). 16.99/9.22 * 16.99/9.22 * @param index index of first element to be returned from the list 16.99/9.22 * iterator (by a call to the next method) 16.99/9.22 * @return a list iterator over the elements in this list (in proper 16.99/9.22 * sequence) 16.99/9.22 * @throws IndexOutOfBoundsException {@inheritDoc} 16.99/9.22 */ 16.99/9.22 public abstract ListIterator listIterator(int index); 16.99/9.22 } 16.99/9.22 16.99/9.22 16.99/9.22 /* 16.99/9.22 * Copyright 1997-2006 Sun Microsystems, Inc. All Rights Reserved. 16.99/9.22 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 16.99/9.22 * 16.99/9.22 * This code is free software; you can redistribute it and/or modify it 16.99/9.22 * under the terms of the GNU General Public License version 2 only, as 16.99/9.22 * published by the Free Software Foundation. Sun designates this 16.99/9.22 * particular file as subject to the "Classpath" exception as provided 16.99/9.22 * by Sun in the LICENSE file that accompanied this code. 16.99/9.22 * 16.99/9.22 * This code is distributed in the hope that it will be useful, but WITHOUT 16.99/9.22 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or 16.99/9.22 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License 16.99/9.22 * version 2 for more details (a copy is included in the LICENSE file that 16.99/9.22 * accompanied this code). 16.99/9.22 * 16.99/9.22 * You should have received a copy of the GNU General Public License version 16.99/9.22 * 2 along with this work; if not, write to the Free Software Foundation, 16.99/9.22 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. 16.99/9.22 * 16.99/9.22 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara, 16.99/9.22 * CA 95054 USA or visit www.sun.com if you need additional information or 16.99/9.22 * have any questions. 16.99/9.22 */ 16.99/9.22 16.99/9.22 package javaUtilEx; 16.99/9.22 16.99/9.22 /** 16.99/9.22 * The root interface in the collection hierarchy. A collection 16.99/9.22 * represents a group of objects, known as its elements. Some 16.99/9.22 * collections allow duplicate elements and others do not. Some are ordered 16.99/9.22 * and others unordered. The JDK does not provide any direct 16.99/9.22 * implementations of this interface: it provides implementations of more 16.99/9.22 * specific subinterfaces like Set and List. This interface 16.99/9.22 * is typically used to pass collections around and manipulate them where 16.99/9.22 * maximum generality is desired. 16.99/9.22 * 16.99/9.22 *

Bags or multisets (unordered collections that may contain 16.99/9.22 * duplicate elements) should implement this interface directly. 16.99/9.22 * 16.99/9.22 *

All general-purpose Collection implementation classes (which 16.99/9.22 * typically implement Collection indirectly through one of its 16.99/9.22 * subinterfaces) should provide two "standard" constructors: a void (no 16.99/9.22 * arguments) constructor, which creates an empty collection, and a 16.99/9.22 * constructor with a single argument of type Collection, which 16.99/9.22 * creates a new collection with the same elements as its argument. In 16.99/9.22 * effect, the latter constructor allows the user to copy any collection, 16.99/9.22 * producing an equivalent collection of the desired implementation type. 16.99/9.22 * There is no way to enforce this convention (as interfaces cannot contain 16.99/9.22 * constructors) but all of the general-purpose Collection 16.99/9.22 * implementations in the Java platform libraries comply. 16.99/9.22 * 16.99/9.22 *

The "destructive" methods contained in this interface, that is, the 16.99/9.22 * methods that modify the collection on which they operate, are specified to 16.99/9.22 * throw UnsupportedOperationException if this collection does not 16.99/9.22 * support the operation. If this is the case, these methods may, but are not 16.99/9.22 * required to, throw an UnsupportedOperationException if the 16.99/9.22 * invocation would have no effect on the collection. For example, invoking 16.99/9.22 * the {@link #addAll(Collection)} method on an unmodifiable collection may, 16.99/9.22 * but is not required to, throw the exception if the collection to be added 16.99/9.22 * is empty. 16.99/9.22 * 16.99/9.22 *

Some collection implementations have restrictions on the elements that 16.99/9.22 * they may contain. For example, some implementations prohibit null elements, 16.99/9.22 * and some have restrictions on the types of their elements. Attempting to 16.99/9.22 * add an ineligible element throws an unchecked exception, typically 16.99/9.22 * NullPointerException or ClassCastException. Attempting 16.99/9.22 * to query the presence of an ineligible element may throw an exception, 16.99/9.22 * or it may simply return false; some implementations will exhibit the former 16.99/9.22 * behavior and some will exhibit the latter. More generally, attempting an 16.99/9.22 * operation on an ineligible element whose completion would not result in 16.99/9.22 * the insertion of an ineligible element into the collection may throw an 16.99/9.22 * exception or it may succeed, at the option of the implementation. 16.99/9.22 * Such exceptions are marked as "optional" in the specification for this 16.99/9.22 * interface. 16.99/9.22 * 16.99/9.22 *

It is up to each collection to determine its own synchronization 16.99/9.22 * policy. In the absence of a stronger guarantee by the 16.99/9.22 * implementation, undefined behavior may result from the invocation 16.99/9.22 * of any method on a collection that is being mutated by another 16.99/9.22 * thread; this includes direct invocations, passing the collection to 16.99/9.22 * a method that might perform invocations, and using an existing 16.99/9.22 * iterator to examine the collection. 16.99/9.22 * 16.99/9.22 *

Many methods in Collections Framework interfaces are defined in 16.99/9.22 * terms of the {@link Object#equals(Object) equals} method. For example, 16.99/9.22 * the specification for the {@link #contains(Object) contains(Object o)} 16.99/9.22 * method says: "returns true if and only if this collection 16.99/9.22 * contains at least one element e such that 16.99/9.22 * (o==null ? e==null : o.equals(e))." This specification should 16.99/9.22 * not be construed to imply that invoking Collection.contains 16.99/9.22 * with a non-null argument o will cause o.equals(e) to be 16.99/9.22 * invoked for any element e. Implementations are free to implement 16.99/9.22 * optimizations whereby the equals invocation is avoided, for 16.99/9.22 * example, by first comparing the hash codes of the two elements. (The 16.99/9.22 * {@link Object#hashCode()} specification guarantees that two objects with 16.99/9.22 * unequal hash codes cannot be equal.) More generally, implementations of 16.99/9.22 * the various Collections Framework interfaces are free to take advantage of 16.99/9.22 * the specified behavior of underlying {@link Object} methods wherever the 16.99/9.22 * implementor deems it appropriate. 16.99/9.22 * 16.99/9.22 *

This interface is a member of the 16.99/9.22 * 16.99/9.22 * Java Collections Framework. 16.99/9.22 * 16.99/9.22 * @author Josh Bloch 16.99/9.22 * @author Neal Gafter 16.99/9.22 * @see Set 16.99/9.22 * @see List 16.99/9.22 * @see Map 16.99/9.22 * @see SortedSet 16.99/9.22 * @see SortedMap 16.99/9.22 * @see HashSet 16.99/9.22 * @see TreeSet 16.99/9.22 * @see ArrayList 16.99/9.22 * @see LinkedList 16.99/9.22 * @see Vector 16.99/9.22 * @see Collections 16.99/9.22 * @see Arrays 16.99/9.22 * @see AbstractCollection 16.99/9.22 * @since 1.2 16.99/9.22 */ 16.99/9.22 16.99/9.22 public interface Collection { 16.99/9.22 // Query Operations 16.99/9.22 16.99/9.22 /** 16.99/9.22 * Returns the number of elements in this collection. If this collection 16.99/9.22 * contains more than Integer.MAX_VALUE elements, returns 16.99/9.22 * Integer.MAX_VALUE. 16.99/9.22 * 16.99/9.22 * @return the number of elements in this collection 16.99/9.22 */ 16.99/9.22 int size(); 16.99/9.22 16.99/9.22 /** 16.99/9.22 * Returns true if this collection contains no elements. 16.99/9.22 * 16.99/9.22 * @return true if this collection contains no elements 16.99/9.22 */ 16.99/9.22 boolean isEmpty(); 16.99/9.22 16.99/9.22 /** 16.99/9.22 * Returns true if this collection contains the specified element. 16.99/9.22 * More formally, returns true if and only if this collection 16.99/9.22 * contains at least one element e such that 16.99/9.22 * (o==null ? e==null : o.equals(e)). 16.99/9.22 * 16.99/9.22 * @param o element whose presence in this collection is to be tested 16.99/9.22 * @return true if this collection contains the specified 16.99/9.22 * element 16.99/9.22 * @throws ClassCastException if the type of the specified element 16.99/9.22 * is incompatible with this collection (optional) 16.99/9.22 * @throws NullPointerException if the specified element is null and this 16.99/9.22 * collection does not permit null elements (optional) 16.99/9.22 */ 16.99/9.22 boolean contains(Object o); 16.99/9.22 16.99/9.22 /** 16.99/9.22 * Returns an iterator over the elements in this collection. There are no 16.99/9.22 * guarantees concerning the order in which the elements are returned 16.99/9.22 * (unless this collection is an instance of some class that provides a 16.99/9.22 * guarantee). 16.99/9.22 * 16.99/9.22 * @return an Iterator over the elements in this collection 16.99/9.22 */ 16.99/9.22 Iterator iterator(); 16.99/9.22 16.99/9.22 // Modification Operations 16.99/9.22 16.99/9.22 /** 16.99/9.22 * Ensures that this collection contains the specified element (optional 16.99/9.22 * operation). Returns true if this collection changed as a 16.99/9.22 * result of the call. (Returns false if this collection does 16.99/9.22 * not permit duplicates and already contains the specified element.)

16.99/9.22 * 16.99/9.22 * Collections that support this operation may place limitations on what 16.99/9.22 * elements may be added to this collection. In particular, some 16.99/9.22 * collections will refuse to add null elements, and others will 16.99/9.22 * impose restrictions on the type of elements that may be added. 16.99/9.22 * Collection classes should clearly specify in their documentation any 16.99/9.22 * restrictions on what elements may be added.

16.99/9.22 * 16.99/9.22 * If a collection refuses to add a particular element for any reason 16.99/9.22 * other than that it already contains the element, it must throw 16.99/9.22 * an exception (rather than returning false). This preserves 16.99/9.22 * the invariant that a collection always contains the specified element 16.99/9.22 * after this call returns. 16.99/9.22 * 16.99/9.22 * @param e element whose presence in this collection is to be ensured 16.99/9.22 * @return true if this collection changed as a result of the 16.99/9.22 * call 16.99/9.22 * @throws UnsupportedOperationException if the add operation 16.99/9.22 * is not supported by this collection 16.99/9.22 * @throws ClassCastException if the class of the specified element 16.99/9.22 * prevents it from being added to this collection 16.99/9.22 * @throws NullPointerException if the specified element is null and this 16.99/9.22 * collection does not permit null elements 16.99/9.22 * @throws IllegalArgumentException if some property of the element 16.99/9.22 * prevents it from being added to this collection 16.99/9.22 * @throws IllegalStateException if the element cannot be added at this 16.99/9.22 * time due to insertion restrictions 16.99/9.22 */ 16.99/9.22 boolean add(E e); 16.99/9.22 16.99/9.22 /** 16.99/9.22 * Removes a single instance of the specified element from this 16.99/9.22 * collection, if it is present (optional operation). More formally, 16.99/9.22 * removes an element e such that 16.99/9.22 * (o==null ? e==null : o.equals(e)), if 16.99/9.22 * this collection contains one or more such elements. Returns 16.99/9.22 * true if this collection contained the specified element (or 16.99/9.22 * equivalently, if this collection changed as a result of the call). 16.99/9.22 * 16.99/9.22 * @param o element to be removed from this collection, if present 16.99/9.22 * @return true if an element was removed as a result of this call 16.99/9.22 * @throws ClassCastException if the type of the specified element 16.99/9.22 * is incompatible with this collection (optional) 16.99/9.22 * @throws NullPointerException if the specified element is null and this 16.99/9.22 * collection does not permit null elements (optional) 16.99/9.22 * @throws UnsupportedOperationException if the remove operation 16.99/9.22 * is not supported by this collection 16.99/9.22 */ 16.99/9.22 boolean remove(Object o); 16.99/9.22 16.99/9.22 16.99/9.22 // Bulk Operations 16.99/9.22 16.99/9.22 /** 16.99/9.22 * Returns true if this collection contains all of the elements 16.99/9.22 * in the specified collection. 16.99/9.22 * 16.99/9.22 * @param c collection to be checked for containment in this collection 16.99/9.22 * @return true if this collection contains all of the elements 16.99/9.22 * in the specified collection 16.99/9.22 * @throws ClassCastException if the types of one or more elements 16.99/9.22 * in the specified collection are incompatible with this 16.99/9.22 * collection (optional) 16.99/9.22 * @throws NullPointerException if the specified collection contains one 16.99/9.22 * or more null elements and this collection does not permit null 16.99/9.22 * elements (optional), or if the specified collection is null 16.99/9.22 * @see #contains(Object) 16.99/9.22 */ 16.99/9.22 boolean containsAll(Collection c); 16.99/9.22 16.99/9.22 /** 16.99/9.22 * Adds all of the elements in the specified collection to this collection 16.99/9.22 * (optional operation). The behavior of this operation is undefined if 16.99/9.22 * the specified collection is modified while the operation is in progress. 16.99/9.22 * (This implies that the behavior of this call is undefined if the 16.99/9.22 * specified collection is this collection, and this collection is 16.99/9.22 * nonempty.) 16.99/9.22 * 16.99/9.22 * @param c collection containing elements to be added to this collection 16.99/9.22 * @return true if this collection changed as a result of the call 16.99/9.22 * @throws UnsupportedOperationException if the addAll operation 16.99/9.22 * is not supported by this collection 16.99/9.22 * @throws ClassCastException if the class of an element of the specified 16.99/9.22 * collection prevents it from being added to this collection 16.99/9.22 * @throws NullPointerException if the specified collection contains a 16.99/9.22 * null element and this collection does not permit null elements, 16.99/9.22 * or if the specified collection is null 16.99/9.22 * @throws IllegalArgumentException if some property of an element of the 16.99/9.22 * specified collection prevents it from being added to this 16.99/9.22 * collection 16.99/9.22 * @throws IllegalStateException if not all the elements can be added at 16.99/9.22 * this time due to insertion restrictions 16.99/9.22 * @see #add(Object) 16.99/9.22 */ 16.99/9.22 boolean addAll(Collection c); 16.99/9.22 16.99/9.22 /** 16.99/9.22 * Removes all of this collection's elements that are also contained in the 16.99/9.22 * specified collection (optional operation). After this call returns, 16.99/9.22 * this collection will contain no elements in common with the specified 16.99/9.22 * collection. 16.99/9.22 * 16.99/9.22 * @param c collection containing elements to be removed from this collection 16.99/9.22 * @return true if this collection changed as a result of the 16.99/9.22 * call 16.99/9.22 * @throws UnsupportedOperationException if the removeAll method 16.99/9.22 * is not supported by this collection 16.99/9.22 * @throws ClassCastException if the types of one or more elements 16.99/9.22 * in this collection are incompatible with the specified 16.99/9.22 * collection (optional) 16.99/9.22 * @throws NullPointerException if this collection contains one or more 16.99/9.22 * null elements and the specified collection does not support 16.99/9.22 * null elements (optional), or if the specified collection is null 16.99/9.22 * @see #remove(Object) 16.99/9.22 * @see #contains(Object) 16.99/9.22 */ 16.99/9.22 boolean removeAll(Collection c); 16.99/9.22 16.99/9.22 /** 16.99/9.22 * Retains only the elements in this collection that are contained in the 16.99/9.22 * specified collection (optional operation). In other words, removes from 16.99/9.22 * this collection all of its elements that are not contained in the 16.99/9.22 * specified collection. 16.99/9.22 * 16.99/9.22 * @param c collection containing elements to be retained in this collection 16.99/9.22 * @return true if this collection changed as a result of the call 16.99/9.22 * @throws UnsupportedOperationException if the retainAll operation 16.99/9.22 * is not supported by this collection 16.99/9.22 * @throws ClassCastException if the types of one or more elements 16.99/9.22 * in this collection are incompatible with the specified 16.99/9.22 * collection (optional) 16.99/9.22 * @throws NullPointerException if this collection contains one or more 16.99/9.22 * null elements and the specified collection does not permit null 16.99/9.22 * elements (optional), or if the specified collection is null 16.99/9.22 * @see #remove(Object) 16.99/9.22 * @see #contains(Object) 16.99/9.22 */ 16.99/9.22 boolean retainAll(Collection c); 16.99/9.22 16.99/9.22 /** 16.99/9.22 * Removes all of the elements from this collection (optional operation). 16.99/9.22 * The collection will be empty after this method returns. 16.99/9.22 * 16.99/9.22 * @throws UnsupportedOperationException if the clear operation 16.99/9.22 * is not supported by this collection 16.99/9.22 */ 16.99/9.22 void clear(); 16.99/9.22 16.99/9.22 16.99/9.22 // Comparison and hashing 16.99/9.22 16.99/9.22 /** 16.99/9.22 * Compares the specified object with this collection for equality.

16.99/9.22 * 16.99/9.22 * While the Collection interface adds no stipulations to the 16.99/9.22 * general contract for the Object.equals, programmers who 16.99/9.22 * implement the Collection interface "directly" (in other words, 16.99/9.22 * create a class that is a Collection but is not a Set 16.99/9.22 * or a List) must exercise care if they choose to override the 16.99/9.22 * Object.equals. It is not necessary to do so, and the simplest 16.99/9.22 * course of action is to rely on Object's implementation, but 16.99/9.22 * the implementor may wish to implement a "value comparison" in place of 16.99/9.22 * the default "reference comparison." (The List and 16.99/9.22 * Set interfaces mandate such value comparisons.)

16.99/9.22 * 16.99/9.22 * The general contract for the Object.equals method states that 16.99/9.22 * equals must be symmetric (in other words, a.equals(b) if and 16.99/9.22 * only if b.equals(a)). The contracts for List.equals 16.99/9.22 * and Set.equals state that lists are only equal to other lists, 16.99/9.22 * and sets to other sets. Thus, a custom equals method for a 16.99/9.22 * collection class that implements neither the List nor 16.99/9.22 * Set interface must return false when this collection 16.99/9.22 * is compared to any list or set. (By the same logic, it is not possible 16.99/9.22 * to write a class that correctly implements both the Set and 16.99/9.22 * List interfaces.) 16.99/9.22 * 16.99/9.22 * @param o object to be compared for equality with this collection 16.99/9.22 * @return true if the specified object is equal to this 16.99/9.22 * collection 16.99/9.22 * 16.99/9.22 * @see Object#equals(Object) 16.99/9.22 * @see Set#equals(Object) 16.99/9.22 * @see List#equals(Object) 16.99/9.22 */ 16.99/9.22 boolean equals(Object o); 16.99/9.22 16.99/9.22 /** 16.99/9.22 * Returns the hash code value for this collection. While the 16.99/9.22 * Collection interface adds no stipulations to the general 16.99/9.22 * contract for the Object.hashCode method, programmers should 16.99/9.22 * take note that any class that overrides the Object.equals 16.99/9.22 * method must also override the Object.hashCode method in order 16.99/9.22 * to satisfy the general contract for the Object.hashCodemethod. 16.99/9.22 * In particular, c1.equals(c2) implies that 16.99/9.22 * c1.hashCode()==c2.hashCode(). 16.99/9.22 * 16.99/9.22 * @return the hash code value for this collection 16.99/9.22 * 16.99/9.22 * @see Object#hashCode() 16.99/9.22 * @see Object#equals(Object) 16.99/9.22 */ 16.99/9.22 int hashCode(); 16.99/9.22 } 16.99/9.22 16.99/9.22 16.99/9.22 /* 16.99/9.22 * Copyright 1997-2006 Sun Microsystems, Inc. All Rights Reserved. 16.99/9.22 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 16.99/9.22 * 16.99/9.22 * This code is free software; you can redistribute it and/or modify it 16.99/9.22 * under the terms of the GNU General Public License version 2 only, as 16.99/9.22 * published by the Free Software Foundation. Sun designates this 16.99/9.22 * particular file as subject to the "Classpath" exception as provided 16.99/9.22 * by Sun in the LICENSE file that accompanied this code. 16.99/9.22 * 16.99/9.22 * This code is distributed in the hope that it will be useful, but WITHOUT 16.99/9.22 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or 16.99/9.22 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License 16.99/9.22 * version 2 for more details (a copy is included in the LICENSE file that 16.99/9.22 * accompanied this code). 16.99/9.22 * 16.99/9.22 * You should have received a copy of the GNU General Public License version 16.99/9.22 * 2 along with this work; if not, write to the Free Software Foundation, 16.99/9.22 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. 16.99/9.22 * 16.99/9.22 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara, 16.99/9.22 * CA 95054 USA or visit www.sun.com if you need additional information or 16.99/9.22 * have any questions. 16.99/9.22 */ 16.99/9.22 16.99/9.22 package javaUtilEx; 16.99/9.22 16.99/9.22 /** 16.99/9.22 * This exception may be thrown by methods that have detected concurrent 16.99/9.22 * modification of an object when such modification is not permissible. 16.99/9.22 *

16.99/9.22 * For example, it is not generally permissible for one thread to modify a Collection 16.99/9.22 * while another thread is iterating over it. In general, the results of the 16.99/9.22 * iteration are undefined under these circumstances. Some Iterator 16.99/9.22 * implementations (including those of all the general purpose collection implementations 16.99/9.22 * provided by the JRE) may choose to throw this exception if this behavior is 16.99/9.22 * detected. Iterators that do this are known as fail-fast iterators, 16.99/9.22 * as they fail quickly and cleanly, rather that risking arbitrary, 16.99/9.22 * non-deterministic behavior at an undetermined time in the future. 16.99/9.22 *

16.99/9.22 * Note that this exception does not always indicate that an object has 16.99/9.22 * been concurrently modified by a different thread. If a single 16.99/9.22 * thread issues a sequence of method invocations that violates the 16.99/9.22 * contract of an object, the object may throw this exception. For 16.99/9.22 * example, if a thread modifies a collection directly while it is 16.99/9.22 * iterating over the collection with a fail-fast iterator, the iterator 16.99/9.22 * will throw this exception. 16.99/9.22 * 16.99/9.22 *

Note that fail-fast behavior cannot be guaranteed as it is, generally 16.99/9.22 * speaking, impossible to make any hard guarantees in the presence of 16.99/9.22 * unsynchronized concurrent modification. Fail-fast operations 16.99/9.22 * throw ConcurrentModificationException on a best-effort basis. 16.99/9.22 * Therefore, it would be wrong to write a program that depended on this 16.99/9.22 * exception for its correctness: ConcurrentModificationException 16.99/9.22 * should be used only to detect bugs. 16.99/9.22 * 16.99/9.22 * @author Josh Bloch 16.99/9.22 * @see Collection 16.99/9.22 * @see Iterator 16.99/9.22 * @see ListIterator 16.99/9.22 * @see Vector 16.99/9.22 * @see LinkedList 16.99/9.22 * @see HashSet 16.99/9.22 * @see Hashtable 16.99/9.22 * @see TreeMap 16.99/9.22 * @see AbstractList 16.99/9.22 * @since 1.2 16.99/9.22 */ 16.99/9.22 public class ConcurrentModificationException extends RuntimeException { 16.99/9.22 /** 16.99/9.22 * Constructs a ConcurrentModificationException with no 16.99/9.22 * detail message. 16.99/9.22 */ 16.99/9.22 public ConcurrentModificationException() { 16.99/9.22 } 16.99/9.22 16.99/9.22 /** 16.99/9.22 * Constructs a ConcurrentModificationException with the 16.99/9.22 * specified detail message. 16.99/9.22 * 16.99/9.22 * @param message the detail message pertaining to this exception. 16.99/9.22 */ 16.99/9.22 public ConcurrentModificationException(String message) { 16.99/9.22 super(message); 16.99/9.22 } 16.99/9.22 } 16.99/9.22 16.99/9.22 16.99/9.22 /* 16.99/9.22 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 16.99/9.22 * 16.99/9.22 * This code is free software; you can redistribute it and/or modify it 16.99/9.22 * under the terms of the GNU General Public License version 2 only, as 16.99/9.22 * published by the Free Software Foundation. Sun designates this 16.99/9.22 * particular file as subject to the "Classpath" exception as provided 16.99/9.22 * by Sun in the LICENSE file that accompanied this code. 16.99/9.22 * 16.99/9.22 * This code is distributed in the hope that it will be useful, but WITHOUT 16.99/9.22 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or 16.99/9.22 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License 16.99/9.22 * version 2 for more details (a copy is included in the LICENSE file that 16.99/9.22 * accompanied this code). 16.99/9.22 * 16.99/9.22 * You should have received a copy of the GNU General Public License version 16.99/9.22 * 2 along with this work; if not, write to the Free Software Foundation, 16.99/9.22 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. 16.99/9.22 * 16.99/9.22 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara, 16.99/9.22 * CA 95054 USA or visit www.sun.com if you need additional information or 16.99/9.22 * have any questions. 16.99/9.22 */ 16.99/9.22 16.99/9.22 /* 16.99/9.22 * This file is available under and governed by the GNU General Public 16.99/9.22 * License version 2 only, as published by the Free Software Foundation. 16.99/9.22 * However, the following notice accompanied the original version of this 16.99/9.22 * file: 16.99/9.22 * 16.99/9.22 * Written by Doug Lea and Josh Bloch with assistance from members of 16.99/9.22 * JCP JSR-166 Expert Group and released to the public domain, as explained 16.99/9.22 * at http://creativecommons.org/licenses/publicdomain 16.99/9.22 */ 16.99/9.22 16.99/9.22 package javaUtilEx; 16.99/9.22 16.99/9.22 /** 16.99/9.22 * A linear collection that supports element insertion and removal at 16.99/9.22 * both ends. The name deque is short for "double ended queue" 16.99/9.22 * and is usually pronounced "deck". Most Deque 16.99/9.22 * implementations place no fixed limits on the number of elements 16.99/9.22 * they may contain, but this interface supports capacity-restricted 16.99/9.22 * deques as well as those with no fixed size limit. 16.99/9.22 * 16.99/9.22 *

This interface defines methods to access the elements at both 16.99/9.22 * ends of the deque. Methods are provided to insert, remove, and 16.99/9.22 * examine the element. Each of these methods exists in two forms: 16.99/9.22 * one throws an exception if the operation fails, the other returns a 16.99/9.22 * special value (either null or false, depending on 16.99/9.22 * the operation). The latter form of the insert operation is 16.99/9.22 * designed specifically for use with capacity-restricted 16.99/9.22 * Deque implementations; in most implementations, insert 16.99/9.22 * operations cannot fail. 16.99/9.22 * 16.99/9.22 *

The twelve methods described above are summarized in the 16.99/9.22 * following table: 16.99/9.22 * 16.99/9.22 *

16.99/9.22 * 16.99/9.22 * 16.99/9.22 * 16.99/9.22 * 16.99/9.22 * 16.99/9.22 * 16.99/9.22 * 16.99/9.22 * 16.99/9.22 * 16.99/9.22 * 16.99/9.22 * 16.99/9.22 * 16.99/9.22 * 16.99/9.22 * 16.99/9.22 * 16.99/9.22 * 16.99/9.22 * 16.99/9.22 * 16.99/9.22 * 16.99/9.22 * 16.99/9.22 * 16.99/9.22 * 16.99/9.22 * 16.99/9.22 * 16.99/9.22 * 16.99/9.22 * 16.99/9.22 * 16.99/9.22 * 16.99/9.22 * 16.99/9.22 * 16.99/9.22 * 16.99/9.22 * 16.99/9.22 * 16.99/9.22 * 16.99/9.22 *
First Element (Head) Last Element (Tail)
Throws exceptionSpecial valueThrows exceptionSpecial value
Insert{@link #addFirst addFirst(e)}{@link #offerFirst offerFirst(e)}{@link #addLast addLast(e)}{@link #offerLast offerLast(e)}
Remove{@link #removeFirst removeFirst()}{@link #pollFirst pollFirst()}{@link #removeLast removeLast()}{@link #pollLast pollLast()}
Examine{@link #getFirst getFirst()}{@link #peekFirst peekFirst()}{@link #getLast getLast()}{@link #peekLast peekLast()}
16.99/9.22 * 16.99/9.22 *

This interface extends the {@link Queue} interface. When a deque is 16.99/9.22 * used as a queue, FIFO (First-In-First-Out) behavior results. Elements are 16.99/9.22 * added at the end of the deque and removed from the beginning. The methods 16.99/9.22 * inherited from the Queue interface are precisely equivalent to 16.99/9.22 * Deque methods as indicated in the following table: 16.99/9.22 * 16.99/9.22 *

16.99/9.22 * 16.99/9.22 * 16.99/9.22 * 16.99/9.22 * 16.99/9.22 * 16.99/9.22 * 16.99/9.22 * 16.99/9.22 * 16.99/9.22 * 16.99/9.22 * 16.99/9.22 * 16.99/9.22 * 16.99/9.22 * 16.99/9.22 * 16.99/9.22 * 16.99/9.22 * 16.99/9.22 * 16.99/9.22 * 16.99/9.22 * 16.99/9.22 * 16.99/9.22 * 16.99/9.22 * 16.99/9.22 * 16.99/9.22 * 16.99/9.22 * 16.99/9.22 * 16.99/9.22 * 16.99/9.22 * 16.99/9.22 * 16.99/9.22 *
Queue Method Equivalent Deque Method
{@link java.util.Queue#add add(e)}{@link #addLast addLast(e)}
{@link java.util.Queue#offer offer(e)}{@link #offerLast offerLast(e)}
{@link java.util.Queue#remove remove()}{@link #removeFirst removeFirst()}
{@link java.util.Queue#poll poll()}{@link #pollFirst pollFirst()}
{@link java.util.Queue#element element()}{@link #getFirst getFirst()}
{@link java.util.Queue#peek peek()}{@link #peek peekFirst()}
16.99/9.22 * 16.99/9.22 *

Deques can also be used as LIFO (Last-In-First-Out) stacks. This 16.99/9.22 * interface should be used in preference to the legacy {@link Stack} class. 16.99/9.22 * When a deque is used as a stack, elements are pushed and popped from the 16.99/9.22 * beginning of the deque. Stack methods are precisely equivalent to 16.99/9.22 * Deque methods as indicated in the table below: 16.99/9.22 * 16.99/9.22 *

16.99/9.22 * 16.99/9.22 * 16.99/9.22 * 16.99/9.22 * 16.99/9.22 * 16.99/9.22 * 16.99/9.22 * 16.99/9.22 * 16.99/9.22 * 16.99/9.22 * 16.99/9.22 * 16.99/9.22 * 16.99/9.22 * 16.99/9.22 * 16.99/9.22 * 16.99/9.22 * 16.99/9.22 * 16.99/9.22 *
Stack Method Equivalent Deque Method
{@link #push push(e)}{@link #addFirst addFirst(e)}
{@link #pop pop()}{@link #removeFirst removeFirst()}
{@link #peek peek()}{@link #peekFirst peekFirst()}
16.99/9.22 * 16.99/9.22 *

Note that the {@link #peek peek} method works equally well when 16.99/9.22 * a deque is used as a queue or a stack; in either case, elements are 16.99/9.22 * drawn from the beginning of the deque. 16.99/9.22 * 16.99/9.22 *

This interface provides two methods to remove interior 16.99/9.22 * elements, {@link #removeFirstOccurrence removeFirstOccurrence} and 16.99/9.22 * {@link #removeLastOccurrence removeLastOccurrence}. 16.99/9.22 * 16.99/9.22 *

Unlike the {@link List} interface, this interface does not 16.99/9.22 * provide support for indexed access to elements. 16.99/9.22 * 16.99/9.22 *

While Deque implementations are not strictly required 16.99/9.22 * to prohibit the insertion of null elements, they are strongly 16.99/9.22 * encouraged to do so. Users of any Deque implementations 16.99/9.22 * that do allow null elements are strongly encouraged not to 16.99/9.22 * take advantage of the ability to insert nulls. This is so because 16.99/9.22 * null is used as a special return value by various methods 16.99/9.22 * to indicated that the deque is empty. 16.99/9.22 * 16.99/9.22 *

Deque implementations generally do not define 16.99/9.22 * element-based versions of the equals and hashCode 16.99/9.22 * methods, but instead inherit the identity-based versions from class 16.99/9.22 * Object. 16.99/9.22 * 16.99/9.22 *

This interface is a member of the Java Collections 16.99/9.22 * Framework. 16.99/9.22 * 16.99/9.22 * @author Doug Lea 16.99/9.22 * @author Josh Bloch 16.99/9.22 * @since 1.6 16.99/9.22 * @param the type of elements held in this collection 16.99/9.22 */ 16.99/9.22 16.99/9.22 public interface Deque extends Queue { 16.99/9.22 /** 16.99/9.22 * Inserts the specified element at the front of this deque if it is 16.99/9.22 * possible to do so immediately without violating capacity restrictions. 16.99/9.22 * When using a capacity-restricted deque, it is generally preferable to 16.99/9.22 * use method {@link #offerFirst}. 16.99/9.22 * 16.99/9.22 * @param e the element to add 16.99/9.22 * @throws IllegalStateException if the element cannot be added at this 16.99/9.22 * time due to capacity restrictions 16.99/9.22 * @throws ClassCastException if the class of the specified element 16.99/9.22 * prevents it from being added to this deque 16.99/9.22 * @throws NullPointerException if the specified element is null and this 16.99/9.22 * deque does not permit null elements 16.99/9.22 * @throws IllegalArgumentException if some property of the specified 16.99/9.22 * element prevents it from being added to this deque 16.99/9.22 */ 16.99/9.22 void addFirst(E e); 16.99/9.22 16.99/9.22 /** 16.99/9.22 * Inserts the specified element at the end of this deque if it is 16.99/9.22 * possible to do so immediately without violating capacity restrictions. 16.99/9.22 * When using a capacity-restricted deque, it is generally preferable to 16.99/9.22 * use method {@link #offerLast}. 16.99/9.22 * 16.99/9.22 *

This method is equivalent to {@link #add}. 16.99/9.22 * 16.99/9.22 * @param e the element to add 16.99/9.22 * @throws IllegalStateException if the element cannot be added at this 16.99/9.22 * time due to capacity restrictions 16.99/9.22 * @throws ClassCastException if the class of the specified element 16.99/9.22 * prevents it from being added to this deque 16.99/9.22 * @throws NullPointerException if the specified element is null and this 16.99/9.22 * deque does not permit null elements 16.99/9.22 * @throws IllegalArgumentException if some property of the specified 16.99/9.22 * element prevents it from being added to this deque 16.99/9.22 */ 16.99/9.22 void addLast(E e); 16.99/9.22 16.99/9.22 /** 16.99/9.22 * Inserts the specified element at the front of this deque unless it would 16.99/9.22 * violate capacity restrictions. When using a capacity-restricted deque, 16.99/9.22 * this method is generally preferable to the {@link #addFirst} method, 16.99/9.22 * which can fail to insert an element only by throwing an exception. 16.99/9.22 * 16.99/9.22 * @param e the element to add 16.99/9.22 * @return true if the element was added to this deque, else 16.99/9.22 * false 16.99/9.22 * @throws ClassCastException if the class of the specified element 16.99/9.22 * prevents it from being added to this deque 16.99/9.22 * @throws NullPointerException if the specified element is null and this 16.99/9.22 * deque does not permit null elements 16.99/9.22 * @throws IllegalArgumentException if some property of the specified 16.99/9.22 * element prevents it from being added to this deque 16.99/9.22 */ 16.99/9.22 boolean offerFirst(E e); 16.99/9.22 16.99/9.22 /** 16.99/9.22 * Inserts the specified element at the end of this deque unless it would 16.99/9.22 * violate capacity restrictions. When using a capacity-restricted deque, 16.99/9.22 * this method is generally preferable to the {@link #addLast} method, 16.99/9.22 * which can fail to insert an element only by throwing an exception. 16.99/9.22 * 16.99/9.22 * @param e the element to add 16.99/9.22 * @return true if the element was added to this deque, else 16.99/9.22 * false 16.99/9.22 * @throws ClassCastException if the class of the specified element 16.99/9.22 * prevents it from being added to this deque 16.99/9.22 * @throws NullPointerException if the specified element is null and this 16.99/9.22 * deque does not permit null elements 16.99/9.22 * @throws IllegalArgumentException if some property of the specified 16.99/9.22 * element prevents it from being added to this deque 16.99/9.22 */ 16.99/9.22 boolean offerLast(E e); 16.99/9.22 16.99/9.22 /** 16.99/9.22 * Retrieves and removes the first element of this deque. This method 16.99/9.22 * differs from {@link #pollFirst pollFirst} only in that it throws an 16.99/9.22 * exception if this deque is empty. 16.99/9.22 * 16.99/9.22 * @return the head of this deque 16.99/9.22 * @throws NoSuchElementException if this deque is empty 16.99/9.22 */ 16.99/9.22 E removeFirst(); 16.99/9.22 16.99/9.22 /** 16.99/9.22 * Retrieves and removes the last element of this deque. This method 16.99/9.22 * differs from {@link #pollLast pollLast} only in that it throws an 16.99/9.22 * exception if this deque is empty. 16.99/9.22 * 16.99/9.22 * @return the tail of this deque 16.99/9.22 * @throws NoSuchElementException if this deque is empty 16.99/9.22 */ 16.99/9.22 E removeLast(); 16.99/9.22 16.99/9.22 /** 16.99/9.22 * Retrieves and removes the first element of this deque, 16.99/9.22 * or returns null if this deque is empty. 16.99/9.22 * 16.99/9.22 * @return the head of this deque, or null if this deque is empty 16.99/9.22 */ 16.99/9.22 E pollFirst(); 16.99/9.22 16.99/9.22 /** 16.99/9.22 * Retrieves and removes the last element of this deque, 16.99/9.22 * or returns null if this deque is empty. 16.99/9.22 * 16.99/9.22 * @return the tail of this deque, or null if this deque is empty 16.99/9.22 */ 16.99/9.22 E pollLast(); 16.99/9.22 16.99/9.22 /** 16.99/9.22 * Retrieves, but does not remove, the first element of this deque. 16.99/9.22 * 16.99/9.22 * This method differs from {@link #peekFirst peekFirst} only in that it 16.99/9.22 * throws an exception if this deque is empty. 16.99/9.22 * 16.99/9.22 * @return the head of this deque 16.99/9.22 * @throws NoSuchElementException if this deque is empty 16.99/9.22 */ 16.99/9.22 E getFirst(); 16.99/9.22 16.99/9.22 /** 16.99/9.22 * Retrieves, but does not remove, the last element of this deque. 16.99/9.22 * This method differs from {@link #peekLast peekLast} only in that it 16.99/9.22 * throws an exception if this deque is empty. 16.99/9.22 * 16.99/9.22 * @return the tail of this deque 16.99/9.22 * @throws NoSuchElementException if this deque is empty 16.99/9.22 */ 16.99/9.22 E getLast(); 16.99/9.22 16.99/9.22 /** 16.99/9.22 * Retrieves, but does not remove, the first element of this deque, 16.99/9.22 * or returns null if this deque is empty. 16.99/9.22 * 16.99/9.22 * @return the head of this deque, or null if this deque is empty 16.99/9.22 */ 16.99/9.22 E peekFirst(); 16.99/9.22 16.99/9.22 /** 16.99/9.22 * Retrieves, but does not remove, the last element of this deque, 16.99/9.22 * or returns null if this deque is empty. 16.99/9.22 * 16.99/9.22 * @return the tail of this deque, or null if this deque is empty 16.99/9.22 */ 16.99/9.22 E peekLast(); 16.99/9.22 16.99/9.22 /** 16.99/9.22 * Removes the first occurrence of the specified element from this deque. 16.99/9.22 * If the deque does not contain the element, it is unchanged. 16.99/9.22 * More formally, removes the first element e such that 16.99/9.22 * (o==null ? e==null : o.equals(e)) 16.99/9.22 * (if such an element exists). 16.99/9.22 * Returns true if this deque contained the specified element 16.99/9.22 * (or equivalently, if this deque changed as a result of the call). 16.99/9.22 * 16.99/9.22 * @param o element to be removed from this deque, if present 16.99/9.22 * @return true if an element was removed as a result of this call 16.99/9.22 * @throws ClassCastException if the class of the specified element 16.99/9.22 * is incompatible with this deque (optional) 16.99/9.22 * @throws NullPointerException if the specified element is null and this 16.99/9.22 * deque does not permit null elements (optional) 16.99/9.22 */ 16.99/9.22 boolean removeFirstOccurrence(Object o); 16.99/9.22 16.99/9.22 /** 16.99/9.22 * Removes the last occurrence of the specified element from this deque. 16.99/9.22 * If the deque does not contain the element, it is unchanged. 16.99/9.22 * More formally, removes the last element e such that 16.99/9.22 * (o==null ? e==null : o.equals(e)) 16.99/9.22 * (if such an element exists). 16.99/9.22 * Returns true if this deque contained the specified element 16.99/9.22 * (or equivalently, if this deque changed as a result of the call). 16.99/9.22 * 16.99/9.22 * @param o element to be removed from this deque, if present 16.99/9.22 * @return true if an element was removed as a result of this call 16.99/9.22 * @throws ClassCastException if the class of the specified element 16.99/9.22 * is incompatible with this deque (optional) 16.99/9.22 * @throws NullPointerException if the specified element is null and this 16.99/9.22 * deque does not permit null elements (optional) 16.99/9.22 */ 16.99/9.22 boolean removeLastOccurrence(Object o); 16.99/9.22 16.99/9.22 // *** Queue methods *** 16.99/9.22 16.99/9.22 /** 16.99/9.22 * Inserts the specified element into the queue represented by this deque 16.99/9.22 * (in other words, at the tail of this deque) if it is possible to do so 16.99/9.22 * immediately without violating capacity restrictions, returning 16.99/9.22 * true upon success and throwing an 16.99/9.22 * IllegalStateException if no space is currently available. 16.99/9.22 * When using a capacity-restricted deque, it is generally preferable to 16.99/9.22 * use {@link #offer(Object) offer}. 16.99/9.22 * 16.99/9.22 *

This method is equivalent to {@link #addLast}. 16.99/9.22 * 16.99/9.22 * @param e the element to add 16.99/9.22 * @return true (as specified by {@link Collection#add}) 16.99/9.22 * @throws IllegalStateException if the element cannot be added at this 16.99/9.22 * time due to capacity restrictions 16.99/9.22 * @throws ClassCastException if the class of the specified element 16.99/9.22 * prevents it from being added to this deque 16.99/9.22 * @throws NullPointerException if the specified element is null and this 16.99/9.22 * deque does not permit null elements 16.99/9.22 * @throws IllegalArgumentException if some property of the specified 16.99/9.22 * element prevents it from being added to this deque 16.99/9.22 */ 16.99/9.22 boolean add(E e); 16.99/9.22 16.99/9.22 /** 16.99/9.22 * Inserts the specified element into the queue represented by this deque 16.99/9.22 * (in other words, at the tail of this deque) if it is possible to do so 16.99/9.22 * immediately without violating capacity restrictions, returning 16.99/9.22 * true upon success and false if no space is currently 16.99/9.22 * available. When using a capacity-restricted deque, this method is 16.99/9.22 * generally preferable to the {@link #add} method, which can fail to 16.99/9.22 * insert an element only by throwing an exception. 16.99/9.22 * 16.99/9.22 *

This method is equivalent to {@link #offerLast}. 16.99/9.22 * 16.99/9.22 * @param e the element to add 16.99/9.22 * @return true if the element was added to this deque, else 16.99/9.22 * false 16.99/9.22 * @throws ClassCastException if the class of the specified element 16.99/9.22 * prevents it from being added to this deque 16.99/9.22 * @throws NullPointerException if the specified element is null and this 16.99/9.22 * deque does not permit null elements 16.99/9.22 * @throws IllegalArgumentException if some property of the specified 16.99/9.22 * element prevents it from being added to this deque 16.99/9.22 */ 16.99/9.22 boolean offer(E e); 16.99/9.22 16.99/9.22 /** 16.99/9.22 * Retrieves and removes the head of the queue represented by this deque 16.99/9.22 * (in other words, the first element of this deque). 16.99/9.22 * This method differs from {@link #poll poll} only in that it throws an 16.99/9.22 * exception if this deque is empty. 16.99/9.22 * 16.99/9.22 *

This method is equivalent to {@link #removeFirst()}. 16.99/9.22 * 16.99/9.22 * @return the head of the queue represented by this deque 16.99/9.22 * @throws NoSuchElementException if this deque is empty 16.99/9.22 */ 16.99/9.22 E remove(); 16.99/9.22 16.99/9.22 /** 16.99/9.22 * Retrieves and removes the head of the queue represented by this deque 16.99/9.22 * (in other words, the first element of this deque), or returns 16.99/9.22 * null if this deque is empty. 16.99/9.22 * 16.99/9.22 *

This method is equivalent to {@link #pollFirst()}. 16.99/9.22 * 16.99/9.22 * @return the first element of this deque, or null if 16.99/9.22 * this deque is empty 16.99/9.22 */ 16.99/9.22 E poll(); 16.99/9.22 16.99/9.22 /** 16.99/9.22 * Retrieves, but does not remove, the head of the queue represented by 16.99/9.22 * this deque (in other words, the first element of this deque). 16.99/9.22 * This method differs from {@link #peek peek} only in that it throws an 16.99/9.22 * exception if this deque is empty. 16.99/9.22 * 16.99/9.22 *

This method is equivalent to {@link #getFirst()}. 16.99/9.22 * 16.99/9.22 * @return the head of the queue represented by this deque 16.99/9.22 * @throws NoSuchElementException if this deque is empty 16.99/9.22 */ 16.99/9.22 E element(); 16.99/9.22 16.99/9.22 /** 16.99/9.22 * Retrieves, but does not remove, the head of the queue represented by 16.99/9.22 * this deque (in other words, the first element of this deque), or 16.99/9.22 * returns null if this deque is empty. 16.99/9.22 * 16.99/9.22 *

This method is equivalent to {@link #peekFirst()}. 16.99/9.22 * 16.99/9.22 * @return the head of the queue represented by this deque, or 16.99/9.22 * null if this deque is empty 16.99/9.22 */ 16.99/9.22 E peek(); 16.99/9.22 16.99/9.22 16.99/9.22 // *** Stack methods *** 16.99/9.22 16.99/9.22 /** 16.99/9.22 * Pushes an element onto the stack represented by this deque (in other 16.99/9.22 * words, at the head of this deque) if it is possible to do so 16.99/9.22 * immediately without violating capacity restrictions, returning 16.99/9.22 * true upon success and throwing an 16.99/9.22 * IllegalStateException if no space is currently available. 16.99/9.22 * 16.99/9.22 *

This method is equivalent to {@link #addFirst}. 16.99/9.22 * 16.99/9.22 * @param e the element to push 16.99/9.22 * @throws IllegalStateException if the element cannot be added at this 16.99/9.22 * time due to capacity restrictions 16.99/9.22 * @throws ClassCastException if the class of the specified element 16.99/9.22 * prevents it from being added to this deque 16.99/9.22 * @throws NullPointerException if the specified element is null and this 16.99/9.22 * deque does not permit null elements 16.99/9.22 * @throws IllegalArgumentException if some property of the specified 16.99/9.22 * element prevents it from being added to this deque 16.99/9.22 */ 16.99/9.22 void push(E e); 16.99/9.22 16.99/9.22 /** 16.99/9.22 * Pops an element from the stack represented by this deque. In other 16.99/9.22 * words, removes and returns the first element of this deque. 16.99/9.22 * 16.99/9.22 *

This method is equivalent to {@link #removeFirst()}. 16.99/9.22 * 16.99/9.22 * @return the element at the front of this deque (which is the top 16.99/9.22 * of the stack represented by this deque) 16.99/9.22 * @throws NoSuchElementException if this deque is empty 16.99/9.22 */ 16.99/9.22 E pop(); 16.99/9.22 16.99/9.22 16.99/9.22 // *** Collection methods *** 16.99/9.22 16.99/9.22 /** 16.99/9.22 * Removes the first occurrence of the specified element from this deque. 16.99/9.22 * If the deque does not contain the element, it is unchanged. 16.99/9.22 * More formally, removes the first element e such that 16.99/9.22 * (o==null ? e==null : o.equals(e)) 16.99/9.22 * (if such an element exists). 16.99/9.22 * Returns true if this deque contained the specified element 16.99/9.22 * (or equivalently, if this deque changed as a result of the call). 16.99/9.22 * 16.99/9.22 *

This method is equivalent to {@link #removeFirstOccurrence}. 16.99/9.22 * 16.99/9.22 * @param o element to be removed from this deque, if present 16.99/9.22 * @return true if an element was removed as a result of this call 16.99/9.22 * @throws ClassCastException if the class of the specified element 16.99/9.22 * is incompatible with this deque (optional) 16.99/9.22 * @throws NullPointerException if the specified element is null and this 16.99/9.22 * deque does not permit null elements (optional) 16.99/9.22 */ 16.99/9.22 boolean remove(Object o); 16.99/9.22 16.99/9.22 /** 16.99/9.22 * Returns true if this deque contains the specified element. 16.99/9.22 * More formally, returns true if and only if this deque contains 16.99/9.22 * at least one element e such that 16.99/9.22 * (o==null ? e==null : o.equals(e)). 16.99/9.22 * 16.99/9.22 * @param o element whose presence in this deque is to be tested 16.99/9.22 * @return true if this deque contains the specified element 16.99/9.22 * @throws ClassCastException if the type of the specified element 16.99/9.22 * is incompatible with this deque (optional) 16.99/9.22 * @throws NullPointerException if the specified element is null and this 16.99/9.22 * deque does not permit null elements (optional) 16.99/9.22 */ 16.99/9.22 boolean contains(Object o); 16.99/9.22 16.99/9.22 /** 16.99/9.22 * Returns the number of elements in this deque. 16.99/9.22 * 16.99/9.22 * @return the number of elements in this deque 16.99/9.22 */ 16.99/9.22 public int size(); 16.99/9.22 16.99/9.22 /** 16.99/9.22 * Returns an iterator over the elements in this deque in proper sequence. 16.99/9.22 * The elements will be returned in order from first (head) to last (tail). 16.99/9.22 * 16.99/9.22 * @return an iterator over the elements in this deque in proper sequence 16.99/9.22 */ 16.99/9.22 Iterator iterator(); 16.99/9.22 16.99/9.22 /** 16.99/9.22 * Returns an iterator over the elements in this deque in reverse 16.99/9.22 * sequential order. The elements will be returned in order from 16.99/9.22 * last (tail) to first (head). 16.99/9.22 * 16.99/9.22 * @return an iterator over the elements in this deque in reverse 16.99/9.22 * sequence 16.99/9.22 */ 16.99/9.22 Iterator descendingIterator(); 16.99/9.22 16.99/9.22 } 16.99/9.22 16.99/9.22 16.99/9.22 /* 16.99/9.22 * Copyright 1994-2003 Sun Microsystems, Inc. All Rights Reserved. 16.99/9.22 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 16.99/9.22 * 16.99/9.22 * This code is free software; you can redistribute it and/or modify it 16.99/9.22 * under the terms of the GNU General Public License version 2 only, as 16.99/9.22 * published by the Free Software Foundation. Sun designates this 16.99/9.22 * particular file as subject to the "Classpath" exception as provided 16.99/9.22 * by Sun in the LICENSE file that accompanied this code. 16.99/9.22 * 16.99/9.22 * This code is distributed in the hope that it will be useful, but WITHOUT 16.99/9.22 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or 16.99/9.22 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License 16.99/9.22 * version 2 for more details (a copy is included in the LICENSE file that 16.99/9.22 * accompanied this code). 16.99/9.22 * 16.99/9.22 * You should have received a copy of the GNU General Public License version 16.99/9.22 * 2 along with this work; if not, write to the Free Software Foundation, 16.99/9.22 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. 16.99/9.22 * 16.99/9.22 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara, 16.99/9.22 * CA 95054 USA or visit www.sun.com if you need additional information or 16.99/9.22 * have any questions. 16.99/9.22 */ 16.99/9.22 16.99/9.22 package javaUtilEx; 16.99/9.22 16.99/9.22 /** 16.99/9.22 * Thrown to indicate that a method has been passed an illegal or 16.99/9.22 * inappropriate argument. 16.99/9.22 * 16.99/9.22 * @author unascribed 16.99/9.22 * @see java.lang.Thread#setPriority(int) 16.99/9.22 * @since JDK1.0 16.99/9.22 */ 16.99/9.22 public 16.99/9.22 class IllegalArgumentException extends RuntimeException { 16.99/9.22 /** 16.99/9.22 * Constructs an IllegalArgumentException with no 16.99/9.22 * detail message. 16.99/9.22 */ 16.99/9.22 public IllegalArgumentException() { 16.99/9.22 super(); 16.99/9.22 } 16.99/9.22 16.99/9.22 /** 16.99/9.22 * Constructs an IllegalArgumentException with the 16.99/9.22 * specified detail message. 16.99/9.22 * 16.99/9.22 * @param s the detail message. 16.99/9.22 */ 16.99/9.22 public IllegalArgumentException(String s) { 16.99/9.22 super(s); 16.99/9.22 } 16.99/9.22 16.99/9.22 /** 16.99/9.22 * Constructs a new exception with the specified detail message and 16.99/9.22 * cause. 16.99/9.22 * 16.99/9.22 *

Note that the detail message associated with cause is 16.99/9.22 * not automatically incorporated in this exception's detail 16.99/9.22 * message. 16.99/9.22 * 16.99/9.22 * @param message the detail message (which is saved for later retrieval 16.99/9.22 * by the {@link Throwable#getMessage()} method). 16.99/9.22 * @param cause the cause (which is saved for later retrieval by the 16.99/9.22 * {@link Throwable#getCause()} method). (A null value 16.99/9.22 * is permitted, and indicates that the cause is nonexistent or 16.99/9.22 * unknown.) 16.99/9.22 * @since 1.5 16.99/9.22 */ 16.99/9.22 public IllegalArgumentException(String message, Throwable cause) { 16.99/9.22 super(message, cause); 16.99/9.22 } 16.99/9.22 16.99/9.22 /** 16.99/9.22 * Constructs a new exception with the specified cause and a detail 16.99/9.22 * message of (cause==null ? null : cause.toString()) (which 16.99/9.22 * typically contains the class and detail message of cause). 16.99/9.22 * This constructor is useful for exceptions that are little more than 16.99/9.22 * wrappers for other throwables (for example, {@link 16.99/9.22 * java.security.PrivilegedActionException}). 16.99/9.22 * 16.99/9.22 * @param cause the cause (which is saved for later retrieval by the 16.99/9.22 * {@link Throwable#getCause()} method). (A null value is 16.99/9.22 * permitted, and indicates that the cause is nonexistent or 16.99/9.22 * unknown.) 16.99/9.22 * @since 1.5 16.99/9.22 */ 16.99/9.22 public IllegalArgumentException(Throwable cause) { 16.99/9.22 super(cause); 16.99/9.22 } 16.99/9.22 16.99/9.22 private static final long serialVersionUID = -5365630128856068164L; 16.99/9.22 } 16.99/9.22 16.99/9.22 16.99/9.22 /* 16.99/9.22 * Copyright 1996-2003 Sun Microsystems, Inc. All Rights Reserved. 16.99/9.22 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 16.99/9.22 * 16.99/9.22 * This code is free software; you can redistribute it and/or modify it 16.99/9.22 * under the terms of the GNU General Public License version 2 only, as 16.99/9.22 * published by the Free Software Foundation. Sun designates this 16.99/9.22 * particular file as subject to the "Classpath" exception as provided 16.99/9.22 * by Sun in the LICENSE file that accompanied this code. 16.99/9.22 * 16.99/9.22 * This code is distributed in the hope that it will be useful, but WITHOUT 16.99/9.22 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or 16.99/9.22 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License 16.99/9.22 * version 2 for more details (a copy is included in the LICENSE file that 16.99/9.22 * accompanied this code). 16.99/9.22 * 16.99/9.22 * You should have received a copy of the GNU General Public License version 16.99/9.22 * 2 along with this work; if not, write to the Free Software Foundation, 16.99/9.22 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. 16.99/9.22 * 16.99/9.22 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara, 16.99/9.22 * CA 95054 USA or visit www.sun.com if you need additional information or 16.99/9.22 * have any questions. 16.99/9.22 */ 16.99/9.22 16.99/9.22 package javaUtilEx; 16.99/9.22 16.99/9.22 /** 16.99/9.22 * Signals that a method has been invoked at an illegal or 16.99/9.22 * inappropriate time. In other words, the Java environment or 16.99/9.22 * Java application is not in an appropriate state for the requested 16.99/9.22 * operation. 16.99/9.22 * 16.99/9.22 * @author Jonni Kanerva 16.99/9.22 * @since JDK1.1 16.99/9.22 */ 16.99/9.22 public 16.99/9.22 class IllegalStateException extends RuntimeException { 16.99/9.22 /** 16.99/9.22 * Constructs an IllegalStateException with no detail message. 16.99/9.22 * A detail message is a String that describes this particular exception. 16.99/9.22 */ 16.99/9.22 public IllegalStateException() { 16.99/9.22 super(); 16.99/9.22 } 16.99/9.22 16.99/9.22 /** 16.99/9.22 * Constructs an IllegalStateException with the specified detail 16.99/9.22 * message. A detail message is a String that describes this particular 16.99/9.22 * exception. 16.99/9.22 * 16.99/9.22 * @param s the String that contains a detailed message 16.99/9.22 */ 16.99/9.22 public IllegalStateException(String s) { 16.99/9.22 super(s); 16.99/9.22 } 16.99/9.22 16.99/9.22 /** 16.99/9.22 * Constructs a new exception with the specified detail message and 16.99/9.22 * cause. 16.99/9.22 * 16.99/9.22 *

Note that the detail message associated with cause is 16.99/9.22 * not automatically incorporated in this exception's detail 16.99/9.22 * message. 16.99/9.22 * 16.99/9.22 * @param message the detail message (which is saved for later retrieval 16.99/9.23 * by the {@link Throwable#getMessage()} method). 16.99/9.23 * @param cause the cause (which is saved for later retrieval by the 16.99/9.23 * {@link Throwable#getCause()} method). (A null value 16.99/9.23 * is permitted, and indicates that the cause is nonexistent or 16.99/9.23 * unknown.) 16.99/9.23 * @since 1.5 16.99/9.23 */ 16.99/9.23 public IllegalStateException(String message, Throwable cause) { 16.99/9.23 super(message, cause); 16.99/9.23 } 16.99/9.23 16.99/9.23 /** 16.99/9.23 * Constructs a new exception with the specified cause and a detail 16.99/9.23 * message of (cause==null ? null : cause.toString()) (which 16.99/9.23 * typically contains the class and detail message of cause). 16.99/9.23 * This constructor is useful for exceptions that are little more than 16.99/9.23 * wrappers for other throwables (for example, {@link 16.99/9.23 * java.security.PrivilegedActionException}). 16.99/9.23 * 16.99/9.23 * @param cause the cause (which is saved for later retrieval by the 16.99/9.23 * {@link Throwable#getCause()} method). (A null value is 16.99/9.23 * permitted, and indicates that the cause is nonexistent or 16.99/9.23 * unknown.) 16.99/9.23 * @since 1.5 16.99/9.23 */ 16.99/9.23 public IllegalStateException(Throwable cause) { 16.99/9.23 super(cause); 16.99/9.23 } 16.99/9.23 16.99/9.23 static final long serialVersionUID = -1848914673093119416L; 16.99/9.23 } 16.99/9.23 16.99/9.23 16.99/9.23 /* 16.99/9.23 * Copyright 1997-2006 Sun Microsystems, Inc. All Rights Reserved. 16.99/9.23 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 16.99/9.23 * 16.99/9.23 * This code is free software; you can redistribute it and/or modify it 16.99/9.23 * under the terms of the GNU General Public License version 2 only, as 16.99/9.23 * published by the Free Software Foundation. Sun designates this 16.99/9.23 * particular file as subject to the "Classpath" exception as provided 16.99/9.23 * by Sun in the LICENSE file that accompanied this code. 16.99/9.23 * 16.99/9.23 * This code is distributed in the hope that it will be useful, but WITHOUT 16.99/9.23 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or 16.99/9.23 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License 16.99/9.23 * version 2 for more details (a copy is included in the LICENSE file that 16.99/9.23 * accompanied this code). 16.99/9.23 * 16.99/9.23 * You should have received a copy of the GNU General Public License version 16.99/9.23 * 2 along with this work; if not, write to the Free Software Foundation, 16.99/9.23 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. 16.99/9.23 * 16.99/9.23 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara, 16.99/9.23 * CA 95054 USA or visit www.sun.com if you need additional information or 16.99/9.23 * have any questions. 16.99/9.23 */ 16.99/9.23 16.99/9.23 package javaUtilEx; 16.99/9.23 16.99/9.23 /** 16.99/9.23 * An iterator over a collection. {@code Iterator} takes the place of 16.99/9.23 * {@link Enumeration} in the Java Collections Framework. Iterators 16.99/9.23 * differ from enumerations in two ways: 16.99/9.23 * 16.99/9.23 *

16.99/9.23 * 16.99/9.23 *

This interface is a member of the 16.99/9.23 * 16.99/9.23 * Java Collections Framework. 16.99/9.23 * 16.99/9.23 * @author Josh Bloch 16.99/9.23 * @see Collection 16.99/9.23 * @see ListIterator 16.99/9.23 * @see Iterable 16.99/9.23 * @since 1.2 16.99/9.23 */ 16.99/9.23 public interface Iterator { 16.99/9.23 /** 16.99/9.23 * Returns {@code true} if the iteration has more elements. 16.99/9.23 * (In other words, returns {@code true} if {@link #next} would 16.99/9.23 * return an element rather than throwing an exception.) 16.99/9.23 * 16.99/9.23 * @return {@code true} if the iteration has more elements 16.99/9.23 */ 16.99/9.23 boolean hasNext(); 16.99/9.23 16.99/9.23 /** 16.99/9.23 * Returns the next element in the iteration. 16.99/9.23 * 16.99/9.23 * @return the next element in the iteration 16.99/9.23 * @throws NoSuchElementException if the iteration has no more elements 16.99/9.23 */ 16.99/9.23 E next(); 16.99/9.23 16.99/9.23 /** 16.99/9.23 * Removes from the underlying collection the last element returned 16.99/9.23 * by this iterator (optional operation). This method can be called 16.99/9.23 * only once per call to {@link #next}. The behavior of an iterator 16.99/9.23 * is unspecified if the underlying collection is modified while the 16.99/9.23 * iteration is in progress in any way other than by calling this 16.99/9.23 * method. 16.99/9.23 * 16.99/9.23 * @throws UnsupportedOperationException if the {@code remove} 16.99/9.23 * operation is not supported by this iterator 16.99/9.23 * 16.99/9.23 * @throws IllegalStateException if the {@code next} method has not 16.99/9.23 * yet been called, or the {@code remove} method has already 16.99/9.23 * been called after the last call to the {@code next} 16.99/9.23 * method 16.99/9.23 */ 16.99/9.23 void remove(); 16.99/9.23 } 16.99/9.23 16.99/9.23 16.99/9.23 package javaUtilEx; 16.99/9.23 16.99/9.23 public class juLinkedListCreatePoll { 16.99/9.23 public static void main(String[] args) { 16.99/9.23 Random.args = args; 16.99/9.23 16.99/9.23 LinkedList l = createList(Random.random()); 16.99/9.23 l.poll(); 16.99/9.23 } 16.99/9.23 16.99/9.23 public static LinkedList createList(int n) { 16.99/9.23 LinkedList l = new LinkedList(); 16.99/9.23 while (n > 0) { 16.99/9.23 l.addLast(new Content(Random.random())); 16.99/9.23 n--; 16.99/9.23 } 16.99/9.23 return l; 16.99/9.23 } 16.99/9.23 } 16.99/9.23 16.99/9.23 final class Content { 16.99/9.23 int val; 16.99/9.23 16.99/9.23 public Content(int v) { 16.99/9.23 this.val = v; 16.99/9.23 } 16.99/9.23 16.99/9.23 public int hashCode() { 16.99/9.23 return val^31; 16.99/9.23 } 16.99/9.23 16.99/9.23 public boolean equals(Object o) { 16.99/9.23 if (o instanceof Content) { 16.99/9.23 return this.val == ((Content) o).val; 16.99/9.23 } 16.99/9.23 return false; 16.99/9.23 } 16.99/9.23 } 16.99/9.23 16.99/9.23 16.99/9.23 /* 16.99/9.23 * Copyright 1997-2006 Sun Microsystems, Inc. All Rights Reserved. 16.99/9.23 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 16.99/9.23 * 16.99/9.23 * This code is free software; you can redistribute it and/or modify it 16.99/9.23 * under the terms of the GNU General Public License version 2 only, as 16.99/9.23 * published by the Free Software Foundation. Sun designates this 16.99/9.23 * particular file as subject to the "Classpath" exception as provided 16.99/9.23 * by Sun in the LICENSE file that accompanied this code. 16.99/9.23 * 16.99/9.23 * This code is distributed in the hope that it will be useful, but WITHOUT 16.99/9.23 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or 16.99/9.23 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License 16.99/9.23 * version 2 for more details (a copy is included in the LICENSE file that 16.99/9.23 * accompanied this code). 16.99/9.23 * 16.99/9.23 * You should have received a copy of the GNU General Public License version 16.99/9.23 * 2 along with this work; if not, write to the Free Software Foundation, 16.99/9.23 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. 16.99/9.23 * 16.99/9.23 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara, 16.99/9.23 * CA 95054 USA or visit www.sun.com if you need additional information or 16.99/9.23 * have any questions. 16.99/9.23 */ 16.99/9.23 16.99/9.23 package javaUtilEx; 16.99/9.23 16.99/9.23 /** 16.99/9.23 * Linked list implementation of the List interface. Implements all 16.99/9.23 * optional list operations, and permits all elements (including 16.99/9.23 * null). In addition to implementing the List interface, 16.99/9.23 * the LinkedList class provides uniformly named methods to 16.99/9.23 * get, remove and insert an element at the 16.99/9.23 * beginning and end of the list. These operations allow linked lists to be 16.99/9.23 * used as a stack, {@linkplain Queue queue}, or {@linkplain Deque 16.99/9.23 * double-ended queue}.

16.99/9.23 * 16.99/9.23 * The class implements the Deque interface, providing 16.99/9.23 * first-in-first-out queue operations for add, 16.99/9.23 * poll, along with other stack and deque operations.

16.99/9.23 * 16.99/9.23 * All of the operations perform as could be expected for a doubly-linked 16.99/9.23 * list. Operations that index into the list will traverse the list from 16.99/9.23 * the beginning or the end, whichever is closer to the specified index.

16.99/9.23 * 16.99/9.23 *

Note that this implementation is not synchronized. 16.99/9.23 * If multiple threads access a linked list concurrently, and at least 16.99/9.23 * one of the threads modifies the list structurally, it must be 16.99/9.23 * synchronized externally. (A structural modification is any operation 16.99/9.23 * that adds or deletes one or more elements; merely setting the value of 16.99/9.23 * an element is not a structural modification.) This is typically 16.99/9.23 * accomplished by synchronizing on some object that naturally 16.99/9.23 * encapsulates the list. 16.99/9.23 * 16.99/9.23 * If no such object exists, the list should be "wrapped" using the 16.99/9.23 * {@link Collections#synchronizedList Collections.synchronizedList} 16.99/9.23 * method. This is best done at creation time, to prevent accidental 16.99/9.23 * unsynchronized access to the list:

16.99/9.23	 *   List list = Collections.synchronizedList(new LinkedList(...));
16.99/9.23 * 16.99/9.23 *

The iterators returned by this class's iterator and 16.99/9.23 * listIterator methods are fail-fast: if the list is 16.99/9.23 * structurally modified at any time after the iterator is created, in 16.99/9.23 * any way except through the Iterator's own remove or 16.99/9.23 * add methods, the iterator will throw a {@link 16.99/9.23 * ConcurrentModificationException}. Thus, in the face of concurrent 16.99/9.23 * modification, the iterator fails quickly and cleanly, rather than 16.99/9.23 * risking arbitrary, non-deterministic behavior at an undetermined 16.99/9.23 * time in the future. 16.99/9.23 * 16.99/9.23 *

Note that the fail-fast behavior of an iterator cannot be guaranteed 16.99/9.23 * as it is, generally speaking, impossible to make any hard guarantees in the 16.99/9.23 * presence of unsynchronized concurrent modification. Fail-fast iterators 16.99/9.23 * throw ConcurrentModificationException on a best-effort basis. 16.99/9.23 * Therefore, it would be wrong to write a program that depended on this 16.99/9.23 * exception for its correctness: the fail-fast behavior of iterators 16.99/9.23 * should be used only to detect bugs. 16.99/9.23 * 16.99/9.23 *

This class is a member of the 16.99/9.23 * 16.99/9.23 * Java Collections Framework. 16.99/9.23 * 16.99/9.23 * @author Josh Bloch 16.99/9.23 * @see List 16.99/9.23 * @see ArrayList 16.99/9.23 * @see Vector 16.99/9.23 * @since 1.2 16.99/9.23 * @param the type of elements held in this collection 16.99/9.23 */ 16.99/9.23 16.99/9.23 public class LinkedList 16.99/9.23 extends AbstractSequentialList 16.99/9.23 implements List, Deque 16.99/9.23 { 16.99/9.23 private transient Entry header = new Entry(null, null, null); 16.99/9.23 private transient int size = 0; 16.99/9.23 16.99/9.23 /** 16.99/9.23 * Constructs an empty list. 16.99/9.23 */ 16.99/9.23 public LinkedList() { 16.99/9.23 header.next = header.previous = header; 16.99/9.23 } 16.99/9.23 16.99/9.23 /** 16.99/9.23 * Constructs a list containing the elements of the specified 16.99/9.23 * collection, in the order they are returned by the collection's 16.99/9.23 * iterator. 16.99/9.23 * 16.99/9.23 * @param c the collection whose elements are to be placed into this list 16.99/9.23 * @throws NullPointerException if the specified collection is null 16.99/9.23 */ 16.99/9.23 public LinkedList(Collection c) { 16.99/9.23 this(); 16.99/9.23 addAll(c); 16.99/9.23 } 16.99/9.23 16.99/9.23 /** 16.99/9.23 * Returns the first element in this list. 16.99/9.23 * 16.99/9.23 * @return the first element in this list 16.99/9.23 * @throws NoSuchElementException if this list is empty 16.99/9.23 */ 16.99/9.23 public E getFirst() { 16.99/9.23 if (size==0) 16.99/9.23 throw new NoSuchElementException(); 16.99/9.23 16.99/9.23 return header.next.element; 16.99/9.23 } 16.99/9.23 16.99/9.23 /** 16.99/9.23 * Returns the last element in this list. 16.99/9.23 * 16.99/9.23 * @return the last element in this list 16.99/9.23 * @throws NoSuchElementException if this list is empty 16.99/9.23 */ 16.99/9.23 public E getLast() { 16.99/9.23 if (size==0) 16.99/9.23 throw new NoSuchElementException(); 16.99/9.23 16.99/9.23 return header.previous.element; 16.99/9.23 } 16.99/9.23 16.99/9.23 /** 16.99/9.23 * Removes and returns the first element from this list. 16.99/9.23 * 16.99/9.23 * @return the first element from this list 16.99/9.23 * @throws NoSuchElementException if this list is empty 16.99/9.23 */ 16.99/9.23 public E removeFirst() { 16.99/9.23 return remove(header.next); 16.99/9.23 } 16.99/9.23 16.99/9.23 /** 16.99/9.23 * Removes and returns the last element from this list. 16.99/9.23 * 16.99/9.23 * @return the last element from this list 16.99/9.23 * @throws NoSuchElementException if this list is empty 16.99/9.23 */ 16.99/9.23 public E removeLast() { 16.99/9.23 return remove(header.previous); 16.99/9.23 } 16.99/9.23 16.99/9.23 /** 16.99/9.23 * Inserts the specified element at the beginning of this list. 16.99/9.23 * 16.99/9.23 * @param e the element to add 16.99/9.23 */ 16.99/9.23 public void addFirst(E e) { 16.99/9.23 addBefore(e, header.next); 16.99/9.23 } 16.99/9.23 16.99/9.23 /** 16.99/9.23 * Appends the specified element to the end of this list. 16.99/9.23 * 16.99/9.23 *

This method is equivalent to {@link #add}. 16.99/9.23 * 16.99/9.23 * @param e the element to add 16.99/9.23 */ 16.99/9.23 public void addLast(E e) { 16.99/9.23 addBefore(e, header); 16.99/9.23 } 16.99/9.23 16.99/9.23 /** 16.99/9.23 * Returns true if this list contains the specified element. 16.99/9.23 * More formally, returns true if and only if this list contains 16.99/9.23 * at least one element e such that 16.99/9.23 * (o==null ? e==null : o.equals(e)). 16.99/9.23 * 16.99/9.23 * @param o element whose presence in this list is to be tested 16.99/9.23 * @return true if this list contains the specified element 16.99/9.23 */ 16.99/9.23 public boolean contains(Object o) { 16.99/9.23 return indexOf(o) != -1; 16.99/9.23 } 16.99/9.23 16.99/9.23 /** 16.99/9.23 * Returns the number of elements in this list. 16.99/9.23 * 16.99/9.23 * @return the number of elements in this list 16.99/9.23 */ 16.99/9.23 public int size() { 16.99/9.23 return size; 16.99/9.23 } 16.99/9.23 16.99/9.23 /** 16.99/9.23 * Appends the specified element to the end of this list. 16.99/9.23 * 16.99/9.23 *

This method is equivalent to {@link #addLast}. 16.99/9.23 * 16.99/9.23 * @param e element to be appended to this list 16.99/9.23 * @return true (as specified by {@link Collection#add}) 16.99/9.23 */ 16.99/9.23 public boolean add(E e) { 16.99/9.23 addBefore(e, header); 16.99/9.23 return true; 16.99/9.23 } 16.99/9.23 16.99/9.23 /** 16.99/9.23 * Removes the first occurrence of the specified element from this list, 16.99/9.23 * if it is present. If this list does not contain the element, it is 16.99/9.23 * unchanged. More formally, removes the element with the lowest index 16.99/9.23 * i such that 16.99/9.23 * (o==null ? get(i)==null : o.equals(get(i))) 16.99/9.23 * (if such an element exists). Returns true if this list 16.99/9.23 * contained the specified element (or equivalently, if this list 16.99/9.23 * changed as a result of the call). 16.99/9.23 * 16.99/9.23 * @param o element to be removed from this list, if present 16.99/9.23 * @return true if this list contained the specified element 16.99/9.23 */ 16.99/9.23 public boolean remove(Object o) { 16.99/9.23 if (o==null) { 16.99/9.23 for (Entry e = header.next; e != header; e = e.next) { 16.99/9.23 if (e.element==null) { 16.99/9.23 remove(e); 16.99/9.23 return true; 16.99/9.23 } 16.99/9.23 } 16.99/9.23 } else { 16.99/9.23 for (Entry e = header.next; e != header; e = e.next) { 16.99/9.23 if (o.equals(e.element)) { 16.99/9.23 remove(e); 16.99/9.23 return true; 16.99/9.23 } 16.99/9.23 } 16.99/9.23 } 16.99/9.23 return false; 16.99/9.23 } 16.99/9.23 /** 16.99/9.23 * Removes all of the elements from this list. 16.99/9.23 */ 16.99/9.23 public void clear() { 16.99/9.23 Entry e = header.next; 16.99/9.23 while (e != header) { 16.99/9.23 Entry next = e.next; 16.99/9.23 e.next = e.previous = null; 16.99/9.23 e.element = null; 16.99/9.23 e = next; 16.99/9.23 } 16.99/9.23 header.next = header.previous = header; 16.99/9.23 size = 0; 16.99/9.23 modCount++; 16.99/9.23 } 16.99/9.23 16.99/9.23 16.99/9.23 // Positional Access Operations 16.99/9.23 16.99/9.23 /** 16.99/9.23 * Returns the element at the specified position in this list. 16.99/9.23 * 16.99/9.23 * @param index index of the element to return 16.99/9.23 * @return the element at the specified position in this list 16.99/9.23 * @throws IndexOutOfBoundsException {@inheritDoc} 16.99/9.23 */ 16.99/9.23 public E get(int index) { 16.99/9.23 return entry(index).element; 16.99/9.23 } 16.99/9.23 16.99/9.23 /** 16.99/9.23 * Replaces the element at the specified position in this list with the 16.99/9.23 * specified element. 16.99/9.23 * 16.99/9.23 * @param index index of the element to replace 16.99/9.23 * @param element element to be stored at the specified position 16.99/9.23 * @return the element previously at the specified position 16.99/9.23 * @throws IndexOutOfBoundsException {@inheritDoc} 16.99/9.23 */ 16.99/9.23 public E set(int index, E element) { 16.99/9.23 Entry e = entry(index); 16.99/9.23 E oldVal = e.element; 16.99/9.23 e.element = element; 16.99/9.23 return oldVal; 16.99/9.23 } 16.99/9.23 16.99/9.23 /** 16.99/9.23 * Inserts the specified element at the specified position in this list. 16.99/9.23 * Shifts the element currently at that position (if any) and any 16.99/9.23 * subsequent elements to the right (adds one to their indices). 16.99/9.23 * 16.99/9.23 * @param index index at which the specified element is to be inserted 16.99/9.23 * @param element element to be inserted 16.99/9.23 * @throws IndexOutOfBoundsException {@inheritDoc} 16.99/9.23 */ 16.99/9.23 public void add(int index, E element) { 16.99/9.23 addBefore(element, (index==size ? header : entry(index))); 16.99/9.23 } 16.99/9.23 16.99/9.23 /** 16.99/9.23 * Removes the element at the specified position in this list. Shifts any 16.99/9.23 * subsequent elements to the left (subtracts one from their indices). 16.99/9.23 * Returns the element that was removed from the list. 16.99/9.23 * 16.99/9.23 * @param index the index of the element to be removed 16.99/9.23 * @return the element previously at the specified position 16.99/9.23 * @throws IndexOutOfBoundsException {@inheritDoc} 16.99/9.23 */ 16.99/9.23 public E remove(int index) { 16.99/9.23 return remove(entry(index)); 16.99/9.23 } 16.99/9.23 16.99/9.23 /** 16.99/9.23 * Returns the indexed entry. 16.99/9.23 */ 16.99/9.23 private Entry entry(int index) { 16.99/9.23 if (index < 0 || index >= size) 16.99/9.23 throw new IndexOutOfBoundsException(); 16.99/9.23 Entry e = header; 16.99/9.23 if (index < (size >> 1)) { 16.99/9.23 for (int i = 0; i <= index; i++) 16.99/9.23 e = e.next; 16.99/9.23 } else { 16.99/9.23 for (int i = size; i > index; i--) 16.99/9.23 e = e.previous; 16.99/9.23 } 16.99/9.23 return e; 16.99/9.23 } 16.99/9.23 16.99/9.23 16.99/9.23 // Search Operations 16.99/9.23 16.99/9.23 /** 16.99/9.23 * Returns the index of the first occurrence of the specified element 16.99/9.23 * in this list, or -1 if this list does not contain the element. 16.99/9.23 * More formally, returns the lowest index i such that 16.99/9.23 * (o==null ? get(i)==null : o.equals(get(i))), 16.99/9.23 * or -1 if there is no such index. 16.99/9.23 * 16.99/9.23 * @param o element to search for 16.99/9.23 * @return the index of the first occurrence of the specified element in 16.99/9.23 * this list, or -1 if this list does not contain the element 16.99/9.23 */ 16.99/9.23 public int indexOf(Object o) { 16.99/9.23 int index = 0; 16.99/9.23 if (o==null) { 16.99/9.23 for (Entry e = header.next; e != header; e = e.next) { 16.99/9.23 if (e.element==null) 16.99/9.23 return index; 16.99/9.23 index++; 16.99/9.23 } 16.99/9.23 } else { 16.99/9.23 for (Entry e = header.next; e != header; e = e.next) { 16.99/9.23 if (o.equals(e.element)) 16.99/9.23 return index; 16.99/9.23 index++; 16.99/9.23 } 16.99/9.23 } 16.99/9.23 return -1; 16.99/9.23 } 16.99/9.23 16.99/9.23 /** 16.99/9.23 * Returns the index of the last occurrence of the specified element 16.99/9.23 * in this list, or -1 if this list does not contain the element. 16.99/9.23 * More formally, returns the highest index i such that 16.99/9.23 * (o==null ? get(i)==null : o.equals(get(i))), 16.99/9.23 * or -1 if there is no such index. 16.99/9.23 * 16.99/9.23 * @param o element to search for 16.99/9.23 * @return the index of the last occurrence of the specified element in 16.99/9.23 * this list, or -1 if this list does not contain the element 16.99/9.23 */ 16.99/9.23 public int lastIndexOf(Object o) { 16.99/9.23 int index = size; 16.99/9.23 if (o==null) { 16.99/9.23 for (Entry e = header.previous; e != header; e = e.previous) { 16.99/9.23 index--; 16.99/9.23 if (e.element==null) 16.99/9.23 return index; 16.99/9.23 } 16.99/9.23 } else { 16.99/9.23 for (Entry e = header.previous; e != header; e = e.previous) { 16.99/9.23 index--; 16.99/9.23 if (o.equals(e.element)) 16.99/9.23 return index; 16.99/9.23 } 16.99/9.23 } 16.99/9.23 return -1; 16.99/9.23 } 16.99/9.23 16.99/9.23 // Queue operations. 16.99/9.23 16.99/9.23 /** 16.99/9.23 * Retrieves, but does not remove, the head (first element) of this list. 16.99/9.23 * @return the head of this list, or null if this list is empty 16.99/9.23 * @since 1.5 16.99/9.23 */ 16.99/9.23 public E peek() { 16.99/9.23 if (size==0) 16.99/9.23 return null; 16.99/9.23 return getFirst(); 16.99/9.23 } 16.99/9.23 16.99/9.23 /** 16.99/9.23 * Retrieves, but does not remove, the head (first element) of this list. 16.99/9.23 * @return the head of this list 16.99/9.23 * @throws NoSuchElementException if this list is empty 16.99/9.23 * @since 1.5 16.99/9.23 */ 16.99/9.23 public E element() { 16.99/9.23 return getFirst(); 16.99/9.23 } 16.99/9.23 16.99/9.23 /** 16.99/9.23 * Retrieves and removes the head (first element) of this list 16.99/9.23 * @return the head of this list, or null if this list is empty 16.99/9.23 * @since 1.5 16.99/9.23 */ 16.99/9.23 public E poll() { 16.99/9.23 if (size==0) 16.99/9.23 return null; 16.99/9.23 return removeFirst(); 16.99/9.23 } 16.99/9.23 16.99/9.23 /** 16.99/9.23 * Retrieves and removes the head (first element) of this list. 16.99/9.23 * 16.99/9.23 * @return the head of this list 16.99/9.23 * @throws NoSuchElementException if this list is empty 16.99/9.23 * @since 1.5 16.99/9.23 */ 16.99/9.23 public E remove() { 16.99/9.23 return removeFirst(); 16.99/9.23 } 16.99/9.23 16.99/9.23 /** 16.99/9.23 * Adds the specified element as the tail (last element) of this list. 16.99/9.23 * 16.99/9.23 * @param e the element to add 16.99/9.23 * @return true (as specified by {@link Queue#offer}) 16.99/9.23 * @since 1.5 16.99/9.23 */ 16.99/9.23 public boolean offer(E e) { 16.99/9.23 return add(e); 16.99/9.23 } 16.99/9.23 16.99/9.23 // Deque operations 16.99/9.23 /** 16.99/9.23 * Inserts the specified element at the front of this list. 16.99/9.23 * 16.99/9.23 * @param e the element to insert 16.99/9.23 * @return true (as specified by {@link Deque#offerFirst}) 16.99/9.23 * @since 1.6 16.99/9.23 */ 16.99/9.23 public boolean offerFirst(E e) { 16.99/9.23 addFirst(e); 16.99/9.23 return true; 16.99/9.23 } 16.99/9.23 16.99/9.23 /** 16.99/9.23 * Inserts the specified element at the end of this list. 16.99/9.23 * 16.99/9.23 * @param e the element to insert 16.99/9.23 * @return true (as specified by {@link Deque#offerLast}) 16.99/9.23 * @since 1.6 16.99/9.23 */ 16.99/9.23 public boolean offerLast(E e) { 16.99/9.23 addLast(e); 16.99/9.23 return true; 16.99/9.23 } 16.99/9.23 16.99/9.23 /** 16.99/9.23 * Retrieves, but does not remove, the first element of this list, 16.99/9.23 * or returns null if this list is empty. 16.99/9.23 * 16.99/9.23 * @return the first element of this list, or null 16.99/9.23 * if this list is empty 16.99/9.23 * @since 1.6 16.99/9.23 */ 16.99/9.23 public E peekFirst() { 16.99/9.23 if (size==0) 16.99/9.23 return null; 16.99/9.23 return getFirst(); 16.99/9.23 } 16.99/9.23 16.99/9.23 /** 16.99/9.23 * Retrieves, but does not remove, the last element of this list, 16.99/9.23 * or returns null if this list is empty. 16.99/9.23 * 16.99/9.23 * @return the last element of this list, or null 16.99/9.23 * if this list is empty 16.99/9.23 * @since 1.6 16.99/9.23 */ 16.99/9.23 public E peekLast() { 16.99/9.23 if (size==0) 16.99/9.23 return null; 16.99/9.23 return getLast(); 16.99/9.23 } 16.99/9.23 16.99/9.23 /** 16.99/9.23 * Retrieves and removes the first element of this list, 16.99/9.23 * or returns null if this list is empty. 16.99/9.23 * 16.99/9.23 * @return the first element of this list, or null if 16.99/9.23 * this list is empty 16.99/9.23 * @since 1.6 16.99/9.23 */ 16.99/9.23 public E pollFirst() { 16.99/9.23 if (size==0) 16.99/9.23 return null; 16.99/9.23 return removeFirst(); 16.99/9.23 } 16.99/9.23 16.99/9.23 /** 16.99/9.23 * Retrieves and removes the last element of this list, 16.99/9.23 * or returns null if this list is empty. 16.99/9.23 * 16.99/9.23 * @return the last element of this list, or null if 16.99/9.23 * this list is empty 16.99/9.23 * @since 1.6 16.99/9.23 */ 16.99/9.23 public E pollLast() { 16.99/9.23 if (size==0) 16.99/9.23 return null; 16.99/9.23 return removeLast(); 16.99/9.23 } 16.99/9.23 16.99/9.23 /** 16.99/9.23 * Pushes an element onto the stack represented by this list. In other 16.99/9.23 * words, inserts the element at the front of this list. 16.99/9.23 * 16.99/9.23 *

This method is equivalent to {@link #addFirst}. 16.99/9.23 * 16.99/9.23 * @param e the element to push 16.99/9.23 * @since 1.6 16.99/9.23 */ 16.99/9.23 public void push(E e) { 16.99/9.23 addFirst(e); 16.99/9.23 } 16.99/9.23 16.99/9.23 /** 16.99/9.23 * Pops an element from the stack represented by this list. In other 16.99/9.23 * words, removes and returns the first element of this list. 16.99/9.23 * 16.99/9.23 *

This method is equivalent to {@link #removeFirst()}. 16.99/9.23 * 16.99/9.23 * @return the element at the front of this list (which is the top 16.99/9.23 * of the stack represented by this list) 16.99/9.23 * @throws NoSuchElementException if this list is empty 16.99/9.23 * @since 1.6 16.99/9.23 */ 16.99/9.23 public E pop() { 16.99/9.23 return removeFirst(); 16.99/9.23 } 16.99/9.23 16.99/9.23 /** 16.99/9.23 * Removes the first occurrence of the specified element in this 16.99/9.23 * list (when traversing the list from head to tail). If the list 16.99/9.23 * does not contain the element, it is unchanged. 16.99/9.23 * 16.99/9.23 * @param o element to be removed from this list, if present 16.99/9.23 * @return true if the list contained the specified element 16.99/9.23 * @since 1.6 16.99/9.23 */ 16.99/9.23 public boolean removeFirstOccurrence(Object o) { 16.99/9.23 return remove(o); 16.99/9.23 } 16.99/9.23 16.99/9.23 /** 16.99/9.23 * Removes the last occurrence of the specified element in this 16.99/9.23 * list (when traversing the list from head to tail). If the list 16.99/9.23 * does not contain the element, it is unchanged. 16.99/9.23 * 16.99/9.23 * @param o element to be removed from this list, if present 16.99/9.23 * @return true if the list contained the specified element 16.99/9.23 * @since 1.6 16.99/9.23 */ 16.99/9.23 public boolean removeLastOccurrence(Object o) { 16.99/9.23 if (o==null) { 16.99/9.23 for (Entry e = header.previous; e != header; e = e.previous) { 16.99/9.23 if (e.element==null) { 16.99/9.23 remove(e); 16.99/9.23 return true; 16.99/9.23 } 16.99/9.23 } 16.99/9.23 } else { 16.99/9.23 for (Entry e = header.previous; e != header; e = e.previous) { 16.99/9.23 if (o.equals(e.element)) { 16.99/9.23 remove(e); 16.99/9.23 return true; 16.99/9.23 } 16.99/9.23 } 16.99/9.23 } 16.99/9.23 return false; 16.99/9.23 } 16.99/9.23 16.99/9.23 /** 16.99/9.23 * Returns a list-iterator of the elements in this list (in proper 16.99/9.23 * sequence), starting at the specified position in the list. 16.99/9.23 * Obeys the general contract of List.listIterator(int).

16.99/9.23 * 16.99/9.23 * The list-iterator is fail-fast: if the list is structurally 16.99/9.23 * modified at any time after the Iterator is created, in any way except 16.99/9.23 * through the list-iterator's own remove or add 16.99/9.23 * methods, the list-iterator will throw a 16.99/9.23 * ConcurrentModificationException. Thus, in the face of 16.99/9.23 * concurrent modification, the iterator fails quickly and cleanly, rather 16.99/9.23 * than risking arbitrary, non-deterministic behavior at an undetermined 16.99/9.23 * time in the future. 16.99/9.23 * 16.99/9.23 * @param index index of the first element to be returned from the 16.99/9.23 * list-iterator (by a call to next) 16.99/9.23 * @return a ListIterator of the elements in this list (in proper 16.99/9.23 * sequence), starting at the specified position in the list 16.99/9.23 * @throws IndexOutOfBoundsException {@inheritDoc} 16.99/9.23 * @see List#listIterator(int) 16.99/9.23 */ 16.99/9.23 public ListIterator listIterator(int index) { 16.99/9.23 return new ListItr(index); 16.99/9.23 } 16.99/9.23 16.99/9.23 private class ListItr implements ListIterator { 16.99/9.23 private Entry lastReturned = header; 16.99/9.23 private Entry next; 16.99/9.23 private int nextIndex; 16.99/9.23 private int expectedModCount = modCount; 16.99/9.23 16.99/9.23 ListItr(int index) { 16.99/9.23 if (index < 0 || index > size) 16.99/9.23 throw new IndexOutOfBoundsException(); 16.99/9.23 if (index < (size >> 1)) { 16.99/9.23 next = header.next; 16.99/9.23 for (nextIndex=0; nextIndexindex; nextIndex--) 16.99/9.23 next = next.previous; 16.99/9.23 } 16.99/9.23 } 16.99/9.23 16.99/9.23 public boolean hasNext() { 16.99/9.23 return nextIndex != size; 16.99/9.23 } 16.99/9.23 16.99/9.23 public E next() { 16.99/9.23 checkForComodification(); 16.99/9.23 if (nextIndex == size) 16.99/9.23 throw new NoSuchElementException(); 16.99/9.23 16.99/9.23 lastReturned = next; 16.99/9.23 next = next.next; 16.99/9.23 nextIndex++; 16.99/9.23 return lastReturned.element; 16.99/9.23 } 16.99/9.23 16.99/9.23 public boolean hasPrevious() { 16.99/9.23 return nextIndex != 0; 16.99/9.23 } 16.99/9.23 16.99/9.23 public E previous() { 16.99/9.23 if (nextIndex == 0) 16.99/9.23 throw new NoSuchElementException(); 16.99/9.23 16.99/9.23 lastReturned = next = next.previous; 16.99/9.23 nextIndex--; 16.99/9.23 checkForComodification(); 16.99/9.23 return lastReturned.element; 16.99/9.23 } 16.99/9.23 16.99/9.23 public int nextIndex() { 16.99/9.23 return nextIndex; 16.99/9.23 } 16.99/9.23 16.99/9.23 public int previousIndex() { 16.99/9.23 return nextIndex-1; 16.99/9.23 } 16.99/9.23 16.99/9.23 public void remove() { 16.99/9.23 checkForComodification(); 16.99/9.23 Entry lastNext = lastReturned.next; 16.99/9.23 try { 16.99/9.23 LinkedList.this.remove(lastReturned); 16.99/9.23 } catch (NoSuchElementException e) { 16.99/9.23 throw new IllegalStateException(); 16.99/9.23 } 16.99/9.23 if (next==lastReturned) 16.99/9.23 next = lastNext; 16.99/9.23 else 16.99/9.23 nextIndex--; 16.99/9.23 lastReturned = header; 16.99/9.23 expectedModCount++; 16.99/9.23 } 16.99/9.23 16.99/9.23 public void set(E e) { 16.99/9.23 if (lastReturned == header) 16.99/9.23 throw new IllegalStateException(); 16.99/9.23 checkForComodification(); 16.99/9.23 lastReturned.element = e; 16.99/9.23 } 16.99/9.23 16.99/9.23 public void add(E e) { 16.99/9.23 checkForComodification(); 16.99/9.23 lastReturned = header; 16.99/9.23 addBefore(e, next); 16.99/9.23 nextIndex++; 16.99/9.23 expectedModCount++; 16.99/9.23 } 16.99/9.23 16.99/9.23 final void checkForComodification() { 16.99/9.23 if (modCount != expectedModCount) 16.99/9.23 throw new ConcurrentModificationException(); 16.99/9.23 } 16.99/9.23 } 16.99/9.23 16.99/9.23 private static class Entry { 16.99/9.23 E element; 16.99/9.23 Entry next; 16.99/9.23 Entry previous; 16.99/9.23 16.99/9.23 Entry(E element, Entry next, Entry previous) { 16.99/9.23 this.element = element; 16.99/9.23 this.next = next; 16.99/9.23 this.previous = previous; 16.99/9.23 } 16.99/9.23 } 16.99/9.23 16.99/9.23 private Entry addBefore(E e, Entry entry) { 16.99/9.23 Entry newEntry = new Entry(e, entry, entry.previous); 16.99/9.23 newEntry.previous.next = newEntry; 16.99/9.23 newEntry.next.previous = newEntry; 16.99/9.23 size++; 16.99/9.23 modCount++; 16.99/9.23 return newEntry; 16.99/9.23 } 16.99/9.23 16.99/9.23 private E remove(Entry e) { 16.99/9.23 if (e == header) 16.99/9.23 throw new NoSuchElementException(); 16.99/9.23 16.99/9.23 E result = e.element; 16.99/9.23 e.previous.next = e.next; 16.99/9.23 e.next.previous = e.previous; 16.99/9.23 e.next = e.previous = null; 16.99/9.23 e.element = null; 16.99/9.23 size--; 16.99/9.23 modCount++; 16.99/9.23 return result; 16.99/9.23 } 16.99/9.23 16.99/9.23 /** 16.99/9.23 * @since 1.6 16.99/9.23 */ 16.99/9.23 public Iterator descendingIterator() { 16.99/9.23 return new DescendingIterator(); 16.99/9.23 } 16.99/9.23 16.99/9.23 /** Adapter to provide descending iterators via ListItr.previous */ 16.99/9.23 private class DescendingIterator implements Iterator { 16.99/9.23 final ListItr itr = new ListItr(size()); 16.99/9.23 public boolean hasNext() { 16.99/9.23 return itr.hasPrevious(); 16.99/9.23 } 16.99/9.23 public E next() { 16.99/9.23 return itr.previous(); 16.99/9.23 } 16.99/9.23 public void remove() { 16.99/9.23 itr.remove(); 16.99/9.23 } 16.99/9.23 } 16.99/9.23 16.99/9.23 /** 16.99/9.23 * Returns an array containing all of the elements in this list 16.99/9.23 * in proper sequence (from first to last element). 16.99/9.23 * 16.99/9.23 *

The returned array will be "safe" in that no references to it are 16.99/9.23 * maintained by this list. (In other words, this method must allocate 16.99/9.23 * a new array). The caller is thus free to modify the returned array. 16.99/9.23 * 16.99/9.23 *

This method acts as bridge between array-based and collection-based 16.99/9.23 * APIs. 16.99/9.23 * 16.99/9.23 * @return an array containing all of the elements in this list 16.99/9.23 * in proper sequence 16.99/9.23 */ 16.99/9.23 public Object[] toArray() { 16.99/9.23 Object[] result = new Object[size]; 16.99/9.23 int i = 0; 16.99/9.23 for (Entry e = header.next; e != header; e = e.next) 16.99/9.23 result[i++] = e.element; 16.99/9.23 return result; 16.99/9.23 } 16.99/9.23 16.99/9.23 private static final long serialVersionUID = 876323262645176354L; 16.99/9.23 } 16.99/9.23 16.99/9.23 16.99/9.23 /* 16.99/9.23 * Copyright 1997-2007 Sun Microsystems, Inc. All Rights Reserved. 16.99/9.23 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 16.99/9.23 * 16.99/9.23 * This code is free software; you can redistribute it and/or modify it 16.99/9.23 * under the terms of the GNU General Public License version 2 only, as 16.99/9.23 * published by the Free Software Foundation. Sun designates this 16.99/9.23 * particular file as subject to the "Classpath" exception as provided 16.99/9.23 * by Sun in the LICENSE file that accompanied this code. 16.99/9.23 * 16.99/9.23 * This code is distributed in the hope that it will be useful, but WITHOUT 16.99/9.23 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or 16.99/9.23 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License 16.99/9.23 * version 2 for more details (a copy is included in the LICENSE file that 16.99/9.23 * accompanied this code). 16.99/9.23 * 16.99/9.23 * You should have received a copy of the GNU General Public License version 16.99/9.23 * 2 along with this work; if not, write to the Free Software Foundation, 16.99/9.23 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. 16.99/9.23 * 16.99/9.23 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara, 16.99/9.23 * CA 95054 USA or visit www.sun.com if you need additional information or 16.99/9.23 * have any questions. 16.99/9.23 */ 16.99/9.23 16.99/9.23 package javaUtilEx; 16.99/9.23 16.99/9.23 /** 16.99/9.23 * An iterator for lists that allows the programmer 16.99/9.23 * to traverse the list in either direction, modify 16.99/9.23 * the list during iteration, and obtain the iterator's 16.99/9.23 * current position in the list. A {@code ListIterator} 16.99/9.23 * has no current element; its cursor position always 16.99/9.23 * lies between the element that would be returned by a call 16.99/9.23 * to {@code previous()} and the element that would be 16.99/9.23 * returned by a call to {@code next()}. 16.99/9.23 * An iterator for a list of length {@code n} has {@code n+1} possible 16.99/9.23 * cursor positions, as illustrated by the carets ({@code ^}) below: 16.99/9.23 *

16.99/9.23	 *                      Element(0)   Element(1)   Element(2)   ... Element(n-1)
16.99/9.23	 * cursor positions:  ^            ^            ^            ^                  ^
16.99/9.23	 * 
16.99/9.23 * Note that the {@link #remove} and {@link #set(Object)} methods are 16.99/9.23 * not defined in terms of the cursor position; they are defined to 16.99/9.23 * operate on the last element returned by a call to {@link #next} or 16.99/9.23 * {@link #previous()}. 16.99/9.23 * 16.99/9.23 *

This interface is a member of the 16.99/9.23 * 16.99/9.23 * Java Collections Framework. 16.99/9.23 * 16.99/9.23 * @author Josh Bloch 16.99/9.23 * @see Collection 16.99/9.23 * @see List 16.99/9.23 * @see Iterator 16.99/9.23 * @see Enumeration 16.99/9.23 * @see List#listIterator() 16.99/9.23 * @since 1.2 16.99/9.23 */ 16.99/9.23 public interface ListIterator extends Iterator { 16.99/9.23 // Query Operations 16.99/9.23 16.99/9.23 /** 16.99/9.23 * Returns {@code true} if this list iterator has more elements when 16.99/9.23 * traversing the list in the forward direction. (In other words, 16.99/9.23 * returns {@code true} if {@link #next} would return an element rather 16.99/9.23 * than throwing an exception.) 16.99/9.23 * 16.99/9.23 * @return {@code true} if the list iterator has more elements when 16.99/9.23 * traversing the list in the forward direction 16.99/9.23 */ 16.99/9.23 boolean hasNext(); 16.99/9.23 16.99/9.23 /** 16.99/9.23 * Returns the next element in the list and advances the cursor position. 16.99/9.23 * This method may be called repeatedly to iterate through the list, 16.99/9.23 * or intermixed with calls to {@link #previous} to go back and forth. 16.99/9.23 * (Note that alternating calls to {@code next} and {@code previous} 16.99/9.23 * will return the same element repeatedly.) 16.99/9.23 * 16.99/9.23 * @return the next element in the list 16.99/9.23 * @throws NoSuchElementException if the iteration has no next element 16.99/9.23 */ 16.99/9.23 E next(); 16.99/9.23 16.99/9.23 /** 16.99/9.23 * Returns {@code true} if this list iterator has more elements when 16.99/9.23 * traversing the list in the reverse direction. (In other words, 16.99/9.23 * returns {@code true} if {@link #previous} would return an element 16.99/9.23 * rather than throwing an exception.) 16.99/9.23 * 16.99/9.23 * @return {@code true} if the list iterator has more elements when 16.99/9.23 * traversing the list in the reverse direction 16.99/9.23 */ 16.99/9.23 boolean hasPrevious(); 16.99/9.23 16.99/9.23 /** 16.99/9.23 * Returns the previous element in the list and moves the cursor 16.99/9.23 * position backwards. This method may be called repeatedly to 16.99/9.23 * iterate through the list backwards, or intermixed with calls to 16.99/9.23 * {@link #next} to go back and forth. (Note that alternating calls 16.99/9.23 * to {@code next} and {@code previous} will return the same 16.99/9.23 * element repeatedly.) 16.99/9.23 * 16.99/9.23 * @return the previous element in the list 16.99/9.23 * @throws NoSuchElementException if the iteration has no previous 16.99/9.23 * element 16.99/9.23 */ 16.99/9.23 E previous(); 16.99/9.23 16.99/9.23 /** 16.99/9.23 * Returns the index of the element that would be returned by a 16.99/9.23 * subsequent call to {@link #next}. (Returns list size if the list 16.99/9.23 * iterator is at the end of the list.) 16.99/9.23 * 16.99/9.23 * @return the index of the element that would be returned by a 16.99/9.23 * subsequent call to {@code next}, or list size if the list 16.99/9.23 * iterator is at the end of the list 16.99/9.23 */ 16.99/9.23 int nextIndex(); 16.99/9.23 16.99/9.23 /** 16.99/9.23 * Returns the index of the element that would be returned by a 16.99/9.23 * subsequent call to {@link #previous}. (Returns -1 if the list 16.99/9.23 * iterator is at the beginning of the list.) 16.99/9.23 * 16.99/9.23 * @return the index of the element that would be returned by a 16.99/9.23 * subsequent call to {@code previous}, or -1 if the list 16.99/9.23 * iterator is at the beginning of the list 16.99/9.23 */ 16.99/9.23 int previousIndex(); 16.99/9.23 16.99/9.23 16.99/9.23 // Modification Operations 16.99/9.23 16.99/9.23 /** 16.99/9.23 * Removes from the list the last element that was returned by {@link 16.99/9.23 * #next} or {@link #previous} (optional operation). This call can 16.99/9.23 * only be made once per call to {@code next} or {@code previous}. 16.99/9.23 * It can be made only if {@link #add} has not been 16.99/9.23 * called after the last call to {@code next} or {@code previous}. 16.99/9.23 * 16.99/9.23 * @throws UnsupportedOperationException if the {@code remove} 16.99/9.23 * operation is not supported by this list iterator 16.99/9.23 * @throws IllegalStateException if neither {@code next} nor 16.99/9.23 * {@code previous} have been called, or {@code remove} or 16.99/9.23 * {@code add} have been called after the last call to 16.99/9.23 * {@code next} or {@code previous} 16.99/9.23 */ 16.99/9.23 void remove(); 16.99/9.23 16.99/9.23 /** 16.99/9.23 * Replaces the last element returned by {@link #next} or 16.99/9.23 * {@link #previous} with the specified element (optional operation). 16.99/9.23 * This call can be made only if neither {@link #remove} nor {@link 16.99/9.23 * #add} have been called after the last call to {@code next} or 16.99/9.23 * {@code previous}. 16.99/9.23 * 16.99/9.23 * @param e the element with which to replace the last element returned by 16.99/9.23 * {@code next} or {@code previous} 16.99/9.23 * @throws UnsupportedOperationException if the {@code set} operation 16.99/9.23 * is not supported by this list iterator 16.99/9.23 * @throws ClassCastException if the class of the specified element 16.99/9.23 * prevents it from being added to this list 16.99/9.23 * @throws IllegalArgumentException if some aspect of the specified 16.99/9.23 * element prevents it from being added to this list 16.99/9.23 * @throws IllegalStateException if neither {@code next} nor 16.99/9.23 * {@code previous} have been called, or {@code remove} or 16.99/9.23 * {@code add} have been called after the last call to 16.99/9.23 * {@code next} or {@code previous} 16.99/9.23 */ 16.99/9.23 void set(E e); 16.99/9.23 16.99/9.23 /** 16.99/9.23 * Inserts the specified element into the list (optional operation). 16.99/9.23 * The element is inserted immediately before the next element that 16.99/9.23 * would be returned by {@link #next}, if any, and after the next 16.99/9.23 * element that would be returned by {@link #previous}, if any. (If the 16.99/9.23 * list contains no elements, the new element becomes the sole element 16.99/9.23 * on the list.) The new element is inserted before the implicit 16.99/9.23 * cursor: a subsequent call to {@code next} would be unaffected, and a 16.99/9.23 * subsequent call to {@code previous} would return the new element. 16.99/9.23 * (This call increases by one the value that would be returned by a 16.99/9.23 * call to {@code nextIndex} or {@code previousIndex}.) 16.99/9.23 * 16.99/9.23 * @param e the element to insert 16.99/9.23 * @throws UnsupportedOperationException if the {@code add} method is 16.99/9.23 * not supported by this list iterator 16.99/9.23 * @throws ClassCastException if the class of the specified element 16.99/9.23 * prevents it from being added to this list 16.99/9.23 * @throws IllegalArgumentException if some aspect of this element 16.99/9.23 * prevents it from being added to this list 16.99/9.23 */ 16.99/9.23 void add(E e); 16.99/9.23 } 16.99/9.23 16.99/9.23 16.99/9.23 /* 16.99/9.23 * Copyright 1997-2007 Sun Microsystems, Inc. All Rights Reserved. 16.99/9.23 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 16.99/9.23 * 16.99/9.23 * This code is free software; you can redistribute it and/or modify it 16.99/9.23 * under the terms of the GNU General Public License version 2 only, as 16.99/9.23 * published by the Free Software Foundation. Sun designates this 16.99/9.23 * particular file as subject to the "Classpath" exception as provided 16.99/9.23 * by Sun in the LICENSE file that accompanied this code. 16.99/9.23 * 16.99/9.23 * This code is distributed in the hope that it will be useful, but WITHOUT 16.99/9.23 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or 16.99/9.23 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License 16.99/9.23 * version 2 for more details (a copy is included in the LICENSE file that 16.99/9.23 * accompanied this code). 16.99/9.23 * 16.99/9.23 * You should have received a copy of the GNU General Public License version 16.99/9.23 * 2 along with this work; if not, write to the Free Software Foundation, 16.99/9.23 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. 16.99/9.23 * 16.99/9.23 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara, 16.99/9.23 * CA 95054 USA or visit www.sun.com if you need additional information or 16.99/9.23 * have any questions. 16.99/9.23 */ 16.99/9.23 16.99/9.23 package javaUtilEx; 16.99/9.23 16.99/9.23 /** 16.99/9.23 * An ordered collection (also known as a sequence). The user of this 16.99/9.23 * interface has precise control over where in the list each element is 16.99/9.23 * inserted. The user can access elements by their integer index (position in 16.99/9.23 * the list), and search for elements in the list.

16.99/9.23 * 16.99/9.23 * Unlike sets, lists typically allow duplicate elements. More formally, 16.99/9.23 * lists typically allow pairs of elements e1 and e2 16.99/9.23 * such that e1.equals(e2), and they typically allow multiple 16.99/9.23 * null elements if they allow null elements at all. It is not inconceivable 16.99/9.23 * that someone might wish to implement a list that prohibits duplicates, by 16.99/9.23 * throwing runtime exceptions when the user attempts to insert them, but we 16.99/9.23 * expect this usage to be rare.

16.99/9.23 * 16.99/9.23 * The List interface places additional stipulations, beyond those 16.99/9.23 * specified in the Collection interface, on the contracts of the 16.99/9.23 * iterator, add, remove, equals, and 16.99/9.23 * hashCode methods. Declarations for other inherited methods are 16.99/9.23 * also included here for convenience.

16.99/9.23 * 16.99/9.23 * The List interface provides four methods for positional (indexed) 16.99/9.23 * access to list elements. Lists (like Java arrays) are zero based. Note 16.99/9.23 * that these operations may execute in time proportional to the index value 16.99/9.23 * for some implementations (the LinkedList class, for 16.99/9.23 * example). Thus, iterating over the elements in a list is typically 16.99/9.23 * preferable to indexing through it if the caller does not know the 16.99/9.23 * implementation.

16.99/9.23 * 16.99/9.23 * The List interface provides a special iterator, called a 16.99/9.23 * ListIterator, that allows element insertion and replacement, and 16.99/9.23 * bidirectional access in addition to the normal operations that the 16.99/9.23 * Iterator interface provides. A method is provided to obtain a 16.99/9.23 * list iterator that starts at a specified position in the list.

16.99/9.23 * 16.99/9.23 * The List interface provides two methods to search for a specified 16.99/9.23 * object. From a performance standpoint, these methods should be used with 16.99/9.23 * caution. In many implementations they will perform costly linear 16.99/9.23 * searches.

16.99/9.23 * 16.99/9.23 * The List interface provides two methods to efficiently insert and 16.99/9.23 * remove multiple elements at an arbitrary point in the list.

16.99/9.23 * 16.99/9.23 * Note: While it is permissible for lists to contain themselves as elements, 16.99/9.23 * extreme caution is advised: the equals and hashCode 16.99/9.23 * methods are no longer well defined on such a list. 16.99/9.23 * 16.99/9.23 *

Some list implementations have restrictions on the elements that 16.99/9.23 * they may contain. For example, some implementations prohibit null elements, 16.99/9.23 * and some have restrictions on the types of their elements. Attempting to 16.99/9.23 * add an ineligible element throws an unchecked exception, typically 16.99/9.23 * NullPointerException or ClassCastException. Attempting 16.99/9.23 * to query the presence of an ineligible element may throw an exception, 16.99/9.23 * or it may simply return false; some implementations will exhibit the former 16.99/9.23 * behavior and some will exhibit the latter. More generally, attempting an 16.99/9.23 * operation on an ineligible element whose completion would not result in 16.99/9.23 * the insertion of an ineligible element into the list may throw an 16.99/9.23 * exception or it may succeed, at the option of the implementation. 16.99/9.23 * Such exceptions are marked as "optional" in the specification for this 16.99/9.23 * interface. 16.99/9.23 * 16.99/9.23 *

This interface is a member of the 16.99/9.23 * 16.99/9.23 * Java Collections Framework. 16.99/9.23 * 16.99/9.23 * @author Josh Bloch 16.99/9.23 * @author Neal Gafter 16.99/9.23 * @see Collection 16.99/9.23 * @see Set 16.99/9.23 * @see ArrayList 16.99/9.23 * @see LinkedList 16.99/9.23 * @see Vector 16.99/9.23 * @see Arrays#asList(Object[]) 16.99/9.23 * @see Collections#nCopies(int, Object) 16.99/9.23 * @see Collections#EMPTY_LIST 16.99/9.23 * @see AbstractList 16.99/9.23 * @see AbstractSequentialList 16.99/9.23 * @since 1.2 16.99/9.23 */ 16.99/9.23 16.99/9.23 public interface List extends Collection { 16.99/9.23 // Query Operations 16.99/9.23 16.99/9.23 /** 16.99/9.23 * Returns the number of elements in this list. If this list contains 16.99/9.23 * more than Integer.MAX_VALUE elements, returns 16.99/9.23 * Integer.MAX_VALUE. 16.99/9.23 * 16.99/9.23 * @return the number of elements in this list 16.99/9.23 */ 16.99/9.23 int size(); 16.99/9.23 16.99/9.23 /** 16.99/9.23 * Returns true if this list contains no elements. 16.99/9.23 * 16.99/9.23 * @return true if this list contains no elements 16.99/9.23 */ 16.99/9.23 boolean isEmpty(); 16.99/9.23 16.99/9.23 /** 16.99/9.23 * Returns true if this list contains the specified element. 16.99/9.23 * More formally, returns true if and only if this list contains 16.99/9.23 * at least one element e such that 16.99/9.23 * (o==null ? e==null : o.equals(e)). 16.99/9.23 * 16.99/9.23 * @param o element whose presence in this list is to be tested 16.99/9.23 * @return true if this list contains the specified element 16.99/9.23 * @throws ClassCastException if the type of the specified element 16.99/9.23 * is incompatible with this list (optional) 16.99/9.23 * @throws NullPointerException if the specified element is null and this 16.99/9.23 * list does not permit null elements (optional) 16.99/9.23 */ 16.99/9.23 boolean contains(Object o); 16.99/9.23 16.99/9.23 /** 16.99/9.23 * Returns an iterator over the elements in this list in proper sequence. 16.99/9.23 * 16.99/9.23 * @return an iterator over the elements in this list in proper sequence 16.99/9.23 */ 16.99/9.23 Iterator iterator(); 16.99/9.23 16.99/9.23 // Modification Operations 16.99/9.23 16.99/9.23 /** 16.99/9.23 * Appends the specified element to the end of this list (optional 16.99/9.23 * operation). 16.99/9.23 * 16.99/9.23 *

Lists that support this operation may place limitations on what 16.99/9.23 * elements may be added to this list. In particular, some 16.99/9.23 * lists will refuse to add null elements, and others will impose 16.99/9.23 * restrictions on the type of elements that may be added. List 16.99/9.23 * classes should clearly specify in their documentation any restrictions 16.99/9.23 * on what elements may be added. 16.99/9.23 * 16.99/9.23 * @param e element to be appended to this list 16.99/9.23 * @return true (as specified by {@link Collection#add}) 16.99/9.23 * @throws UnsupportedOperationException if the add operation 16.99/9.23 * is not supported by this list 16.99/9.23 * @throws ClassCastException if the class of the specified element 16.99/9.23 * prevents it from being added to this list 16.99/9.23 * @throws NullPointerException if the specified element is null and this 16.99/9.23 * list does not permit null elements 16.99/9.23 * @throws IllegalArgumentException if some property of this element 16.99/9.23 * prevents it from being added to this list 16.99/9.23 */ 16.99/9.23 boolean add(E e); 16.99/9.23 16.99/9.23 /** 16.99/9.23 * Removes the first occurrence of the specified element from this list, 16.99/9.23 * if it is present (optional operation). If this list does not contain 16.99/9.23 * the element, it is unchanged. More formally, removes the element with 16.99/9.23 * the lowest index i such that 16.99/9.23 * (o==null ? get(i)==null : o.equals(get(i))) 16.99/9.23 * (if such an element exists). Returns true if this list 16.99/9.23 * contained the specified element (or equivalently, if this list changed 16.99/9.23 * as a result of the call). 16.99/9.23 * 16.99/9.23 * @param o element to be removed from this list, if present 16.99/9.23 * @return true if this list contained the specified element 16.99/9.23 * @throws ClassCastException if the type of the specified element 16.99/9.23 * is incompatible with this list (optional) 16.99/9.23 * @throws NullPointerException if the specified element is null and this 16.99/9.23 * list does not permit null elements (optional) 16.99/9.23 * @throws UnsupportedOperationException if the remove operation 16.99/9.23 * is not supported by this list 16.99/9.23 */ 16.99/9.23 boolean remove(Object o); 16.99/9.23 16.99/9.23 16.99/9.23 // Bulk Modification Operations 16.99/9.23 16.99/9.23 /** 16.99/9.23 * Returns true if this list contains all of the elements of the 16.99/9.23 * specified collection. 16.99/9.23 * 16.99/9.23 * @param c collection to be checked for containment in this list 16.99/9.23 * @return true if this list contains all of the elements of the 16.99/9.23 * specified collection 16.99/9.23 * @throws ClassCastException if the types of one or more elements 16.99/9.23 * in the specified collection are incompatible with this 16.99/9.23 * list (optional) 16.99/9.23 * @throws NullPointerException if the specified collection contains one 16.99/9.23 * or more null elements and this list does not permit null 16.99/9.23 * elements (optional), or if the specified collection is null 16.99/9.23 * @see #contains(Object) 16.99/9.23 */ 16.99/9.23 boolean containsAll(Collection c); 16.99/9.23 16.99/9.23 /** 16.99/9.23 * Appends all of the elements in the specified collection to the end of 16.99/9.23 * this list, in the order that they are returned by the specified 16.99/9.23 * collection's iterator (optional operation). The behavior of this 16.99/9.23 * operation is undefined if the specified collection is modified while 16.99/9.23 * the operation is in progress. (Note that this will occur if the 16.99/9.23 * specified collection is this list, and it's nonempty.) 16.99/9.23 * 16.99/9.23 * @param c collection containing elements to be added to this list 16.99/9.23 * @return true if this list changed as a result of the call 16.99/9.23 * @throws UnsupportedOperationException if the addAll operation 16.99/9.23 * is not supported by this list 16.99/9.23 * @throws ClassCastException if the class of an element of the specified 16.99/9.23 * collection prevents it from being added to this list 16.99/9.23 * @throws NullPointerException if the specified collection contains one 16.99/9.23 * or more null elements and this list does not permit null 16.99/9.23 * elements, or if the specified collection is null 16.99/9.23 * @throws IllegalArgumentException if some property of an element of the 16.99/9.23 * specified collection prevents it from being added to this list 16.99/9.23 * @see #add(Object) 16.99/9.23 */ 16.99/9.23 boolean addAll(Collection c); 16.99/9.23 16.99/9.23 /** 16.99/9.23 * Inserts all of the elements in the specified collection into this 16.99/9.23 * list at the specified position (optional operation). Shifts the 16.99/9.23 * element currently at that position (if any) and any subsequent 16.99/9.23 * elements to the right (increases their indices). The new elements 16.99/9.23 * will appear in this list in the order that they are returned by the 16.99/9.23 * specified collection's iterator. The behavior of this operation is 16.99/9.23 * undefined if the specified collection is modified while the 16.99/9.23 * operation is in progress. (Note that this will occur if the specified 16.99/9.23 * collection is this list, and it's nonempty.) 16.99/9.23 * 16.99/9.23 * @param index index at which to insert the first element from the 16.99/9.23 * specified collection 16.99/9.23 * @param c collection containing elements to be added to this list 16.99/9.23 * @return true if this list changed as a result of the call 16.99/9.23 * @throws UnsupportedOperationException if the addAll operation 16.99/9.23 * is not supported by this list 16.99/9.23 * @throws ClassCastException if the class of an element of the specified 16.99/9.23 * collection prevents it from being added to this list 16.99/9.23 * @throws NullPointerException if the specified collection contains one 16.99/9.23 * or more null elements and this list does not permit null 16.99/9.23 * elements, or if the specified collection is null 16.99/9.23 * @throws IllegalArgumentException if some property of an element of the 16.99/9.23 * specified collection prevents it from being added to this list 16.99/9.23 * @throws IndexOutOfBoundsException if the index is out of range 16.99/9.23 * (index < 0 || index > size()) 16.99/9.23 */ 16.99/9.23 boolean addAll(int index, Collection c); 16.99/9.23 16.99/9.23 /** 16.99/9.23 * Removes from this list all of its elements that are contained in the 16.99/9.23 * specified collection (optional operation). 16.99/9.23 * 16.99/9.23 * @param c collection containing elements to be removed from this list 16.99/9.23 * @return true if this list changed as a result of the call 16.99/9.23 * @throws UnsupportedOperationException if the removeAll operation 16.99/9.23 * is not supported by this list 16.99/9.23 * @throws ClassCastException if the class of an element of this list 16.99/9.23 * is incompatible with the specified collection (optional) 16.99/9.23 * @throws NullPointerException if this list contains a null element and the 16.99/9.23 * specified collection does not permit null elements (optional), 16.99/9.23 * or if the specified collection is null 16.99/9.23 * @see #remove(Object) 16.99/9.23 * @see #contains(Object) 16.99/9.23 */ 16.99/9.23 boolean removeAll(Collection c); 16.99/9.23 16.99/9.23 /** 16.99/9.23 * Retains only the elements in this list that are contained in the 16.99/9.23 * specified collection (optional operation). In other words, removes 16.99/9.23 * from this list all of its elements that are not contained in the 16.99/9.23 * specified collection. 16.99/9.23 * 16.99/9.23 * @param c collection containing elements to be retained in this list 16.99/9.23 * @return true if this list changed as a result of the call 16.99/9.23 * @throws UnsupportedOperationException if the retainAll operation 16.99/9.23 * is not supported by this list 16.99/9.23 * @throws ClassCastException if the class of an element of this list 16.99/9.23 * is incompatible with the specified collection (optional) 16.99/9.23 * @throws NullPointerException if this list contains a null element and the 16.99/9.23 * specified collection does not permit null elements (optional), 16.99/9.23 * or if the specified collection is null 16.99/9.23 * @see #remove(Object) 16.99/9.23 * @see #contains(Object) 16.99/9.23 */ 16.99/9.23 boolean retainAll(Collection c); 16.99/9.23 16.99/9.23 /** 16.99/9.23 * Removes all of the elements from this list (optional operation). 16.99/9.23 * The list will be empty after this call returns. 16.99/9.23 * 16.99/9.23 * @throws UnsupportedOperationException if the clear operation 16.99/9.23 * is not supported by this list 16.99/9.23 */ 16.99/9.23 void clear(); 16.99/9.23 16.99/9.23 16.99/9.23 // Comparison and hashing 16.99/9.23 16.99/9.23 /** 16.99/9.23 * Compares the specified object with this list for equality. Returns 16.99/9.23 * true if and only if the specified object is also a list, both 16.99/9.23 * lists have the same size, and all corresponding pairs of elements in 16.99/9.23 * the two lists are equal. (Two elements e1 and 16.99/9.23 * e2 are equal if (e1==null ? e2==null : 16.99/9.23 * e1.equals(e2)).) In other words, two lists are defined to be 16.99/9.23 * equal if they contain the same elements in the same order. This 16.99/9.23 * definition ensures that the equals method works properly across 16.99/9.23 * different implementations of the List interface. 16.99/9.23 * 16.99/9.23 * @param o the object to be compared for equality with this list 16.99/9.23 * @return true if the specified object is equal to this list 16.99/9.23 */ 16.99/9.23 boolean equals(Object o); 16.99/9.23 16.99/9.23 /** 16.99/9.23 * Returns the hash code value for this list. The hash code of a list 16.99/9.23 * is defined to be the result of the following calculation: 16.99/9.23 *

16.99/9.23	     *  int hashCode = 1;
16.99/9.23	     *  for (E e : list)
16.99/9.23	     *      hashCode = 31*hashCode + (e==null ? 0 : e.hashCode());
16.99/9.23	     * 
16.99/9.23 * This ensures that list1.equals(list2) implies that 16.99/9.23 * list1.hashCode()==list2.hashCode() for any two lists, 16.99/9.23 * list1 and list2, as required by the general 16.99/9.23 * contract of {@link Object#hashCode}. 16.99/9.23 * 16.99/9.23 * @return the hash code value for this list 16.99/9.23 * @see Object#equals(Object) 16.99/9.23 * @see #equals(Object) 16.99/9.23 */ 16.99/9.23 int hashCode(); 16.99/9.23 16.99/9.23 16.99/9.23 // Positional Access Operations 16.99/9.23 16.99/9.23 /** 16.99/9.23 * Returns the element at the specified position in this list. 16.99/9.23 * 16.99/9.23 * @param index index of the element to return 16.99/9.23 * @return the element at the specified position in this list 16.99/9.23 * @throws IndexOutOfBoundsException if the index is out of range 16.99/9.23 * (index < 0 || index >= size()) 16.99/9.23 */ 16.99/9.23 E get(int index); 16.99/9.23 16.99/9.23 /** 16.99/9.23 * Replaces the element at the specified position in this list with the 16.99/9.23 * specified element (optional operation). 16.99/9.23 * 16.99/9.23 * @param index index of the element to replace 16.99/9.23 * @param element element to be stored at the specified position 16.99/9.23 * @return the element previously at the specified position 16.99/9.23 * @throws UnsupportedOperationException if the set operation 16.99/9.23 * is not supported by this list 16.99/9.23 * @throws ClassCastException if the class of the specified element 16.99/9.23 * prevents it from being added to this list 16.99/9.23 * @throws NullPointerException if the specified element is null and 16.99/9.23 * this list does not permit null elements 16.99/9.23 * @throws IllegalArgumentException if some property of the specified 16.99/9.23 * element prevents it from being added to this list 16.99/9.23 * @throws IndexOutOfBoundsException if the index is out of range 16.99/9.23 * (index < 0 || index >= size()) 16.99/9.23 */ 16.99/9.23 E set(int index, E element); 16.99/9.23 16.99/9.23 /** 16.99/9.23 * Inserts the specified element at the specified position in this list 16.99/9.23 * (optional operation). Shifts the element currently at that position 16.99/9.23 * (if any) and any subsequent elements to the right (adds one to their 16.99/9.23 * indices). 16.99/9.23 * 16.99/9.23 * @param index index at which the specified element is to be inserted 16.99/9.23 * @param element element to be inserted 16.99/9.23 * @throws UnsupportedOperationException if the add operation 16.99/9.23 * is not supported by this list 16.99/9.23 * @throws ClassCastException if the class of the specified element 16.99/9.23 * prevents it from being added to this list 16.99/9.23 * @throws NullPointerException if the specified element is null and 16.99/9.23 * this list does not permit null elements 16.99/9.23 * @throws IllegalArgumentException if some property of the specified 16.99/9.23 * element prevents it from being added to this list 16.99/9.23 * @throws IndexOutOfBoundsException if the index is out of range 16.99/9.23 * (index < 0 || index > size()) 16.99/9.23 */ 16.99/9.23 void add(int index, E element); 16.99/9.23 16.99/9.23 /** 16.99/9.23 * Removes the element at the specified position in this list (optional 16.99/9.23 * operation). Shifts any subsequent elements to the left (subtracts one 16.99/9.23 * from their indices). Returns the element that was removed from the 16.99/9.23 * list. 16.99/9.23 * 16.99/9.23 * @param index the index of the element to be removed 16.99/9.23 * @return the element previously at the specified position 16.99/9.23 * @throws UnsupportedOperationException if the remove operation 16.99/9.23 * is not supported by this list 16.99/9.23 * @throws IndexOutOfBoundsException if the index is out of range 16.99/9.23 * (index < 0 || index >= size()) 16.99/9.23 */ 16.99/9.23 E remove(int index); 16.99/9.23 16.99/9.23 16.99/9.23 // Search Operations 16.99/9.23 16.99/9.23 /** 16.99/9.23 * Returns the index of the first occurrence of the specified element 16.99/9.23 * in this list, or -1 if this list does not contain the element. 16.99/9.23 * More formally, returns the lowest index i such that 16.99/9.23 * (o==null ? get(i)==null : o.equals(get(i))), 16.99/9.23 * or -1 if there is no such index. 16.99/9.23 * 16.99/9.23 * @param o element to search for 16.99/9.23 * @return the index of the first occurrence of the specified element in 16.99/9.23 * this list, or -1 if this list does not contain the element 16.99/9.23 * @throws ClassCastException if the type of the specified element 16.99/9.23 * is incompatible with this list (optional) 16.99/9.23 * @throws NullPointerException if the specified element is null and this 16.99/9.23 * list does not permit null elements (optional) 16.99/9.23 */ 16.99/9.23 int indexOf(Object o); 16.99/9.23 16.99/9.23 /** 16.99/9.23 * Returns the index of the last occurrence of the specified element 16.99/9.23 * in this list, or -1 if this list does not contain the element. 16.99/9.23 * More formally, returns the highest index i such that 16.99/9.23 * (o==null ? get(i)==null : o.equals(get(i))), 16.99/9.23 * or -1 if there is no such index. 16.99/9.23 * 16.99/9.23 * @param o element to search for 16.99/9.23 * @return the index of the last occurrence of the specified element in 16.99/9.23 * this list, or -1 if this list does not contain the element 16.99/9.23 * @throws ClassCastException if the type of the specified element 16.99/9.23 * is incompatible with this list (optional) 16.99/9.23 * @throws NullPointerException if the specified element is null and this 16.99/9.23 * list does not permit null elements (optional) 16.99/9.23 */ 16.99/9.23 int lastIndexOf(Object o); 16.99/9.23 16.99/9.23 16.99/9.23 // List Iterators 16.99/9.23 16.99/9.23 /** 16.99/9.23 * Returns a list iterator over the elements in this list (in proper 16.99/9.23 * sequence). 16.99/9.23 * 16.99/9.23 * @return a list iterator over the elements in this list (in proper 16.99/9.23 * sequence) 16.99/9.23 */ 16.99/9.23 ListIterator listIterator(); 16.99/9.23 16.99/9.23 /** 16.99/9.23 * Returns a list iterator over the elements in this list (in proper 16.99/9.23 * sequence), starting at the specified position in the list. 16.99/9.23 * The specified index indicates the first element that would be 16.99/9.23 * returned by an initial call to {@link ListIterator#next next}. 16.99/9.23 * An initial call to {@link ListIterator#previous previous} would 16.99/9.23 * return the element with the specified index minus one. 16.99/9.23 * 16.99/9.23 * @param index index of the first element to be returned from the 16.99/9.23 * list iterator (by a call to {@link ListIterator#next next}) 16.99/9.23 * @return a list iterator over the elements in this list (in proper 16.99/9.23 * sequence), starting at the specified position in the list 16.99/9.23 * @throws IndexOutOfBoundsException if the index is out of range 16.99/9.23 * ({@code index < 0 || index > size()}) 16.99/9.23 */ 16.99/9.23 ListIterator listIterator(int index); 16.99/9.23 16.99/9.23 // View 16.99/9.23 16.99/9.23 /** 16.99/9.23 * Returns a view of the portion of this list between the specified 16.99/9.23 * fromIndex, inclusive, and toIndex, exclusive. (If 16.99/9.23 * fromIndex and toIndex are equal, the returned list is 16.99/9.23 * empty.) The returned list is backed by this list, so non-structural 16.99/9.23 * changes in the returned list are reflected in this list, and vice-versa. 16.99/9.23 * The returned list supports all of the optional list operations supported 16.99/9.23 * by this list.

16.99/9.23 * 16.99/9.23 * This method eliminates the need for explicit range operations (of 16.99/9.23 * the sort that commonly exist for arrays). Any operation that expects 16.99/9.23 * a list can be used as a range operation by passing a subList view 16.99/9.23 * instead of a whole list. For example, the following idiom 16.99/9.23 * removes a range of elements from a list: 16.99/9.23 *

16.99/9.23	     *      list.subList(from, to).clear();
16.99/9.23	     * 
16.99/9.23 * Similar idioms may be constructed for indexOf and 16.99/9.23 * lastIndexOf, and all of the algorithms in the 16.99/9.23 * Collections class can be applied to a subList.

16.99/9.23 * 16.99/9.23 * The semantics of the list returned by this method become undefined if 16.99/9.23 * the backing list (i.e., this list) is structurally modified in 16.99/9.23 * any way other than via the returned list. (Structural modifications are 16.99/9.23 * those that change the size of this list, or otherwise perturb it in such 16.99/9.23 * a fashion that iterations in progress may yield incorrect results.) 16.99/9.23 * 16.99/9.23 * @param fromIndex low endpoint (inclusive) of the subList 16.99/9.23 * @param toIndex high endpoint (exclusive) of the subList 16.99/9.23 * @return a view of the specified range within this list 16.99/9.23 * @throws IndexOutOfBoundsException for an illegal endpoint index value 16.99/9.23 * (fromIndex < 0 || toIndex > size || 16.99/9.23 * fromIndex > toIndex) 16.99/9.23 */ 16.99/9.23 List subList(int fromIndex, int toIndex); 16.99/9.23 } 16.99/9.23 16.99/9.23 16.99/9.23 /* 16.99/9.23 * Copyright 1994-1998 Sun Microsystems, Inc. All Rights Reserved. 16.99/9.23 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 16.99/9.23 * 16.99/9.23 * This code is free software; you can redistribute it and/or modify it 16.99/9.23 * under the terms of the GNU General Public License version 2 only, as 16.99/9.23 * published by the Free Software Foundation. Sun designates this 16.99/9.23 * particular file as subject to the "Classpath" exception as provided 16.99/9.23 * by Sun in the LICENSE file that accompanied this code. 16.99/9.23 * 16.99/9.23 * This code is distributed in the hope that it will be useful, but WITHOUT 16.99/9.23 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or 16.99/9.23 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License 16.99/9.23 * version 2 for more details (a copy is included in the LICENSE file that 16.99/9.23 * accompanied this code). 16.99/9.23 * 16.99/9.23 * You should have received a copy of the GNU General Public License version 16.99/9.23 * 2 along with this work; if not, write to the Free Software Foundation, 16.99/9.23 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. 16.99/9.23 * 16.99/9.23 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara, 16.99/9.23 * CA 95054 USA or visit www.sun.com if you need additional information or 16.99/9.23 * have any questions. 16.99/9.23 */ 16.99/9.23 16.99/9.23 package javaUtilEx; 16.99/9.23 16.99/9.23 /** 16.99/9.23 * Thrown by the nextElement method of an 16.99/9.23 * Enumeration to indicate that there are no more 16.99/9.23 * elements in the enumeration. 16.99/9.23 * 16.99/9.23 * @author unascribed 16.99/9.23 * @see java.util.Enumeration 16.99/9.23 * @see java.util.Enumeration#nextElement() 16.99/9.23 * @since JDK1.0 16.99/9.23 */ 16.99/9.23 public 16.99/9.23 class NoSuchElementException extends RuntimeException { 16.99/9.23 /** 16.99/9.23 * Constructs a NoSuchElementException with null 16.99/9.23 * as its error message string. 16.99/9.23 */ 16.99/9.23 public NoSuchElementException() { 16.99/9.23 super(); 16.99/9.23 } 16.99/9.23 16.99/9.23 /** 16.99/9.23 * Constructs a NoSuchElementException, saving a reference 16.99/9.23 * to the error message string s for later retrieval by the 16.99/9.23 * getMessage method. 16.99/9.23 * 16.99/9.23 * @param s the detail message. 16.99/9.23 */ 16.99/9.23 public NoSuchElementException(String s) { 16.99/9.23 super(s); 16.99/9.23 } 16.99/9.23 } 16.99/9.23 16.99/9.23 16.99/9.23 /* 16.99/9.23 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 16.99/9.23 * 16.99/9.23 * This code is free software; you can redistribute it and/or modify it 16.99/9.23 * under the terms of the GNU General Public License version 2 only, as 16.99/9.23 * published by the Free Software Foundation. Sun designates this 16.99/9.23 * particular file as subject to the "Classpath" exception as provided 16.99/9.23 * by Sun in the LICENSE file that accompanied this code. 16.99/9.23 * 16.99/9.23 * This code is distributed in the hope that it will be useful, but WITHOUT 16.99/9.23 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or 16.99/9.23 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License 16.99/9.23 * version 2 for more details (a copy is included in the LICENSE file that 16.99/9.23 * accompanied this code). 16.99/9.23 * 16.99/9.23 * You should have received a copy of the GNU General Public License version 16.99/9.23 * 2 along with this work; if not, write to the Free Software Foundation, 16.99/9.23 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. 16.99/9.23 * 16.99/9.23 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara, 16.99/9.23 * CA 95054 USA or visit www.sun.com if you need additional information or 16.99/9.23 * have any questions. 16.99/9.23 */ 16.99/9.23 16.99/9.23 /* 16.99/9.23 * This file is available under and governed by the GNU General Public 16.99/9.23 * License version 2 only, as published by the Free Software Foundation. 16.99/9.23 * However, the following notice accompanied the original version of this 16.99/9.23 * file: 16.99/9.23 * 16.99/9.23 * Written by Doug Lea with assistance from members of JCP JSR-166 16.99/9.23 * Expert Group and released to the public domain, as explained at 16.99/9.23 * http://creativecommons.org/licenses/publicdomain 16.99/9.23 */ 16.99/9.23 16.99/9.23 package javaUtilEx; 16.99/9.23 16.99/9.23 /** 16.99/9.23 * A collection designed for holding elements prior to processing. 16.99/9.23 * Besides basic {@link java.util.Collection Collection} operations, 16.99/9.23 * queues provide additional insertion, extraction, and inspection 16.99/9.23 * operations. Each of these methods exists in two forms: one throws 16.99/9.23 * an exception if the operation fails, the other returns a special 16.99/9.23 * value (either null or false, depending on the 16.99/9.23 * operation). The latter form of the insert operation is designed 16.99/9.23 * specifically for use with capacity-restricted Queue 16.99/9.23 * implementations; in most implementations, insert operations cannot 16.99/9.23 * fail. 16.99/9.23 * 16.99/9.23 *

16.99/9.23 * 16.99/9.23 * 16.99/9.23 * 16.99/9.23 * 16.99/9.23 * 16.99/9.23 * 16.99/9.23 * 16.99/9.23 * 16.99/9.23 * 16.99/9.23 * 16.99/9.23 * 16.99/9.23 * 16.99/9.23 * 16.99/9.23 * 16.99/9.23 * 16.99/9.23 * 16.99/9.23 * 16.99/9.23 * 16.99/9.23 * 16.99/9.23 * 16.99/9.23 * 16.99/9.23 *
Throws exceptionReturns special value
Insert{@link #add add(e)}{@link #offer offer(e)}
Remove{@link #remove remove()}{@link #poll poll()}
Examine{@link #element element()}{@link #peek peek()}
16.99/9.23 * 16.99/9.23 *

Queues typically, but do not necessarily, order elements in a 16.99/9.23 * FIFO (first-in-first-out) manner. Among the exceptions are 16.99/9.23 * priority queues, which order elements according to a supplied 16.99/9.23 * comparator, or the elements' natural ordering, and LIFO queues (or 16.99/9.23 * stacks) which order the elements LIFO (last-in-first-out). 16.99/9.23 * Whatever the ordering used, the head of the queue is that 16.99/9.23 * element which would be removed by a call to {@link #remove() } or 16.99/9.23 * {@link #poll()}. In a FIFO queue, all new elements are inserted at 16.99/9.23 * the tail of the queue. Other kinds of queues may use 16.99/9.23 * different placement rules. Every Queue implementation 16.99/9.23 * must specify its ordering properties. 16.99/9.23 * 16.99/9.23 *

The {@link #offer offer} method inserts an element if possible, 16.99/9.23 * otherwise returning false. This differs from the {@link 16.99/9.23 * java.util.Collection#add Collection.add} method, which can fail to 16.99/9.23 * add an element only by throwing an unchecked exception. The 16.99/9.23 * offer method is designed for use when failure is a normal, 16.99/9.23 * rather than exceptional occurrence, for example, in fixed-capacity 16.99/9.23 * (or "bounded") queues. 16.99/9.23 * 16.99/9.23 *

The {@link #remove()} and {@link #poll()} methods remove and 16.99/9.23 * return the head of the queue. 16.99/9.23 * Exactly which element is removed from the queue is a 16.99/9.23 * function of the queue's ordering policy, which differs from 16.99/9.23 * implementation to implementation. The remove() and 16.99/9.23 * poll() methods differ only in their behavior when the 16.99/9.23 * queue is empty: the remove() method throws an exception, 16.99/9.23 * while the poll() method returns null. 16.99/9.23 * 16.99/9.23 *

The {@link #element()} and {@link #peek()} methods return, but do 16.99/9.23 * not remove, the head of the queue. 16.99/9.23 * 16.99/9.23 *

The Queue interface does not define the blocking queue 16.99/9.23 * methods, which are common in concurrent programming. These methods, 16.99/9.23 * which wait for elements to appear or for space to become available, are 16.99/9.23 * defined in the {@link java.util.concurrent.BlockingQueue} interface, which 16.99/9.23 * extends this interface. 16.99/9.23 * 16.99/9.23 *

Queue implementations generally do not allow insertion 16.99/9.23 * of null elements, although some implementations, such as 16.99/9.23 * {@link LinkedList}, do not prohibit insertion of null. 16.99/9.23 * Even in the implementations that permit it, null should 16.99/9.23 * not be inserted into a Queue, as null is also 16.99/9.23 * used as a special return value by the poll method to 16.99/9.23 * indicate that the queue contains no elements. 16.99/9.23 * 16.99/9.23 *

Queue implementations generally do not define 16.99/9.23 * element-based versions of methods equals and 16.99/9.23 * hashCode but instead inherit the identity based versions 16.99/9.23 * from class Object, because element-based equality is not 16.99/9.23 * always well-defined for queues with the same elements but different 16.99/9.23 * ordering properties. 16.99/9.23 * 16.99/9.23 * 16.99/9.23 *

This interface is a member of the 16.99/9.23 * 16.99/9.23 * Java Collections Framework. 16.99/9.23 * 16.99/9.23 * @see java.util.Collection 16.99/9.23 * @see LinkedList 16.99/9.23 * @see PriorityQueue 16.99/9.23 * @see java.util.concurrent.LinkedBlockingQueue 16.99/9.23 * @see java.util.concurrent.BlockingQueue 16.99/9.23 * @see java.util.concurrent.ArrayBlockingQueue 16.99/9.23 * @see java.util.concurrent.LinkedBlockingQueue 16.99/9.23 * @see java.util.concurrent.PriorityBlockingQueue 16.99/9.23 * @since 1.5 16.99/9.23 * @author Doug Lea 16.99/9.23 * @param the type of elements held in this collection 16.99/9.23 */ 16.99/9.23 public interface Queue extends Collection { 16.99/9.23 /** 16.99/9.23 * Inserts the specified element into this queue if it is possible to do so 16.99/9.23 * immediately without violating capacity restrictions, returning 16.99/9.23 * true upon success and throwing an IllegalStateException 16.99/9.23 * if no space is currently available. 16.99/9.23 * 16.99/9.23 * @param e the element to add 16.99/9.23 * @return true (as specified by {@link Collection#add}) 16.99/9.23 * @throws IllegalStateException if the element cannot be added at this 16.99/9.23 * time due to capacity restrictions 16.99/9.23 * @throws ClassCastException if the class of the specified element 16.99/9.23 * prevents it from being added to this queue 16.99/9.23 * @throws NullPointerException if the specified element is null and 16.99/9.23 * this queue does not permit null elements 16.99/9.23 * @throws IllegalArgumentException if some property of this element 16.99/9.23 * prevents it from being added to this queue 16.99/9.23 */ 16.99/9.23 boolean add(E e); 16.99/9.23 16.99/9.23 /** 16.99/9.23 * Inserts the specified element into this queue if it is possible to do 16.99/9.23 * so immediately without violating capacity restrictions. 16.99/9.23 * When using a capacity-restricted queue, this method is generally 16.99/9.23 * preferable to {@link #add}, which can fail to insert an element only 16.99/9.23 * by throwing an exception. 16.99/9.23 * 16.99/9.23 * @param e the element to add 16.99/9.23 * @return true if the element was added to this queue, else 16.99/9.23 * false 16.99/9.23 * @throws ClassCastException if the class of the specified element 16.99/9.23 * prevents it from being added to this queue 16.99/9.23 * @throws NullPointerException if the specified element is null and 16.99/9.23 * this queue does not permit null elements 16.99/9.23 * @throws IllegalArgumentException if some property of this element 16.99/9.23 * prevents it from being added to this queue 16.99/9.23 */ 16.99/9.23 boolean offer(E e); 16.99/9.23 16.99/9.23 /** 16.99/9.23 * Retrieves and removes the head of this queue. This method differs 16.99/9.23 * from {@link #poll poll} only in that it throws an exception if this 16.99/9.23 * queue is empty. 16.99/9.23 * 16.99/9.23 * @return the head of this queue 16.99/9.23 * @throws NoSuchElementException if this queue is empty 16.99/9.23 */ 16.99/9.23 E remove(); 16.99/9.23 16.99/9.23 /** 16.99/9.23 * Retrieves and removes the head of this queue, 16.99/9.23 * or returns null if this queue is empty. 16.99/9.23 * 16.99/9.23 * @return the head of this queue, or null if this queue is empty 16.99/9.23 */ 16.99/9.23 E poll(); 16.99/9.23 16.99/9.23 /** 16.99/9.23 * Retrieves, but does not remove, the head of this queue. This method 16.99/9.23 * differs from {@link #peek peek} only in that it throws an exception 16.99/9.23 * if this queue is empty. 16.99/9.23 * 16.99/9.23 * @return the head of this queue 16.99/9.23 * @throws NoSuchElementException if this queue is empty 16.99/9.23 */ 16.99/9.23 E element(); 16.99/9.23 16.99/9.23 /** 16.99/9.23 * Retrieves, but does not remove, the head of this queue, 16.99/9.23 * or returns null if this queue is empty. 16.99/9.23 * 16.99/9.23 * @return the head of this queue, or null if this queue is empty 16.99/9.23 */ 16.99/9.23 E peek(); 16.99/9.23 } 16.99/9.23 16.99/9.23 16.99/9.23 /* 16.99/9.23 * Copyright 2000-2006 Sun Microsystems, Inc. All Rights Reserved. 16.99/9.23 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 16.99/9.23 * 16.99/9.23 * This code is free software; you can redistribute it and/or modify it 16.99/9.23 * under the terms of the GNU General Public License version 2 only, as 16.99/9.23 * published by the Free Software Foundation. Sun designates this 16.99/9.23 * particular file as subject to the "Classpath" exception as provided 16.99/9.23 * by Sun in the LICENSE file that accompanied this code. 16.99/9.23 * 16.99/9.23 * This code is distributed in the hope that it will be useful, but WITHOUT 16.99/9.23 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or 16.99/9.23 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License 16.99/9.23 * version 2 for more details (a copy is included in the LICENSE file that 16.99/9.23 * accompanied this code). 16.99/9.23 * 16.99/9.23 * You should have received a copy of the GNU General Public License version 16.99/9.23 * 2 along with this work; if not, write to the Free Software Foundation, 16.99/9.23 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. 16.99/9.23 * 16.99/9.23 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara, 16.99/9.23 * CA 95054 USA or visit www.sun.com if you need additional information or 16.99/9.23 * have any questions. 16.99/9.23 */ 16.99/9.23 16.99/9.23 package javaUtilEx; 16.99/9.23 16.99/9.23 /** 16.99/9.23 * Marker interface used by List implementations to indicate that 16.99/9.23 * they support fast (generally constant time) random access. The primary 16.99/9.23 * purpose of this interface is to allow generic algorithms to alter their 16.99/9.23 * behavior to provide good performance when applied to either random or 16.99/9.23 * sequential access lists. 16.99/9.23 * 16.99/9.23 *

The best algorithms for manipulating random access lists (such as 16.99/9.23 * ArrayList) can produce quadratic behavior when applied to 16.99/9.23 * sequential access lists (such as LinkedList). Generic list 16.99/9.23 * algorithms are encouraged to check whether the given list is an 16.99/9.23 * instanceof this interface before applying an algorithm that would 16.99/9.23 * provide poor performance if it were applied to a sequential access list, 16.99/9.23 * and to alter their behavior if necessary to guarantee acceptable 16.99/9.23 * performance. 16.99/9.23 * 16.99/9.23 *

It is recognized that the distinction between random and sequential 16.99/9.23 * access is often fuzzy. For example, some List implementations 16.99/9.23 * provide asymptotically linear access times if they get huge, but constant 16.99/9.23 * access times in practice. Such a List implementation 16.99/9.23 * should generally implement this interface. As a rule of thumb, a 16.99/9.23 * List implementation should implement this interface if, 16.99/9.23 * for typical instances of the class, this loop: 16.99/9.23 *

16.99/9.23	 *     for (int i=0, n=list.size(); i < n; i++)
16.99/9.23	 *         list.get(i);
16.99/9.23	 * 
16.99/9.23 * runs faster than this loop: 16.99/9.23 *
16.99/9.23	 *     for (Iterator i=list.iterator(); i.hasNext(); )
16.99/9.23	 *         i.next();
16.99/9.23	 * 
16.99/9.23 * 16.99/9.23 *

This interface is a member of the 16.99/9.23 * 16.99/9.23 * Java Collections Framework. 16.99/9.23 * 16.99/9.23 * @since 1.4 16.99/9.23 */ 16.99/9.23 public interface RandomAccess { 16.99/9.23 } 16.99/9.23 16.99/9.23 16.99/9.23 package javaUtilEx; 16.99/9.23 16.99/9.23 public class Random { 16.99/9.23 static String[] args; 16.99/9.23 static int index = 0; 16.99/9.23 16.99/9.23 public static int random() { 16.99/9.23 String string = args[index]; 16.99/9.23 index++; 16.99/9.23 return string.length(); 16.99/9.23 } 16.99/9.23 } 16.99/9.23 16.99/9.23 16.99/9.23 /* 16.99/9.23 * Copyright 1997-2006 Sun Microsystems, Inc. All Rights Reserved. 16.99/9.23 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 16.99/9.23 * 16.99/9.23 * This code is free software; you can redistribute it and/or modify it 16.99/9.23 * under the terms of the GNU General Public License version 2 only, as 16.99/9.23 * published by the Free Software Foundation. Sun designates this 16.99/9.23 * particular file as subject to the "Classpath" exception as provided 16.99/9.23 * by Sun in the LICENSE file that accompanied this code. 16.99/9.23 * 16.99/9.23 * This code is distributed in the hope that it will be useful, but WITHOUT 16.99/9.23 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or 16.99/9.23 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License 16.99/9.23 * version 2 for more details (a copy is included in the LICENSE file that 16.99/9.23 * accompanied this code). 16.99/9.23 * 16.99/9.23 * You should have received a copy of the GNU General Public License version 16.99/9.23 * 2 along with this work; if not, write to the Free Software Foundation, 16.99/9.23 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. 16.99/9.23 * 16.99/9.23 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara, 16.99/9.23 * CA 95054 USA or visit www.sun.com if you need additional information or 16.99/9.23 * have any questions. 16.99/9.23 */ 16.99/9.23 16.99/9.23 package javaUtilEx; 16.99/9.23 16.99/9.23 /** 16.99/9.23 * Thrown to indicate that the requested operation is not supported.

16.99/9.23 * 16.99/9.23 * This class is a member of the 16.99/9.23 * 16.99/9.23 * Java Collections Framework. 16.99/9.23 * 16.99/9.23 * @author Josh Bloch 16.99/9.23 * @since 1.2 16.99/9.23 */ 16.99/9.23 public class UnsupportedOperationException extends RuntimeException { 16.99/9.23 /** 16.99/9.23 * Constructs an UnsupportedOperationException with no detail message. 16.99/9.23 */ 16.99/9.23 public UnsupportedOperationException() { 16.99/9.23 } 16.99/9.23 16.99/9.23 /** 16.99/9.23 * Constructs an UnsupportedOperationException with the specified 16.99/9.23 * detail message. 16.99/9.23 * 16.99/9.23 * @param message the detail message 16.99/9.23 */ 16.99/9.23 public UnsupportedOperationException(String message) { 16.99/9.23 super(message); 16.99/9.23 } 16.99/9.23 16.99/9.23 /** 16.99/9.23 * Constructs a new exception with the specified detail message and 16.99/9.23 * cause. 16.99/9.23 * 16.99/9.23 *

Note that the detail message associated with cause is 16.99/9.23 * not automatically incorporated in this exception's detail 16.99/9.23 * message. 16.99/9.23 * 16.99/9.23 * @param message the detail message (which is saved for later retrieval 16.99/9.23 * by the {@link Throwable#getMessage()} method). 16.99/9.23 * @param cause the cause (which is saved for later retrieval by the 16.99/9.23 * {@link Throwable#getCause()} method). (A null value 16.99/9.23 * is permitted, and indicates that the cause is nonexistent or 16.99/9.23 * unknown.) 16.99/9.23 * @since 1.5 16.99/9.23 */ 16.99/9.23 public UnsupportedOperationException(String message, Throwable cause) { 16.99/9.23 super(message, cause); 16.99/9.23 } 16.99/9.23 16.99/9.23 /** 16.99/9.23 * Constructs a new exception with the specified cause and a detail 16.99/9.23 * message of (cause==null ? null : cause.toString()) (which 16.99/9.23 * typically contains the class and detail message of cause). 16.99/9.23 * This constructor is useful for exceptions that are little more than 16.99/9.23 * wrappers for other throwables (for example, {@link 16.99/9.23 * java.security.PrivilegedActionException}). 16.99/9.23 * 16.99/9.23 * @param cause the cause (which is saved for later retrieval by the 16.99/9.23 * {@link Throwable#getCause()} method). (A null value is 16.99/9.24 * permitted, and indicates that the cause is nonexistent or 16.99/9.24 * unknown.) 16.99/9.24 * @since 1.5 16.99/9.24 */ 16.99/9.24 public UnsupportedOperationException(Throwable cause) { 16.99/9.24 super(cause); 16.99/9.24 } 16.99/9.24 16.99/9.24 static final long serialVersionUID = -1242599979055084673L; 16.99/9.24 } 16.99/9.24 16.99/9.24 16.99/9.24 16.99/9.24 ---------------------------------------- 16.99/9.24 16.99/9.24 (1) BareJBCToJBCProof (EQUIVALENT) 16.99/9.24 initialized classpath 16.99/9.24 ---------------------------------------- 16.99/9.24 16.99/9.24 (2) 16.99/9.24 Obligation: 16.99/9.24 need to prove termination of the following program: 16.99/9.24 /* 16.99/9.24 * Copyright 1997-2006 Sun Microsystems, Inc. All Rights Reserved. 16.99/9.24 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 16.99/9.24 * 16.99/9.24 * This code is free software; you can redistribute it and/or modify it 16.99/9.24 * under the terms of the GNU General Public License version 2 only, as 16.99/9.24 * published by the Free Software Foundation. Sun designates this 16.99/9.24 * particular file as subject to the "Classpath" exception as provided 16.99/9.24 * by Sun in the LICENSE file that accompanied this code. 16.99/9.24 * 16.99/9.24 * This code is distributed in the hope that it will be useful, but WITHOUT 16.99/9.24 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or 16.99/9.24 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License 16.99/9.24 * version 2 for more details (a copy is included in the LICENSE file that 16.99/9.24 * accompanied this code). 16.99/9.24 * 16.99/9.24 * You should have received a copy of the GNU General Public License version 16.99/9.24 * 2 along with this work; if not, write to the Free Software Foundation, 16.99/9.24 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. 16.99/9.24 * 16.99/9.24 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara, 16.99/9.24 * CA 95054 USA or visit www.sun.com if you need additional information or 16.99/9.24 * have any questions. 16.99/9.24 */ 16.99/9.24 16.99/9.24 package javaUtilEx; 16.99/9.24 16.99/9.24 /** 16.99/9.24 * This class provides a skeletal implementation of the Collection 16.99/9.24 * interface, to minimize the effort required to implement this interface.

16.99/9.24 * 16.99/9.24 * To implement an unmodifiable collection, the programmer needs only to 16.99/9.24 * extend this class and provide implementations for the iterator and 16.99/9.24 * size methods. (The iterator returned by the iterator 16.99/9.24 * method must implement hasNext and next.)

16.99/9.24 * 16.99/9.24 * To implement a modifiable collection, the programmer must additionally 16.99/9.24 * override this class's add method (which otherwise throws an 16.99/9.24 * UnsupportedOperationException), and the iterator returned by the 16.99/9.24 * iterator method must additionally implement its remove 16.99/9.24 * method.

16.99/9.24 * 16.99/9.24 * The programmer should generally provide a void (no argument) and 16.99/9.24 * Collection constructor, as per the recommendation in the 16.99/9.24 * Collection interface specification.

16.99/9.24 * 16.99/9.24 * The documentation for each non-abstract method in this class describes its 16.99/9.24 * implementation in detail. Each of these methods may be overridden if 16.99/9.24 * the collection being implemented admits a more efficient implementation.

16.99/9.24 * 16.99/9.24 * This class is a member of the 16.99/9.24 * 16.99/9.24 * Java Collections Framework. 16.99/9.24 * 16.99/9.24 * @author Josh Bloch 16.99/9.24 * @author Neal Gafter 16.99/9.24 * @see Collection 16.99/9.24 * @since 1.2 16.99/9.24 */ 16.99/9.24 16.99/9.24 public abstract class AbstractCollection implements Collection { 16.99/9.24 /** 16.99/9.24 * Sole constructor. (For invocation by subclass constructors, typically 16.99/9.24 * implicit.) 16.99/9.24 */ 16.99/9.24 protected AbstractCollection() { 16.99/9.24 } 16.99/9.24 16.99/9.24 // Query Operations 16.99/9.24 16.99/9.24 /** 16.99/9.24 * Returns an iterator over the elements contained in this collection. 16.99/9.24 * 16.99/9.24 * @return an iterator over the elements contained in this collection 16.99/9.24 */ 16.99/9.24 public abstract Iterator iterator(); 16.99/9.24 16.99/9.24 public abstract int size(); 16.99/9.24 16.99/9.24 /** 16.99/9.24 * {@inheritDoc} 16.99/9.24 * 16.99/9.24 *

This implementation returns size() == 0. 16.99/9.24 */ 16.99/9.24 public boolean isEmpty() { 16.99/9.24 return size() == 0; 16.99/9.24 } 16.99/9.24 16.99/9.24 /** 16.99/9.24 * {@inheritDoc} 16.99/9.24 * 16.99/9.24 *

This implementation iterates over the elements in the collection, 16.99/9.24 * checking each element in turn for equality with the specified element. 16.99/9.24 * 16.99/9.24 * @throws ClassCastException {@inheritDoc} 16.99/9.24 * @throws NullPointerException {@inheritDoc} 16.99/9.24 */ 16.99/9.24 public boolean contains(Object o) { 16.99/9.24 Iterator e = iterator(); 16.99/9.24 if (o==null) { 16.99/9.24 while (e.hasNext()) 16.99/9.24 if (e.next()==null) 16.99/9.24 return true; 16.99/9.24 } else { 16.99/9.24 while (e.hasNext()) 16.99/9.24 if (o.equals(e.next())) 16.99/9.24 return true; 16.99/9.24 } 16.99/9.24 return false; 16.99/9.24 } 16.99/9.24 16.99/9.24 // Modification Operations 16.99/9.24 16.99/9.24 /** 16.99/9.24 * {@inheritDoc} 16.99/9.24 * 16.99/9.24 *

This implementation always throws an 16.99/9.24 * UnsupportedOperationException. 16.99/9.24 * 16.99/9.24 * @throws UnsupportedOperationException {@inheritDoc} 16.99/9.24 * @throws ClassCastException {@inheritDoc} 16.99/9.24 * @throws NullPointerException {@inheritDoc} 16.99/9.24 * @throws IllegalArgumentException {@inheritDoc} 16.99/9.24 * @throws IllegalStateException {@inheritDoc} 16.99/9.24 */ 16.99/9.24 public boolean add(E e) { 16.99/9.24 throw new UnsupportedOperationException(); 16.99/9.24 } 16.99/9.24 16.99/9.24 /** 16.99/9.24 * {@inheritDoc} 16.99/9.24 * 16.99/9.24 *

This implementation iterates over the collection looking for the 16.99/9.24 * specified element. If it finds the element, it removes the element 16.99/9.24 * from the collection using the iterator's remove method. 16.99/9.24 * 16.99/9.24 *

Note that this implementation throws an 16.99/9.24 * UnsupportedOperationException if the iterator returned by this 16.99/9.24 * collection's iterator method does not implement the remove 16.99/9.24 * method and this collection contains the specified object. 16.99/9.24 * 16.99/9.24 * @throws UnsupportedOperationException {@inheritDoc} 16.99/9.24 * @throws ClassCastException {@inheritDoc} 16.99/9.24 * @throws NullPointerException {@inheritDoc} 16.99/9.24 */ 16.99/9.24 public boolean remove(Object o) { 16.99/9.24 Iterator e = iterator(); 16.99/9.24 if (o==null) { 16.99/9.24 while (e.hasNext()) { 16.99/9.24 if (e.next()==null) { 16.99/9.24 e.remove(); 16.99/9.24 return true; 16.99/9.24 } 16.99/9.24 } 16.99/9.24 } else { 16.99/9.24 while (e.hasNext()) { 16.99/9.24 if (o.equals(e.next())) { 16.99/9.24 e.remove(); 16.99/9.24 return true; 16.99/9.24 } 16.99/9.24 } 16.99/9.24 } 16.99/9.24 return false; 16.99/9.24 } 16.99/9.24 16.99/9.24 16.99/9.24 // Bulk Operations 16.99/9.24 16.99/9.24 /** 16.99/9.24 * {@inheritDoc} 16.99/9.24 * 16.99/9.24 *

This implementation iterates over the specified collection, 16.99/9.24 * checking each element returned by the iterator in turn to see 16.99/9.24 * if it's contained in this collection. If all elements are so 16.99/9.24 * contained true is returned, otherwise false. 16.99/9.24 * 16.99/9.24 * @throws ClassCastException {@inheritDoc} 16.99/9.24 * @throws NullPointerException {@inheritDoc} 16.99/9.24 * @see #contains(Object) 16.99/9.24 */ 16.99/9.24 public boolean containsAll(Collection c) { 16.99/9.24 Iterator e = c.iterator(); 16.99/9.24 while (e.hasNext()) 16.99/9.24 if (!contains(e.next())) 16.99/9.24 return false; 16.99/9.24 return true; 16.99/9.24 } 16.99/9.24 16.99/9.24 /** 16.99/9.24 * {@inheritDoc} 16.99/9.24 * 16.99/9.24 *

This implementation iterates over the specified collection, and adds 16.99/9.24 * each object returned by the iterator to this collection, in turn. 16.99/9.24 * 16.99/9.24 *

Note that this implementation will throw an 16.99/9.24 * UnsupportedOperationException unless add is 16.99/9.24 * overridden (assuming the specified collection is non-empty). 16.99/9.24 * 16.99/9.24 * @throws UnsupportedOperationException {@inheritDoc} 16.99/9.24 * @throws ClassCastException {@inheritDoc} 16.99/9.24 * @throws NullPointerException {@inheritDoc} 16.99/9.24 * @throws IllegalArgumentException {@inheritDoc} 16.99/9.24 * @throws IllegalStateException {@inheritDoc} 16.99/9.24 * 16.99/9.24 * @see #add(Object) 16.99/9.24 */ 16.99/9.24 public boolean addAll(Collection c) { 16.99/9.24 boolean modified = false; 16.99/9.24 Iterator e = c.iterator(); 16.99/9.24 while (e.hasNext()) { 16.99/9.24 if (add(e.next())) 16.99/9.24 modified = true; 16.99/9.24 } 16.99/9.24 return modified; 16.99/9.24 } 16.99/9.24 16.99/9.24 /** 16.99/9.24 * {@inheritDoc} 16.99/9.24 * 16.99/9.24 *

This implementation iterates over this collection, checking each 16.99/9.24 * element returned by the iterator in turn to see if it's contained 16.99/9.24 * in the specified collection. If it's so contained, it's removed from 16.99/9.24 * this collection with the iterator's remove method. 16.99/9.24 * 16.99/9.24 *

Note that this implementation will throw an 16.99/9.24 * UnsupportedOperationException if the iterator returned by the 16.99/9.24 * iterator method does not implement the remove method 16.99/9.24 * and this collection contains one or more elements in common with the 16.99/9.24 * specified collection. 16.99/9.24 * 16.99/9.24 * @throws UnsupportedOperationException {@inheritDoc} 16.99/9.24 * @throws ClassCastException {@inheritDoc} 16.99/9.24 * @throws NullPointerException {@inheritDoc} 16.99/9.24 * 16.99/9.24 * @see #remove(Object) 16.99/9.24 * @see #contains(Object) 16.99/9.24 */ 16.99/9.24 public boolean removeAll(Collection c) { 16.99/9.24 boolean modified = false; 16.99/9.24 Iterator e = iterator(); 16.99/9.24 while (e.hasNext()) { 16.99/9.24 if (c.contains(e.next())) { 16.99/9.24 e.remove(); 16.99/9.24 modified = true; 16.99/9.24 } 16.99/9.24 } 16.99/9.24 return modified; 16.99/9.24 } 16.99/9.24 16.99/9.24 /** 16.99/9.24 * {@inheritDoc} 16.99/9.24 * 16.99/9.24 *

This implementation iterates over this collection, checking each 16.99/9.24 * element returned by the iterator in turn to see if it's contained 16.99/9.24 * in the specified collection. If it's not so contained, it's removed 16.99/9.24 * from this collection with the iterator's remove method. 16.99/9.24 * 16.99/9.24 *

Note that this implementation will throw an 16.99/9.24 * UnsupportedOperationException if the iterator returned by the 16.99/9.24 * iterator method does not implement the remove method 16.99/9.24 * and this collection contains one or more elements not present in the 16.99/9.24 * specified collection. 16.99/9.24 * 16.99/9.24 * @throws UnsupportedOperationException {@inheritDoc} 16.99/9.24 * @throws ClassCastException {@inheritDoc} 16.99/9.24 * @throws NullPointerException {@inheritDoc} 16.99/9.24 * 16.99/9.24 * @see #remove(Object) 16.99/9.24 * @see #contains(Object) 16.99/9.24 */ 16.99/9.24 public boolean retainAll(Collection c) { 16.99/9.24 boolean modified = false; 16.99/9.24 Iterator e = iterator(); 16.99/9.24 while (e.hasNext()) { 16.99/9.24 if (!c.contains(e.next())) { 16.99/9.24 e.remove(); 16.99/9.24 modified = true; 16.99/9.24 } 16.99/9.24 } 16.99/9.24 return modified; 16.99/9.24 } 16.99/9.24 16.99/9.24 /** 16.99/9.24 * {@inheritDoc} 16.99/9.24 * 16.99/9.24 *

This implementation iterates over this collection, removing each 16.99/9.24 * element using the Iterator.remove operation. Most 16.99/9.24 * implementations will probably choose to override this method for 16.99/9.24 * efficiency. 16.99/9.24 * 16.99/9.24 *

Note that this implementation will throw an 16.99/9.24 * UnsupportedOperationException if the iterator returned by this 16.99/9.24 * collection's iterator method does not implement the 16.99/9.24 * remove method and this collection is non-empty. 16.99/9.24 * 16.99/9.24 * @throws UnsupportedOperationException {@inheritDoc} 16.99/9.24 */ 16.99/9.24 public void clear() { 16.99/9.24 Iterator e = iterator(); 16.99/9.24 while (e.hasNext()) { 16.99/9.24 e.next(); 16.99/9.24 e.remove(); 16.99/9.24 } 16.99/9.24 } 16.99/9.24 16.99/9.24 16.99/9.24 // String conversion 16.99/9.24 16.99/9.24 /** 16.99/9.24 * Returns a string representation of this collection. The string 16.99/9.24 * representation consists of a list of the collection's elements in the 16.99/9.24 * order they are returned by its iterator, enclosed in square brackets 16.99/9.24 * ("[]"). Adjacent elements are separated by the characters 16.99/9.24 * ", " (comma and space). Elements are converted to strings as 16.99/9.24 * by {@link String#valueOf(Object)}. 16.99/9.24 * 16.99/9.24 * @return a string representation of this collection 16.99/9.24 */ 16.99/9.24 public String toString() { 16.99/9.24 Iterator i = iterator(); 16.99/9.24 if (! i.hasNext()) 16.99/9.24 return "[]"; 16.99/9.24 16.99/9.24 String sb = ""; 16.99/9.24 sb = sb + "["; 16.99/9.24 for (;;) { 16.99/9.24 E e = i.next(); 16.99/9.24 sb = sb + (e == this ? "(this Collection)" : e); 16.99/9.24 if (! i.hasNext()) { 16.99/9.24 sb = sb + "]"; 16.99/9.24 return sb; 16.99/9.24 } 16.99/9.24 sb = sb + ", "; 16.99/9.24 } 16.99/9.24 } 16.99/9.24 16.99/9.24 } 16.99/9.24 16.99/9.24 16.99/9.24 /* 16.99/9.24 * Copyright 1997-2007 Sun Microsystems, Inc. All Rights Reserved. 16.99/9.24 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 16.99/9.24 * 16.99/9.24 * This code is free software; you can redistribute it and/or modify it 16.99/9.24 * under the terms of the GNU General Public License version 2 only, as 16.99/9.24 * published by the Free Software Foundation. Sun designates this 16.99/9.24 * particular file as subject to the "Classpath" exception as provided 16.99/9.24 * by Sun in the LICENSE file that accompanied this code. 16.99/9.24 * 16.99/9.24 * This code is distributed in the hope that it will be useful, but WITHOUT 16.99/9.24 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or 16.99/9.24 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License 16.99/9.24 * version 2 for more details (a copy is included in the LICENSE file that 16.99/9.24 * accompanied this code). 16.99/9.24 * 16.99/9.24 * You should have received a copy of the GNU General Public License version 16.99/9.24 * 2 along with this work; if not, write to the Free Software Foundation, 16.99/9.24 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. 16.99/9.24 * 16.99/9.24 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara, 16.99/9.24 * CA 95054 USA or visit www.sun.com if you need additional information or 16.99/9.24 * have any questions. 16.99/9.24 */ 16.99/9.24 16.99/9.24 package javaUtilEx; 16.99/9.24 16.99/9.24 /** 16.99/9.24 * This class provides a skeletal implementation of the {@link List} 16.99/9.24 * interface to minimize the effort required to implement this interface 16.99/9.24 * backed by a "random access" data store (such as an array). For sequential 16.99/9.24 * access data (such as a linked list), {@link AbstractSequentialList} should 16.99/9.24 * be used in preference to this class. 16.99/9.24 * 16.99/9.24 *

To implement an unmodifiable list, the programmer needs only to extend 16.99/9.24 * this class and provide implementations for the {@link #get(int)} and 16.99/9.24 * {@link List#size() size()} methods. 16.99/9.24 * 16.99/9.24 *

To implement a modifiable list, the programmer must additionally 16.99/9.24 * override the {@link #set(int, Object) set(int, E)} method (which otherwise 16.99/9.24 * throws an {@code UnsupportedOperationException}). If the list is 16.99/9.24 * variable-size the programmer must additionally override the 16.99/9.24 * {@link #add(int, Object) add(int, E)} and {@link #remove(int)} methods. 16.99/9.24 * 16.99/9.24 *

The programmer should generally provide a void (no argument) and collection 16.99/9.24 * constructor, as per the recommendation in the {@link Collection} interface 16.99/9.24 * specification. 16.99/9.24 * 16.99/9.24 *

Unlike the other abstract collection implementations, the programmer does 16.99/9.24 * not have to provide an iterator implementation; the iterator and 16.99/9.24 * list iterator are implemented by this class, on top of the "random access" 16.99/9.24 * methods: 16.99/9.24 * {@link #get(int)}, 16.99/9.24 * {@link #set(int, Object) set(int, E)}, 16.99/9.24 * {@link #add(int, Object) add(int, E)} and 16.99/9.24 * {@link #remove(int)}. 16.99/9.24 * 16.99/9.24 *

The documentation for each non-abstract method in this class describes its 16.99/9.24 * implementation in detail. Each of these methods may be overridden if the 16.99/9.24 * collection being implemented admits a more efficient implementation. 16.99/9.24 * 16.99/9.24 *

This class is a member of the 16.99/9.24 * 16.99/9.24 * Java Collections Framework. 16.99/9.24 * 16.99/9.24 * @author Josh Bloch 16.99/9.24 * @author Neal Gafter 16.99/9.24 * @since 1.2 16.99/9.24 */ 16.99/9.24 16.99/9.24 public abstract class AbstractList extends AbstractCollection implements List { 16.99/9.24 /** 16.99/9.24 * Sole constructor. (For invocation by subclass constructors, typically 16.99/9.24 * implicit.) 16.99/9.24 */ 16.99/9.24 protected AbstractList() { 16.99/9.24 } 16.99/9.24 16.99/9.24 /** 16.99/9.24 * Appends the specified element to the end of this list (optional 16.99/9.24 * operation). 16.99/9.24 * 16.99/9.24 *

Lists that support this operation may place limitations on what 16.99/9.24 * elements may be added to this list. In particular, some 16.99/9.24 * lists will refuse to add null elements, and others will impose 16.99/9.24 * restrictions on the type of elements that may be added. List 16.99/9.24 * classes should clearly specify in their documentation any restrictions 16.99/9.24 * on what elements may be added. 16.99/9.24 * 16.99/9.24 *

This implementation calls {@code add(size(), e)}. 16.99/9.24 * 16.99/9.24 *

Note that this implementation throws an 16.99/9.24 * {@code UnsupportedOperationException} unless 16.99/9.24 * {@link #add(int, Object) add(int, E)} is overridden. 16.99/9.24 * 16.99/9.24 * @param e element to be appended to this list 16.99/9.24 * @return {@code true} (as specified by {@link Collection#add}) 16.99/9.24 * @throws UnsupportedOperationException if the {@code add} operation 16.99/9.24 * is not supported by this list 16.99/9.24 * @throws ClassCastException if the class of the specified element 16.99/9.24 * prevents it from being added to this list 16.99/9.24 * @throws NullPointerException if the specified element is null and this 16.99/9.24 * list does not permit null elements 16.99/9.24 * @throws IllegalArgumentException if some property of this element 16.99/9.24 * prevents it from being added to this list 16.99/9.24 */ 16.99/9.24 public boolean add(E e) { 16.99/9.24 add(size(), e); 16.99/9.24 return true; 16.99/9.24 } 16.99/9.24 16.99/9.24 /** 16.99/9.24 * {@inheritDoc} 16.99/9.24 * 16.99/9.24 * @throws IndexOutOfBoundsException {@inheritDoc} 16.99/9.24 */ 16.99/9.24 abstract public E get(int index); 16.99/9.24 16.99/9.24 /** 16.99/9.24 * {@inheritDoc} 16.99/9.24 * 16.99/9.24 *

This implementation always throws an 16.99/9.24 * {@code UnsupportedOperationException}. 16.99/9.24 * 16.99/9.24 * @throws UnsupportedOperationException {@inheritDoc} 16.99/9.24 * @throws ClassCastException {@inheritDoc} 16.99/9.24 * @throws NullPointerException {@inheritDoc} 16.99/9.24 * @throws IllegalArgumentException {@inheritDoc} 16.99/9.24 * @throws IndexOutOfBoundsException {@inheritDoc} 16.99/9.24 */ 16.99/9.24 public E set(int index, E element) { 16.99/9.24 throw new UnsupportedOperationException(); 16.99/9.24 } 16.99/9.24 16.99/9.24 /** 16.99/9.24 * {@inheritDoc} 16.99/9.24 * 16.99/9.24 *

This implementation always throws an 16.99/9.24 * {@code UnsupportedOperationException}. 16.99/9.24 * 16.99/9.24 * @throws UnsupportedOperationException {@inheritDoc} 16.99/9.24 * @throws ClassCastException {@inheritDoc} 16.99/9.24 * @throws NullPointerException {@inheritDoc} 16.99/9.24 * @throws IllegalArgumentException {@inheritDoc} 16.99/9.24 * @throws IndexOutOfBoundsException {@inheritDoc} 16.99/9.24 */ 16.99/9.24 public void add(int index, E element) { 16.99/9.24 throw new UnsupportedOperationException(); 16.99/9.24 } 16.99/9.24 16.99/9.24 /** 16.99/9.24 * {@inheritDoc} 16.99/9.24 * 16.99/9.24 *

This implementation always throws an 16.99/9.24 * {@code UnsupportedOperationException}. 16.99/9.24 * 16.99/9.24 * @throws UnsupportedOperationException {@inheritDoc} 16.99/9.24 * @throws IndexOutOfBoundsException {@inheritDoc} 16.99/9.24 */ 16.99/9.24 public E remove(int index) { 16.99/9.24 throw new UnsupportedOperationException(); 16.99/9.24 } 16.99/9.24 16.99/9.24 16.99/9.24 // Search Operations 16.99/9.24 16.99/9.24 /** 16.99/9.24 * {@inheritDoc} 16.99/9.24 * 16.99/9.24 *

This implementation first gets a list iterator (with 16.99/9.24 * {@code listIterator()}). Then, it iterates over the list until the 16.99/9.24 * specified element is found or the end of the list is reached. 16.99/9.24 * 16.99/9.24 * @throws ClassCastException {@inheritDoc} 16.99/9.24 * @throws NullPointerException {@inheritDoc} 16.99/9.24 */ 16.99/9.24 public int indexOf(Object o) { 16.99/9.24 ListIterator e = listIterator(); 16.99/9.24 if (o==null) { 16.99/9.24 while (e.hasNext()) 16.99/9.24 if (e.next()==null) 16.99/9.24 return e.previousIndex(); 16.99/9.24 } else { 16.99/9.24 while (e.hasNext()) 16.99/9.24 if (o.equals(e.next())) 16.99/9.24 return e.previousIndex(); 16.99/9.24 } 16.99/9.24 return -1; 16.99/9.24 } 16.99/9.24 16.99/9.24 /** 16.99/9.24 * {@inheritDoc} 16.99/9.24 * 16.99/9.24 *

This implementation first gets a list iterator that points to the end 16.99/9.24 * of the list (with {@code listIterator(size())}). Then, it iterates 16.99/9.24 * backwards over the list until the specified element is found, or the 16.99/9.24 * beginning of the list is reached. 16.99/9.24 * 16.99/9.24 * @throws ClassCastException {@inheritDoc} 16.99/9.24 * @throws NullPointerException {@inheritDoc} 16.99/9.24 */ 16.99/9.24 public int lastIndexOf(Object o) { 16.99/9.24 ListIterator e = listIterator(size()); 16.99/9.24 if (o==null) { 16.99/9.24 while (e.hasPrevious()) 16.99/9.24 if (e.previous()==null) 16.99/9.24 return e.nextIndex(); 16.99/9.24 } else { 16.99/9.24 while (e.hasPrevious()) 16.99/9.24 if (o.equals(e.previous())) 16.99/9.24 return e.nextIndex(); 16.99/9.24 } 16.99/9.24 return -1; 16.99/9.24 } 16.99/9.24 16.99/9.24 16.99/9.24 // Bulk Operations 16.99/9.24 16.99/9.24 /** 16.99/9.24 * Removes all of the elements from this list (optional operation). 16.99/9.24 * The list will be empty after this call returns. 16.99/9.24 * 16.99/9.24 *

This implementation calls {@code removeRange(0, size())}. 16.99/9.24 * 16.99/9.24 *

Note that this implementation throws an 16.99/9.24 * {@code UnsupportedOperationException} unless {@code remove(int 16.99/9.24 * index)} or {@code removeRange(int fromIndex, int toIndex)} is 16.99/9.24 * overridden. 16.99/9.24 * 16.99/9.24 * @throws UnsupportedOperationException if the {@code clear} operation 16.99/9.24 * is not supported by this list 16.99/9.24 */ 16.99/9.24 public void clear() { 16.99/9.24 removeRange(0, size()); 16.99/9.24 } 16.99/9.24 16.99/9.24 /** 16.99/9.24 * {@inheritDoc} 16.99/9.24 * 16.99/9.24 *

This implementation gets an iterator over the specified collection 16.99/9.24 * and iterates over it, inserting the elements obtained from the 16.99/9.24 * iterator into this list at the appropriate position, one at a time, 16.99/9.24 * using {@code add(int, E)}. 16.99/9.24 * Many implementations will override this method for efficiency. 16.99/9.24 * 16.99/9.24 *

Note that this implementation throws an 16.99/9.24 * {@code UnsupportedOperationException} unless 16.99/9.24 * {@link #add(int, Object) add(int, E)} is overridden. 16.99/9.24 * 16.99/9.24 * @throws UnsupportedOperationException {@inheritDoc} 16.99/9.24 * @throws ClassCastException {@inheritDoc} 16.99/9.24 * @throws NullPointerException {@inheritDoc} 16.99/9.24 * @throws IllegalArgumentException {@inheritDoc} 16.99/9.24 * @throws IndexOutOfBoundsException {@inheritDoc} 16.99/9.24 */ 16.99/9.24 public boolean addAll(int index, Collection c) { 16.99/9.24 rangeCheckForAdd(index); 16.99/9.24 boolean modified = false; 16.99/9.24 Iterator e = c.iterator(); 16.99/9.24 while (e.hasNext()) { 16.99/9.24 add(index++, e.next()); 16.99/9.24 modified = true; 16.99/9.24 } 16.99/9.24 return modified; 16.99/9.24 } 16.99/9.24 16.99/9.24 16.99/9.24 // Iterators 16.99/9.24 16.99/9.24 /** 16.99/9.24 * Returns an iterator over the elements in this list in proper sequence. 16.99/9.24 * 16.99/9.24 *

This implementation returns a straightforward implementation of the 16.99/9.24 * iterator interface, relying on the backing list's {@code size()}, 16.99/9.24 * {@code get(int)}, and {@code remove(int)} methods. 16.99/9.24 * 16.99/9.24 *

Note that the iterator returned by this method will throw an 16.99/9.24 * {@link UnsupportedOperationException} in response to its 16.99/9.24 * {@code remove} method unless the list's {@code remove(int)} method is 16.99/9.24 * overridden. 16.99/9.24 * 16.99/9.24 *

This implementation can be made to throw runtime exceptions in the 16.99/9.24 * face of concurrent modification, as described in the specification 16.99/9.24 * for the (protected) {@link #modCount} field. 16.99/9.24 * 16.99/9.24 * @return an iterator over the elements in this list in proper sequence 16.99/9.24 */ 16.99/9.24 public Iterator iterator() { 16.99/9.24 return new Itr(); 16.99/9.24 } 16.99/9.24 16.99/9.24 /** 16.99/9.24 * {@inheritDoc} 16.99/9.24 * 16.99/9.24 *

This implementation returns {@code listIterator(0)}. 16.99/9.24 * 16.99/9.24 * @see #listIterator(int) 16.99/9.24 */ 16.99/9.24 public ListIterator listIterator() { 16.99/9.24 return listIterator(0); 16.99/9.24 } 16.99/9.24 16.99/9.24 /** 16.99/9.24 * {@inheritDoc} 16.99/9.24 * 16.99/9.24 *

This implementation returns a straightforward implementation of the 16.99/9.24 * {@code ListIterator} interface that extends the implementation of the 16.99/9.24 * {@code Iterator} interface returned by the {@code iterator()} method. 16.99/9.24 * The {@code ListIterator} implementation relies on the backing list's 16.99/9.24 * {@code get(int)}, {@code set(int, E)}, {@code add(int, E)} 16.99/9.24 * and {@code remove(int)} methods. 16.99/9.24 * 16.99/9.24 *

Note that the list iterator returned by this implementation will 16.99/9.24 * throw an {@link UnsupportedOperationException} in response to its 16.99/9.24 * {@code remove}, {@code set} and {@code add} methods unless the 16.99/9.24 * list's {@code remove(int)}, {@code set(int, E)}, and 16.99/9.24 * {@code add(int, E)} methods are overridden. 16.99/9.24 * 16.99/9.24 *

This implementation can be made to throw runtime exceptions in the 16.99/9.24 * face of concurrent modification, as described in the specification for 16.99/9.24 * the (protected) {@link #modCount} field. 16.99/9.24 * 16.99/9.24 * @throws IndexOutOfBoundsException {@inheritDoc} 16.99/9.24 */ 16.99/9.24 public ListIterator listIterator(final int index) { 16.99/9.24 rangeCheckForAdd(index); 16.99/9.24 16.99/9.24 return new ListItr(index); 16.99/9.24 } 16.99/9.24 16.99/9.24 private class Itr implements Iterator { 16.99/9.24 /** 16.99/9.24 * Index of element to be returned by subsequent call to next. 16.99/9.24 */ 16.99/9.24 int cursor = 0; 16.99/9.24 16.99/9.24 /** 16.99/9.24 * Index of element returned by most recent call to next or 16.99/9.24 * previous. Reset to -1 if this element is deleted by a call 16.99/9.24 * to remove. 16.99/9.24 */ 16.99/9.24 int lastRet = -1; 16.99/9.24 16.99/9.24 /** 16.99/9.24 * The modCount value that the iterator believes that the backing 16.99/9.24 * List should have. If this expectation is violated, the iterator 16.99/9.24 * has detected concurrent modification. 16.99/9.24 */ 16.99/9.24 int expectedModCount = modCount; 16.99/9.24 16.99/9.24 public boolean hasNext() { 16.99/9.24 return cursor != size(); 16.99/9.24 } 16.99/9.24 16.99/9.24 public E next() { 16.99/9.24 checkForComodification(); 16.99/9.24 try { 16.99/9.24 int i = cursor; 16.99/9.24 E next = get(i); 16.99/9.24 lastRet = i; 16.99/9.24 cursor = i + 1; 16.99/9.24 return next; 16.99/9.24 } catch (IndexOutOfBoundsException e) { 16.99/9.24 checkForComodification(); 16.99/9.24 throw new NoSuchElementException(); 16.99/9.24 } 16.99/9.24 } 16.99/9.24 16.99/9.24 public void remove() { 16.99/9.24 if (lastRet < 0) 16.99/9.24 throw new IllegalStateException(); 16.99/9.24 checkForComodification(); 16.99/9.24 16.99/9.24 try { 16.99/9.24 AbstractList.this.remove(lastRet); 16.99/9.24 if (lastRet < cursor) 16.99/9.24 cursor--; 16.99/9.24 lastRet = -1; 16.99/9.24 expectedModCount = modCount; 16.99/9.24 } catch (IndexOutOfBoundsException e) { 16.99/9.24 throw new ConcurrentModificationException(); 16.99/9.24 } 16.99/9.24 } 16.99/9.24 16.99/9.24 final void checkForComodification() { 16.99/9.24 if (modCount != expectedModCount) 16.99/9.24 throw new ConcurrentModificationException(); 16.99/9.24 } 16.99/9.24 } 16.99/9.24 16.99/9.24 private class ListItr extends Itr implements ListIterator { 16.99/9.24 ListItr(int index) { 16.99/9.24 cursor = index; 16.99/9.24 } 16.99/9.24 16.99/9.24 public boolean hasPrevious() { 16.99/9.24 return cursor != 0; 16.99/9.24 } 16.99/9.24 16.99/9.24 public E previous() { 16.99/9.24 checkForComodification(); 16.99/9.24 try { 16.99/9.24 int i = cursor - 1; 16.99/9.24 E previous = get(i); 16.99/9.24 lastRet = cursor = i; 16.99/9.24 return previous; 16.99/9.24 } catch (IndexOutOfBoundsException e) { 16.99/9.24 checkForComodification(); 16.99/9.24 throw new NoSuchElementException(); 16.99/9.24 } 16.99/9.24 } 16.99/9.24 16.99/9.24 public int nextIndex() { 16.99/9.24 return cursor; 16.99/9.24 } 16.99/9.24 16.99/9.24 public int previousIndex() { 16.99/9.24 return cursor-1; 16.99/9.24 } 16.99/9.24 16.99/9.24 public void set(E e) { 16.99/9.24 if (lastRet < 0) 16.99/9.24 throw new IllegalStateException(); 16.99/9.24 checkForComodification(); 16.99/9.24 16.99/9.24 try { 16.99/9.24 AbstractList.this.set(lastRet, e); 16.99/9.24 expectedModCount = modCount; 16.99/9.24 } catch (IndexOutOfBoundsException ex) { 16.99/9.24 throw new ConcurrentModificationException(); 16.99/9.24 } 16.99/9.24 } 16.99/9.24 16.99/9.24 public void add(E e) { 16.99/9.24 checkForComodification(); 16.99/9.24 16.99/9.24 try { 16.99/9.24 int i = cursor; 16.99/9.24 AbstractList.this.add(i, e); 16.99/9.24 lastRet = -1; 16.99/9.24 cursor = i + 1; 16.99/9.24 expectedModCount = modCount; 16.99/9.24 } catch (IndexOutOfBoundsException ex) { 16.99/9.24 throw new ConcurrentModificationException(); 16.99/9.24 } 16.99/9.24 } 16.99/9.24 } 16.99/9.24 16.99/9.24 /** 16.99/9.24 * {@inheritDoc} 16.99/9.24 * 16.99/9.24 *

This implementation returns a list that subclasses 16.99/9.24 * {@code AbstractList}. The subclass stores, in private fields, the 16.99/9.24 * offset of the subList within the backing list, the size of the subList 16.99/9.24 * (which can change over its lifetime), and the expected 16.99/9.24 * {@code modCount} value of the backing list. There are two variants 16.99/9.24 * of the subclass, one of which implements {@code RandomAccess}. 16.99/9.24 * If this list implements {@code RandomAccess} the returned list will 16.99/9.24 * be an instance of the subclass that implements {@code RandomAccess}. 16.99/9.24 * 16.99/9.24 *

The subclass's {@code set(int, E)}, {@code get(int)}, 16.99/9.24 * {@code add(int, E)}, {@code remove(int)}, {@code addAll(int, 16.99/9.24 * Collection)} and {@code removeRange(int, int)} methods all 16.99/9.24 * delegate to the corresponding methods on the backing abstract list, 16.99/9.24 * after bounds-checking the index and adjusting for the offset. The 16.99/9.24 * {@code addAll(Collection c)} method merely returns {@code addAll(size, 16.99/9.24 * c)}. 16.99/9.24 * 16.99/9.24 *

The {@code listIterator(int)} method returns a "wrapper object" 16.99/9.24 * over a list iterator on the backing list, which is created with the 16.99/9.24 * corresponding method on the backing list. The {@code iterator} method 16.99/9.24 * merely returns {@code listIterator()}, and the {@code size} method 16.99/9.24 * merely returns the subclass's {@code size} field. 16.99/9.24 * 16.99/9.24 *

All methods first check to see if the actual {@code modCount} of 16.99/9.24 * the backing list is equal to its expected value, and throw a 16.99/9.24 * {@code ConcurrentModificationException} if it is not. 16.99/9.24 * 16.99/9.24 * @throws IndexOutOfBoundsException if an endpoint index value is out of range 16.99/9.24 * {@code (fromIndex < 0 || toIndex > size)} 16.99/9.24 * @throws IllegalArgumentException if the endpoint indices are out of order 16.99/9.24 * {@code (fromIndex > toIndex)} 16.99/9.24 */ 16.99/9.24 public List subList(int fromIndex, int toIndex) { 16.99/9.24 return (this instanceof RandomAccess ? 16.99/9.24 new RandomAccessSubList(this, fromIndex, toIndex) : 16.99/9.24 new SubList(this, fromIndex, toIndex)); 16.99/9.24 } 16.99/9.24 16.99/9.24 // Comparison and hashing 16.99/9.24 16.99/9.24 /** 16.99/9.24 * Compares the specified object with this list for equality. Returns 16.99/9.24 * {@code true} if and only if the specified object is also a list, both 16.99/9.24 * lists have the same size, and all corresponding pairs of elements in 16.99/9.24 * the two lists are equal. (Two elements {@code e1} and 16.99/9.24 * {@code e2} are equal if {@code (e1==null ? e2==null : 16.99/9.24 * e1.equals(e2))}.) In other words, two lists are defined to be 16.99/9.24 * equal if they contain the same elements in the same order.

16.99/9.24 * 16.99/9.24 * This implementation first checks if the specified object is this 16.99/9.24 * list. If so, it returns {@code true}; if not, it checks if the 16.99/9.24 * specified object is a list. If not, it returns {@code false}; if so, 16.99/9.24 * it iterates over both lists, comparing corresponding pairs of elements. 16.99/9.24 * If any comparison returns {@code false}, this method returns 16.99/9.24 * {@code false}. If either iterator runs out of elements before the 16.99/9.24 * other it returns {@code false} (as the lists are of unequal length); 16.99/9.24 * otherwise it returns {@code true} when the iterations complete. 16.99/9.24 * 16.99/9.24 * @param o the object to be compared for equality with this list 16.99/9.24 * @return {@code true} if the specified object is equal to this list 16.99/9.24 */ 16.99/9.24 public boolean equals(Object o) { 16.99/9.24 if (o == this) 16.99/9.24 return true; 16.99/9.24 if (!(o instanceof List)) 16.99/9.24 return false; 16.99/9.24 16.99/9.24 ListIterator e1 = listIterator(); 16.99/9.24 ListIterator e2 = ((List) o).listIterator(); 16.99/9.24 while(e1.hasNext() && e2.hasNext()) { 16.99/9.24 E o1 = e1.next(); 16.99/9.24 Object o2 = e2.next(); 16.99/9.24 if (!(o1==null ? o2==null : o1.equals(o2))) 16.99/9.24 return false; 16.99/9.24 } 16.99/9.24 return !(e1.hasNext() || e2.hasNext()); 16.99/9.24 } 16.99/9.24 16.99/9.24 /** 16.99/9.24 * Returns the hash code value for this list. 16.99/9.24 * 16.99/9.24 *

This implementation uses exactly the code that is used to define the 16.99/9.24 * list hash function in the documentation for the {@link List#hashCode} 16.99/9.24 * method. 16.99/9.24 * 16.99/9.24 * @return the hash code value for this list 16.99/9.24 */ 16.99/9.24 public int hashCode() { 16.99/9.24 int hashCode = 1; 16.99/9.24 Iterator it = this.iterator(); 16.99/9.24 while (it.hasNext()) { 16.99/9.24 E e = it.next(); 16.99/9.24 hashCode = 31*hashCode + (e==null ? 0 : e.hashCode()); 16.99/9.24 } 16.99/9.24 return hashCode; 16.99/9.24 } 16.99/9.24 16.99/9.24 /** 16.99/9.24 * Removes from this list all of the elements whose index is between 16.99/9.24 * {@code fromIndex}, inclusive, and {@code toIndex}, exclusive. 16.99/9.24 * Shifts any succeeding elements to the left (reduces their index). 16.99/9.24 * This call shortens the list by {@code (toIndex - fromIndex)} elements. 16.99/9.24 * (If {@code toIndex==fromIndex}, this operation has no effect.) 16.99/9.24 * 16.99/9.24 *

This method is called by the {@code clear} operation on this list 16.99/9.24 * and its subLists. Overriding this method to take advantage of 16.99/9.24 * the internals of the list implementation can substantially 16.99/9.24 * improve the performance of the {@code clear} operation on this list 16.99/9.24 * and its subLists. 16.99/9.24 * 16.99/9.24 *

This implementation gets a list iterator positioned before 16.99/9.24 * {@code fromIndex}, and repeatedly calls {@code ListIterator.next} 16.99/9.24 * followed by {@code ListIterator.remove} until the entire range has 16.99/9.24 * been removed. Note: if {@code ListIterator.remove} requires linear 16.99/9.24 * time, this implementation requires quadratic time. 16.99/9.24 * 16.99/9.24 * @param fromIndex index of first element to be removed 16.99/9.24 * @param toIndex index after last element to be removed 16.99/9.24 */ 16.99/9.24 protected void removeRange(int fromIndex, int toIndex) { 16.99/9.24 ListIterator it = listIterator(fromIndex); 16.99/9.24 for (int i=0, n=toIndex-fromIndex; istructurally modified. 16.99/9.24 * Structural modifications are those that change the size of the 16.99/9.24 * list, or otherwise perturb it in such a fashion that iterations in 16.99/9.24 * progress may yield incorrect results. 16.99/9.24 * 16.99/9.24 *

This field is used by the iterator and list iterator implementation 16.99/9.24 * returned by the {@code iterator} and {@code listIterator} methods. 16.99/9.24 * If the value of this field changes unexpectedly, the iterator (or list 16.99/9.24 * iterator) will throw a {@code ConcurrentModificationException} in 16.99/9.24 * response to the {@code next}, {@code remove}, {@code previous}, 16.99/9.24 * {@code set} or {@code add} operations. This provides 16.99/9.24 * fail-fast behavior, rather than non-deterministic behavior in 16.99/9.24 * the face of concurrent modification during iteration. 16.99/9.24 * 16.99/9.24 *

Use of this field by subclasses is optional. If a subclass 16.99/9.24 * wishes to provide fail-fast iterators (and list iterators), then it 16.99/9.24 * merely has to increment this field in its {@code add(int, E)} and 16.99/9.24 * {@code remove(int)} methods (and any other methods that it overrides 16.99/9.24 * that result in structural modifications to the list). A single call to 16.99/9.24 * {@code add(int, E)} or {@code remove(int)} must add no more than 16.99/9.24 * one to this field, or the iterators (and list iterators) will throw 16.99/9.24 * bogus {@code ConcurrentModificationExceptions}. If an implementation 16.99/9.24 * does not wish to provide fail-fast iterators, this field may be 16.99/9.24 * ignored. 16.99/9.24 */ 16.99/9.24 protected transient int modCount = 0; 16.99/9.24 16.99/9.24 private void rangeCheckForAdd(int index) { 16.99/9.24 if (index < 0 || index > size()) 16.99/9.24 throw new IndexOutOfBoundsException(outOfBoundsMsg(index)); 16.99/9.24 } 16.99/9.24 16.99/9.24 private String outOfBoundsMsg(int index) { 16.99/9.24 return ""; 16.99/9.24 } 16.99/9.24 } 16.99/9.24 16.99/9.24 class SubList extends AbstractList { 16.99/9.24 private final AbstractList l; 16.99/9.24 private final int offset; 16.99/9.24 private int size; 16.99/9.24 16.99/9.24 SubList(AbstractList list, int fromIndex, int toIndex) { 16.99/9.24 if (fromIndex < 0) 16.99/9.24 throw new IndexOutOfBoundsException(); 16.99/9.24 if (toIndex > list.size()) 16.99/9.24 throw new IndexOutOfBoundsException(); 16.99/9.24 if (fromIndex > toIndex) 16.99/9.24 throw new IllegalArgumentException(); 16.99/9.24 l = list; 16.99/9.24 offset = fromIndex; 16.99/9.24 size = toIndex - fromIndex; 16.99/9.24 this.modCount = l.modCount; 16.99/9.24 } 16.99/9.24 16.99/9.24 public E set(int index, E element) { 16.99/9.24 rangeCheck(index); 16.99/9.24 checkForComodification(); 16.99/9.24 return l.set(index+offset, element); 16.99/9.24 } 16.99/9.24 16.99/9.24 public E get(int index) { 16.99/9.24 rangeCheck(index); 16.99/9.24 checkForComodification(); 16.99/9.24 return l.get(index+offset); 16.99/9.24 } 16.99/9.24 16.99/9.24 public int size() { 16.99/9.24 checkForComodification(); 16.99/9.24 return size; 16.99/9.24 } 16.99/9.24 16.99/9.24 public void add(int index, E element) { 16.99/9.24 rangeCheckForAdd(index); 16.99/9.24 checkForComodification(); 16.99/9.24 l.add(index+offset, element); 16.99/9.24 this.modCount = l.modCount; 16.99/9.24 size++; 16.99/9.24 } 16.99/9.24 16.99/9.24 public E remove(int index) { 16.99/9.24 rangeCheck(index); 16.99/9.24 checkForComodification(); 16.99/9.24 E result = l.remove(index+offset); 16.99/9.24 this.modCount = l.modCount; 16.99/9.24 size--; 16.99/9.24 return result; 16.99/9.24 } 16.99/9.24 16.99/9.24 protected void removeRange(int fromIndex, int toIndex) { 16.99/9.24 checkForComodification(); 16.99/9.24 l.removeRange(fromIndex+offset, toIndex+offset); 16.99/9.24 this.modCount = l.modCount; 16.99/9.24 size -= (toIndex-fromIndex); 16.99/9.24 } 16.99/9.24 16.99/9.24 public boolean addAll(Collection c) { 16.99/9.24 return addAll(size, c); 16.99/9.24 } 16.99/9.24 16.99/9.24 public boolean addAll(int index, Collection c) { 16.99/9.24 rangeCheckForAdd(index); 16.99/9.24 int cSize = c.size(); 16.99/9.24 if (cSize==0) 16.99/9.24 return false; 16.99/9.24 16.99/9.24 checkForComodification(); 16.99/9.24 l.addAll(offset+index, c); 16.99/9.24 this.modCount = l.modCount; 16.99/9.24 size += cSize; 16.99/9.24 return true; 16.99/9.24 } 16.99/9.24 16.99/9.24 public Iterator iterator() { 16.99/9.24 return listIterator(); 16.99/9.24 } 16.99/9.24 16.99/9.24 public ListIterator listIterator(final int index) { 16.99/9.24 checkForComodification(); 16.99/9.24 rangeCheckForAdd(index); 16.99/9.24 16.99/9.24 return new ListIterator() { 16.99/9.24 private final ListIterator i = l.listIterator(index+offset); 16.99/9.24 16.99/9.24 public boolean hasNext() { 16.99/9.24 return nextIndex() < size; 16.99/9.24 } 16.99/9.24 16.99/9.24 public E next() { 16.99/9.24 if (hasNext()) 16.99/9.24 return i.next(); 16.99/9.24 else 16.99/9.24 throw new NoSuchElementException(); 16.99/9.24 } 16.99/9.24 16.99/9.24 public boolean hasPrevious() { 16.99/9.24 return previousIndex() >= 0; 16.99/9.24 } 16.99/9.24 16.99/9.24 public E previous() { 16.99/9.24 if (hasPrevious()) 16.99/9.24 return i.previous(); 16.99/9.24 else 16.99/9.24 throw new NoSuchElementException(); 16.99/9.24 } 16.99/9.24 16.99/9.24 public int nextIndex() { 16.99/9.24 return i.nextIndex() - offset; 16.99/9.24 } 16.99/9.24 16.99/9.24 public int previousIndex() { 16.99/9.24 return i.previousIndex() - offset; 16.99/9.24 } 16.99/9.24 16.99/9.24 public void remove() { 16.99/9.24 i.remove(); 16.99/9.24 SubList.this.modCount = l.modCount; 16.99/9.24 size--; 16.99/9.24 } 16.99/9.24 16.99/9.24 public void set(E e) { 16.99/9.24 i.set(e); 16.99/9.24 } 16.99/9.24 16.99/9.24 public void add(E e) { 16.99/9.24 i.add(e); 16.99/9.24 SubList.this.modCount = l.modCount; 16.99/9.24 size++; 16.99/9.24 } 16.99/9.24 }; 16.99/9.24 } 16.99/9.24 16.99/9.24 public List subList(int fromIndex, int toIndex) { 16.99/9.24 return new SubList(this, fromIndex, toIndex); 16.99/9.24 } 16.99/9.24 16.99/9.24 private void rangeCheck(int index) { 16.99/9.24 if (index < 0 || index >= size) 16.99/9.24 throw new IndexOutOfBoundsException(outOfBoundsMsg(index)); 16.99/9.24 } 16.99/9.24 16.99/9.24 private void rangeCheckForAdd(int index) { 16.99/9.24 if (index < 0 || index > size) 16.99/9.24 throw new IndexOutOfBoundsException(outOfBoundsMsg(index)); 16.99/9.24 } 16.99/9.24 16.99/9.24 private String outOfBoundsMsg(int index) { 16.99/9.24 return ""; 16.99/9.24 } 16.99/9.24 16.99/9.24 private void checkForComodification() { 16.99/9.24 if (this.modCount != l.modCount) 16.99/9.24 throw new ConcurrentModificationException(); 16.99/9.24 } 16.99/9.24 } 16.99/9.24 16.99/9.24 class RandomAccessSubList extends SubList implements RandomAccess { 16.99/9.24 RandomAccessSubList(AbstractList list, int fromIndex, int toIndex) { 16.99/9.24 super(list, fromIndex, toIndex); 16.99/9.24 } 16.99/9.24 16.99/9.24 public List subList(int fromIndex, int toIndex) { 16.99/9.24 return new RandomAccessSubList(this, fromIndex, toIndex); 16.99/9.24 } 16.99/9.24 } 16.99/9.24 16.99/9.24 16.99/9.24 /* 16.99/9.24 * Copyright 1997-2006 Sun Microsystems, Inc. All Rights Reserved. 16.99/9.24 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 16.99/9.24 * 16.99/9.24 * This code is free software; you can redistribute it and/or modify it 16.99/9.24 * under the terms of the GNU General Public License version 2 only, as 16.99/9.24 * published by the Free Software Foundation. Sun designates this 16.99/9.24 * particular file as subject to the "Classpath" exception as provided 16.99/9.24 * by Sun in the LICENSE file that accompanied this code. 16.99/9.24 * 16.99/9.24 * This code is distributed in the hope that it will be useful, but WITHOUT 16.99/9.24 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or 16.99/9.24 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License 16.99/9.24 * version 2 for more details (a copy is included in the LICENSE file that 16.99/9.24 * accompanied this code). 16.99/9.24 * 16.99/9.24 * You should have received a copy of the GNU General Public License version 16.99/9.24 * 2 along with this work; if not, write to the Free Software Foundation, 16.99/9.24 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. 16.99/9.24 * 16.99/9.24 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara, 16.99/9.24 * CA 95054 USA or visit www.sun.com if you need additional information or 16.99/9.24 * have any questions. 16.99/9.24 */ 16.99/9.24 16.99/9.24 package javaUtilEx; 16.99/9.24 16.99/9.24 /** 16.99/9.24 * This class provides a skeletal implementation of the List 16.99/9.24 * interface to minimize the effort required to implement this interface 16.99/9.24 * backed by a "sequential access" data store (such as a linked list). For 16.99/9.24 * random access data (such as an array), AbstractList should be used 16.99/9.24 * in preference to this class.

16.99/9.24 * 16.99/9.24 * This class is the opposite of the AbstractList class in the sense 16.99/9.24 * that it implements the "random access" methods (get(int index), 16.99/9.24 * set(int index, E element), add(int index, E element) and 16.99/9.24 * remove(int index)) on top of the list's list iterator, instead of 16.99/9.24 * the other way around.

16.99/9.24 * 16.99/9.24 * To implement a list the programmer needs only to extend this class and 16.99/9.24 * provide implementations for the listIterator and size 16.99/9.24 * methods. For an unmodifiable list, the programmer need only implement the 16.99/9.24 * list iterator's hasNext, next, hasPrevious, 16.99/9.24 * previous and index methods.

16.99/9.24 * 16.99/9.24 * For a modifiable list the programmer should additionally implement the list 16.99/9.24 * iterator's set method. For a variable-size list the programmer 16.99/9.24 * should additionally implement the list iterator's remove and 16.99/9.24 * add methods.

16.99/9.24 * 16.99/9.24 * The programmer should generally provide a void (no argument) and collection 16.99/9.24 * constructor, as per the recommendation in the Collection interface 16.99/9.24 * specification.

16.99/9.24 * 16.99/9.24 * This class is a member of the 16.99/9.24 * 16.99/9.24 * Java Collections Framework. 16.99/9.24 * 16.99/9.24 * @author Josh Bloch 16.99/9.24 * @author Neal Gafter 16.99/9.24 * @see Collection 16.99/9.24 * @see List 16.99/9.24 * @see AbstractList 16.99/9.24 * @see AbstractCollection 16.99/9.24 * @since 1.2 16.99/9.24 */ 16.99/9.24 16.99/9.24 public abstract class AbstractSequentialList extends AbstractList { 16.99/9.24 /** 16.99/9.24 * Sole constructor. (For invocation by subclass constructors, typically 16.99/9.24 * implicit.) 16.99/9.24 */ 16.99/9.24 protected AbstractSequentialList() { 16.99/9.24 } 16.99/9.24 16.99/9.24 /** 16.99/9.24 * Returns the element at the specified position in this list. 16.99/9.24 * 16.99/9.24 *

This implementation first gets a list iterator pointing to the 16.99/9.24 * indexed element (with listIterator(index)). Then, it gets 16.99/9.24 * the element using ListIterator.next and returns it. 16.99/9.24 * 16.99/9.24 * @throws IndexOutOfBoundsException {@inheritDoc} 16.99/9.24 */ 16.99/9.24 public E get(int index) { 16.99/9.24 try { 16.99/9.24 return listIterator(index).next(); 16.99/9.24 } catch (NoSuchElementException exc) { 16.99/9.24 throw new IndexOutOfBoundsException(); 16.99/9.24 } 16.99/9.24 } 16.99/9.24 16.99/9.24 /** 16.99/9.24 * Replaces the element at the specified position in this list with the 16.99/9.24 * specified element (optional operation). 16.99/9.24 * 16.99/9.24 *

This implementation first gets a list iterator pointing to the 16.99/9.24 * indexed element (with listIterator(index)). Then, it gets 16.99/9.24 * the current element using ListIterator.next and replaces it 16.99/9.24 * with ListIterator.set. 16.99/9.24 * 16.99/9.24 *

Note that this implementation will throw an 16.99/9.24 * UnsupportedOperationException if the list iterator does not 16.99/9.24 * implement the set operation. 16.99/9.24 * 16.99/9.24 * @throws UnsupportedOperationException {@inheritDoc} 16.99/9.24 * @throws ClassCastException {@inheritDoc} 16.99/9.24 * @throws NullPointerException {@inheritDoc} 16.99/9.24 * @throws IllegalArgumentException {@inheritDoc} 16.99/9.24 * @throws IndexOutOfBoundsException {@inheritDoc} 16.99/9.24 */ 16.99/9.24 public E set(int index, E element) { 16.99/9.24 try { 16.99/9.24 ListIterator e = listIterator(index); 16.99/9.24 E oldVal = e.next(); 16.99/9.24 e.set(element); 16.99/9.24 return oldVal; 16.99/9.24 } catch (NoSuchElementException exc) { 16.99/9.24 throw new IndexOutOfBoundsException(); 16.99/9.24 } 16.99/9.24 } 16.99/9.24 16.99/9.24 /** 16.99/9.24 * Inserts the specified element at the specified position in this list 16.99/9.24 * (optional operation). Shifts the element currently at that position 16.99/9.24 * (if any) and any subsequent elements to the right (adds one to their 16.99/9.24 * indices). 16.99/9.24 * 16.99/9.24 *

This implementation first gets a list iterator pointing to the 16.99/9.24 * indexed element (with listIterator(index)). Then, it 16.99/9.24 * inserts the specified element with ListIterator.add. 16.99/9.24 * 16.99/9.24 *

Note that this implementation will throw an 16.99/9.24 * UnsupportedOperationException if the list iterator does not 16.99/9.24 * implement the add operation. 16.99/9.24 * 16.99/9.24 * @throws UnsupportedOperationException {@inheritDoc} 16.99/9.24 * @throws ClassCastException {@inheritDoc} 16.99/9.24 * @throws NullPointerException {@inheritDoc} 16.99/9.24 * @throws IllegalArgumentException {@inheritDoc} 16.99/9.24 * @throws IndexOutOfBoundsException {@inheritDoc} 16.99/9.24 */ 16.99/9.24 public void add(int index, E element) { 16.99/9.24 try { 16.99/9.24 listIterator(index).add(element); 16.99/9.24 } catch (NoSuchElementException exc) { 16.99/9.24 throw new IndexOutOfBoundsException(); 16.99/9.24 } 16.99/9.24 } 16.99/9.24 16.99/9.24 /** 16.99/9.24 * Removes the element at the specified position in this list (optional 16.99/9.24 * operation). Shifts any subsequent elements to the left (subtracts one 16.99/9.24 * from their indices). Returns the element that was removed from the 16.99/9.24 * list. 16.99/9.24 * 16.99/9.24 *

This implementation first gets a list iterator pointing to the 16.99/9.24 * indexed element (with listIterator(index)). Then, it removes 16.99/9.24 * the element with ListIterator.remove. 16.99/9.24 * 16.99/9.24 *

Note that this implementation will throw an 16.99/9.24 * UnsupportedOperationException if the list iterator does not 16.99/9.24 * implement the remove operation. 16.99/9.24 * 16.99/9.24 * @throws UnsupportedOperationException {@inheritDoc} 16.99/9.24 * @throws IndexOutOfBoundsException {@inheritDoc} 16.99/9.24 */ 16.99/9.24 public E remove(int index) { 16.99/9.24 try { 16.99/9.24 ListIterator e = listIterator(index); 16.99/9.24 E outCast = e.next(); 16.99/9.24 e.remove(); 16.99/9.24 return outCast; 16.99/9.24 } catch (NoSuchElementException exc) { 16.99/9.24 throw new IndexOutOfBoundsException(); 16.99/9.24 } 16.99/9.24 } 16.99/9.24 16.99/9.24 16.99/9.24 // Bulk Operations 16.99/9.24 16.99/9.24 /** 16.99/9.24 * Inserts all of the elements in the specified collection into this 16.99/9.24 * list at the specified position (optional operation). Shifts the 16.99/9.24 * element currently at that position (if any) and any subsequent 16.99/9.24 * elements to the right (increases their indices). The new elements 16.99/9.24 * will appear in this list in the order that they are returned by the 16.99/9.24 * specified collection's iterator. The behavior of this operation is 16.99/9.24 * undefined if the specified collection is modified while the 16.99/9.24 * operation is in progress. (Note that this will occur if the specified 16.99/9.24 * collection is this list, and it's nonempty.) 16.99/9.24 * 16.99/9.24 *

This implementation gets an iterator over the specified collection and 16.99/9.24 * a list iterator over this list pointing to the indexed element (with 16.99/9.24 * listIterator(index)). Then, it iterates over the specified 16.99/9.24 * collection, inserting the elements obtained from the iterator into this 16.99/9.24 * list, one at a time, using ListIterator.add followed by 16.99/9.24 * ListIterator.next (to skip over the added element). 16.99/9.24 * 16.99/9.24 *

Note that this implementation will throw an 16.99/9.24 * UnsupportedOperationException if the list iterator returned by 16.99/9.24 * the listIterator method does not implement the add 16.99/9.24 * operation. 16.99/9.24 * 16.99/9.24 * @throws UnsupportedOperationException {@inheritDoc} 16.99/9.24 * @throws ClassCastException {@inheritDoc} 16.99/9.24 * @throws NullPointerException {@inheritDoc} 16.99/9.24 * @throws IllegalArgumentException {@inheritDoc} 16.99/9.24 * @throws IndexOutOfBoundsException {@inheritDoc} 16.99/9.24 */ 16.99/9.24 public boolean addAll(int index, Collection c) { 16.99/9.24 try { 16.99/9.24 boolean modified = false; 16.99/9.24 ListIterator e1 = listIterator(index); 16.99/9.24 Iterator e2 = c.iterator(); 16.99/9.24 while (e2.hasNext()) { 16.99/9.24 e1.add(e2.next()); 16.99/9.24 modified = true; 16.99/9.24 } 16.99/9.24 return modified; 16.99/9.24 } catch (NoSuchElementException exc) { 16.99/9.24 throw new IndexOutOfBoundsException(); 16.99/9.24 } 16.99/9.24 } 16.99/9.24 16.99/9.24 16.99/9.24 // Iterators 16.99/9.24 16.99/9.24 /** 16.99/9.24 * Returns an iterator over the elements in this list (in proper 16.99/9.24 * sequence).

16.99/9.24 * 16.99/9.24 * This implementation merely returns a list iterator over the list. 16.99/9.24 * 16.99/9.24 * @return an iterator over the elements in this list (in proper sequence) 16.99/9.24 */ 16.99/9.24 public Iterator iterator() { 16.99/9.24 return listIterator(); 16.99/9.24 } 16.99/9.24 16.99/9.24 /** 16.99/9.24 * Returns a list iterator over the elements in this list (in proper 16.99/9.24 * sequence). 16.99/9.24 * 16.99/9.24 * @param index index of first element to be returned from the list 16.99/9.24 * iterator (by a call to the next method) 16.99/9.24 * @return a list iterator over the elements in this list (in proper 16.99/9.24 * sequence) 16.99/9.24 * @throws IndexOutOfBoundsException {@inheritDoc} 16.99/9.24 */ 16.99/9.24 public abstract ListIterator listIterator(int index); 16.99/9.24 } 16.99/9.24 16.99/9.24 16.99/9.24 /* 16.99/9.24 * Copyright 1997-2006 Sun Microsystems, Inc. All Rights Reserved. 16.99/9.24 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 16.99/9.24 * 16.99/9.24 * This code is free software; you can redistribute it and/or modify it 16.99/9.24 * under the terms of the GNU General Public License version 2 only, as 16.99/9.24 * published by the Free Software Foundation. Sun designates this 16.99/9.24 * particular file as subject to the "Classpath" exception as provided 16.99/9.24 * by Sun in the LICENSE file that accompanied this code. 16.99/9.24 * 16.99/9.24 * This code is distributed in the hope that it will be useful, but WITHOUT 16.99/9.24 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or 16.99/9.24 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License 16.99/9.24 * version 2 for more details (a copy is included in the LICENSE file that 16.99/9.24 * accompanied this code). 16.99/9.24 * 16.99/9.24 * You should have received a copy of the GNU General Public License version 16.99/9.24 * 2 along with this work; if not, write to the Free Software Foundation, 16.99/9.24 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. 16.99/9.24 * 16.99/9.24 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara, 16.99/9.24 * CA 95054 USA or visit www.sun.com if you need additional information or 16.99/9.24 * have any questions. 16.99/9.24 */ 16.99/9.24 16.99/9.24 package javaUtilEx; 16.99/9.24 16.99/9.24 /** 16.99/9.24 * The root interface in the collection hierarchy. A collection 16.99/9.24 * represents a group of objects, known as its elements. Some 16.99/9.24 * collections allow duplicate elements and others do not. Some are ordered 16.99/9.24 * and others unordered. The JDK does not provide any direct 16.99/9.24 * implementations of this interface: it provides implementations of more 16.99/9.24 * specific subinterfaces like Set and List. This interface 16.99/9.24 * is typically used to pass collections around and manipulate them where 16.99/9.24 * maximum generality is desired. 16.99/9.24 * 16.99/9.24 *

Bags or multisets (unordered collections that may contain 16.99/9.24 * duplicate elements) should implement this interface directly. 16.99/9.24 * 16.99/9.24 *

All general-purpose Collection implementation classes (which 16.99/9.24 * typically implement Collection indirectly through one of its 16.99/9.24 * subinterfaces) should provide two "standard" constructors: a void (no 16.99/9.24 * arguments) constructor, which creates an empty collection, and a 16.99/9.24 * constructor with a single argument of type Collection, which 16.99/9.24 * creates a new collection with the same elements as its argument. In 16.99/9.24 * effect, the latter constructor allows the user to copy any collection, 16.99/9.24 * producing an equivalent collection of the desired implementation type. 16.99/9.24 * There is no way to enforce this convention (as interfaces cannot contain 16.99/9.24 * constructors) but all of the general-purpose Collection 16.99/9.24 * implementations in the Java platform libraries comply. 16.99/9.24 * 16.99/9.24 *

The "destructive" methods contained in this interface, that is, the 16.99/9.24 * methods that modify the collection on which they operate, are specified to 16.99/9.24 * throw UnsupportedOperationException if this collection does not 16.99/9.24 * support the operation. If this is the case, these methods may, but are not 16.99/9.24 * required to, throw an UnsupportedOperationException if the 16.99/9.24 * invocation would have no effect on the collection. For example, invoking 16.99/9.24 * the {@link #addAll(Collection)} method on an unmodifiable collection may, 16.99/9.24 * but is not required to, throw the exception if the collection to be added 16.99/9.24 * is empty. 16.99/9.24 * 16.99/9.24 *

Some collection implementations have restrictions on the elements that 16.99/9.24 * they may contain. For example, some implementations prohibit null elements, 16.99/9.24 * and some have restrictions on the types of their elements. Attempting to 16.99/9.24 * add an ineligible element throws an unchecked exception, typically 16.99/9.24 * NullPointerException or ClassCastException. Attempting 16.99/9.24 * to query the presence of an ineligible element may throw an exception, 16.99/9.24 * or it may simply return false; some implementations will exhibit the former 16.99/9.24 * behavior and some will exhibit the latter. More generally, attempting an 16.99/9.24 * operation on an ineligible element whose completion would not result in 16.99/9.24 * the insertion of an ineligible element into the collection may throw an 16.99/9.24 * exception or it may succeed, at the option of the implementation. 16.99/9.24 * Such exceptions are marked as "optional" in the specification for this 16.99/9.24 * interface. 16.99/9.24 * 16.99/9.24 *

It is up to each collection to determine its own synchronization 16.99/9.24 * policy. In the absence of a stronger guarantee by the 16.99/9.24 * implementation, undefined behavior may result from the invocation 16.99/9.24 * of any method on a collection that is being mutated by another 16.99/9.24 * thread; this includes direct invocations, passing the collection to 16.99/9.24 * a method that might perform invocations, and using an existing 16.99/9.24 * iterator to examine the collection. 16.99/9.24 * 16.99/9.24 *

Many methods in Collections Framework interfaces are defined in 16.99/9.24 * terms of the {@link Object#equals(Object) equals} method. For example, 16.99/9.24 * the specification for the {@link #contains(Object) contains(Object o)} 16.99/9.24 * method says: "returns true if and only if this collection 16.99/9.24 * contains at least one element e such that 16.99/9.24 * (o==null ? e==null : o.equals(e))." This specification should 16.99/9.24 * not be construed to imply that invoking Collection.contains 16.99/9.24 * with a non-null argument o will cause o.equals(e) to be 16.99/9.24 * invoked for any element e. Implementations are free to implement 16.99/9.24 * optimizations whereby the equals invocation is avoided, for 16.99/9.24 * example, by first comparing the hash codes of the two elements. (The 16.99/9.24 * {@link Object#hashCode()} specification guarantees that two objects with 16.99/9.24 * unequal hash codes cannot be equal.) More generally, implementations of 16.99/9.24 * the various Collections Framework interfaces are free to take advantage of 16.99/9.24 * the specified behavior of underlying {@link Object} methods wherever the 16.99/9.24 * implementor deems it appropriate. 16.99/9.24 * 16.99/9.24 *

This interface is a member of the 16.99/9.24 * 16.99/9.24 * Java Collections Framework. 16.99/9.24 * 16.99/9.24 * @author Josh Bloch 16.99/9.24 * @author Neal Gafter 16.99/9.24 * @see Set 16.99/9.24 * @see List 16.99/9.24 * @see Map 16.99/9.24 * @see SortedSet 16.99/9.24 * @see SortedMap 16.99/9.24 * @see HashSet 16.99/9.24 * @see TreeSet 16.99/9.24 * @see ArrayList 16.99/9.24 * @see LinkedList 16.99/9.24 * @see Vector 16.99/9.24 * @see Collections 16.99/9.24 * @see Arrays 16.99/9.24 * @see AbstractCollection 16.99/9.24 * @since 1.2 16.99/9.24 */ 16.99/9.24 16.99/9.24 public interface Collection { 16.99/9.24 // Query Operations 16.99/9.24 16.99/9.24 /** 16.99/9.24 * Returns the number of elements in this collection. If this collection 16.99/9.24 * contains more than Integer.MAX_VALUE elements, returns 16.99/9.24 * Integer.MAX_VALUE. 16.99/9.24 * 16.99/9.24 * @return the number of elements in this collection 16.99/9.24 */ 16.99/9.24 int size(); 16.99/9.24 16.99/9.24 /** 16.99/9.24 * Returns true if this collection contains no elements. 16.99/9.24 * 16.99/9.24 * @return true if this collection contains no elements 16.99/9.24 */ 16.99/9.24 boolean isEmpty(); 16.99/9.24 16.99/9.24 /** 16.99/9.24 * Returns true if this collection contains the specified element. 16.99/9.24 * More formally, returns true if and only if this collection 16.99/9.24 * contains at least one element e such that 16.99/9.24 * (o==null ? e==null : o.equals(e)). 16.99/9.24 * 16.99/9.24 * @param o element whose presence in this collection is to be tested 16.99/9.24 * @return true if this collection contains the specified 16.99/9.24 * element 16.99/9.24 * @throws ClassCastException if the type of the specified element 16.99/9.24 * is incompatible with this collection (optional) 16.99/9.24 * @throws NullPointerException if the specified element is null and this 16.99/9.24 * collection does not permit null elements (optional) 16.99/9.24 */ 16.99/9.24 boolean contains(Object o); 16.99/9.24 16.99/9.24 /** 16.99/9.24 * Returns an iterator over the elements in this collection. There are no 16.99/9.24 * guarantees concerning the order in which the elements are returned 16.99/9.24 * (unless this collection is an instance of some class that provides a 16.99/9.24 * guarantee). 16.99/9.24 * 16.99/9.24 * @return an Iterator over the elements in this collection 16.99/9.24 */ 16.99/9.24 Iterator iterator(); 16.99/9.24 16.99/9.24 // Modification Operations 16.99/9.24 16.99/9.24 /** 16.99/9.24 * Ensures that this collection contains the specified element (optional 16.99/9.24 * operation). Returns true if this collection changed as a 16.99/9.24 * result of the call. (Returns false if this collection does 16.99/9.24 * not permit duplicates and already contains the specified element.)

16.99/9.24 * 16.99/9.24 * Collections that support this operation may place limitations on what 16.99/9.24 * elements may be added to this collection. In particular, some 16.99/9.24 * collections will refuse to add null elements, and others will 16.99/9.24 * impose restrictions on the type of elements that may be added. 16.99/9.24 * Collection classes should clearly specify in their documentation any 16.99/9.24 * restrictions on what elements may be added.

16.99/9.24 * 16.99/9.24 * If a collection refuses to add a particular element for any reason 16.99/9.24 * other than that it already contains the element, it must throw 16.99/9.24 * an exception (rather than returning false). This preserves 16.99/9.24 * the invariant that a collection always contains the specified element 16.99/9.24 * after this call returns. 16.99/9.24 * 16.99/9.24 * @param e element whose presence in this collection is to be ensured 16.99/9.24 * @return true if this collection changed as a result of the 16.99/9.24 * call 16.99/9.24 * @throws UnsupportedOperationException if the add operation 16.99/9.24 * is not supported by this collection 16.99/9.24 * @throws ClassCastException if the class of the specified element 16.99/9.24 * prevents it from being added to this collection 16.99/9.24 * @throws NullPointerException if the specified element is null and this 16.99/9.24 * collection does not permit null elements 16.99/9.24 * @throws IllegalArgumentException if some property of the element 16.99/9.24 * prevents it from being added to this collection 16.99/9.24 * @throws IllegalStateException if the element cannot be added at this 16.99/9.24 * time due to insertion restrictions 16.99/9.24 */ 16.99/9.24 boolean add(E e); 16.99/9.24 16.99/9.24 /** 16.99/9.24 * Removes a single instance of the specified element from this 16.99/9.24 * collection, if it is present (optional operation). More formally, 16.99/9.24 * removes an element e such that 16.99/9.24 * (o==null ? e==null : o.equals(e)), if 16.99/9.24 * this collection contains one or more such elements. Returns 16.99/9.24 * true if this collection contained the specified element (or 16.99/9.24 * equivalently, if this collection changed as a result of the call). 16.99/9.24 * 16.99/9.24 * @param o element to be removed from this collection, if present 16.99/9.24 * @return true if an element was removed as a result of this call 16.99/9.24 * @throws ClassCastException if the type of the specified element 16.99/9.24 * is incompatible with this collection (optional) 16.99/9.24 * @throws NullPointerException if the specified element is null and this 16.99/9.24 * collection does not permit null elements (optional) 16.99/9.24 * @throws UnsupportedOperationException if the remove operation 16.99/9.24 * is not supported by this collection 16.99/9.24 */ 16.99/9.24 boolean remove(Object o); 16.99/9.24 16.99/9.24 16.99/9.24 // Bulk Operations 16.99/9.24 16.99/9.24 /** 16.99/9.24 * Returns true if this collection contains all of the elements 16.99/9.24 * in the specified collection. 16.99/9.24 * 16.99/9.24 * @param c collection to be checked for containment in this collection 16.99/9.24 * @return true if this collection contains all of the elements 16.99/9.24 * in the specified collection 16.99/9.24 * @throws ClassCastException if the types of one or more elements 16.99/9.24 * in the specified collection are incompatible with this 16.99/9.24 * collection (optional) 16.99/9.24 * @throws NullPointerException if the specified collection contains one 16.99/9.24 * or more null elements and this collection does not permit null 16.99/9.24 * elements (optional), or if the specified collection is null 16.99/9.24 * @see #contains(Object) 16.99/9.24 */ 16.99/9.24 boolean containsAll(Collection c); 16.99/9.24 16.99/9.24 /** 16.99/9.24 * Adds all of the elements in the specified collection to this collection 16.99/9.24 * (optional operation). The behavior of this operation is undefined if 16.99/9.24 * the specified collection is modified while the operation is in progress. 16.99/9.24 * (This implies that the behavior of this call is undefined if the 16.99/9.24 * specified collection is this collection, and this collection is 16.99/9.24 * nonempty.) 16.99/9.24 * 16.99/9.24 * @param c collection containing elements to be added to this collection 16.99/9.24 * @return true if this collection changed as a result of the call 16.99/9.24 * @throws UnsupportedOperationException if the addAll operation 16.99/9.24 * is not supported by this collection 16.99/9.24 * @throws ClassCastException if the class of an element of the specified 16.99/9.24 * collection prevents it from being added to this collection 16.99/9.24 * @throws NullPointerException if the specified collection contains a 16.99/9.24 * null element and this collection does not permit null elements, 16.99/9.24 * or if the specified collection is null 16.99/9.24 * @throws IllegalArgumentException if some property of an element of the 16.99/9.24 * specified collection prevents it from being added to this 16.99/9.24 * collection 16.99/9.24 * @throws IllegalStateException if not all the elements can be added at 16.99/9.24 * this time due to insertion restrictions 16.99/9.24 * @see #add(Object) 16.99/9.24 */ 16.99/9.24 boolean addAll(Collection c); 16.99/9.24 16.99/9.24 /** 16.99/9.24 * Removes all of this collection's elements that are also contained in the 16.99/9.24 * specified collection (optional operation). After this call returns, 16.99/9.24 * this collection will contain no elements in common with the specified 16.99/9.24 * collection. 16.99/9.24 * 16.99/9.24 * @param c collection containing elements to be removed from this collection 16.99/9.24 * @return true if this collection changed as a result of the 16.99/9.24 * call 16.99/9.24 * @throws UnsupportedOperationException if the removeAll method 16.99/9.24 * is not supported by this collection 16.99/9.24 * @throws ClassCastException if the types of one or more elements 16.99/9.24 * in this collection are incompatible with the specified 16.99/9.24 * collection (optional) 16.99/9.24 * @throws NullPointerException if this collection contains one or more 16.99/9.24 * null elements and the specified collection does not support 17.12/9.24 * null elements (optional), or if the specified collection is null 17.12/9.24 * @see #remove(Object) 17.12/9.24 * @see #contains(Object) 17.12/9.24 */ 17.12/9.24 boolean removeAll(Collection c); 17.12/9.24 17.12/9.24 /** 17.12/9.24 * Retains only the elements in this collection that are contained in the 17.12/9.24 * specified collection (optional operation). In other words, removes from 17.12/9.24 * this collection all of its elements that are not contained in the 17.12/9.24 * specified collection. 17.12/9.24 * 17.12/9.24 * @param c collection containing elements to be retained in this collection 17.12/9.24 * @return true if this collection changed as a result of the call 17.12/9.24 * @throws UnsupportedOperationException if the retainAll operation 17.12/9.24 * is not supported by this collection 17.12/9.24 * @throws ClassCastException if the types of one or more elements 17.12/9.24 * in this collection are incompatible with the specified 17.12/9.24 * collection (optional) 17.12/9.24 * @throws NullPointerException if this collection contains one or more 17.12/9.24 * null elements and the specified collection does not permit null 17.12/9.24 * elements (optional), or if the specified collection is null 17.12/9.24 * @see #remove(Object) 17.12/9.24 * @see #contains(Object) 17.12/9.24 */ 17.12/9.24 boolean retainAll(Collection c); 17.12/9.24 17.12/9.24 /** 17.12/9.24 * Removes all of the elements from this collection (optional operation). 17.12/9.24 * The collection will be empty after this method returns. 17.12/9.24 * 17.12/9.24 * @throws UnsupportedOperationException if the clear operation 17.12/9.24 * is not supported by this collection 17.12/9.24 */ 17.12/9.24 void clear(); 17.12/9.24 17.12/9.24 17.12/9.24 // Comparison and hashing 17.12/9.24 17.12/9.24 /** 17.12/9.24 * Compares the specified object with this collection for equality.

17.12/9.24 * 17.12/9.24 * While the Collection interface adds no stipulations to the 17.12/9.24 * general contract for the Object.equals, programmers who 17.12/9.24 * implement the Collection interface "directly" (in other words, 17.12/9.24 * create a class that is a Collection but is not a Set 17.12/9.24 * or a List) must exercise care if they choose to override the 17.12/9.24 * Object.equals. It is not necessary to do so, and the simplest 17.12/9.24 * course of action is to rely on Object's implementation, but 17.12/9.24 * the implementor may wish to implement a "value comparison" in place of 17.12/9.24 * the default "reference comparison." (The List and 17.12/9.24 * Set interfaces mandate such value comparisons.)

17.12/9.24 * 17.12/9.24 * The general contract for the Object.equals method states that 17.12/9.24 * equals must be symmetric (in other words, a.equals(b) if and 17.12/9.24 * only if b.equals(a)). The contracts for List.equals 17.12/9.24 * and Set.equals state that lists are only equal to other lists, 17.12/9.24 * and sets to other sets. Thus, a custom equals method for a 17.12/9.24 * collection class that implements neither the List nor 17.12/9.24 * Set interface must return false when this collection 17.12/9.24 * is compared to any list or set. (By the same logic, it is not possible 17.12/9.24 * to write a class that correctly implements both the Set and 17.12/9.24 * List interfaces.) 17.12/9.24 * 17.12/9.24 * @param o object to be compared for equality with this collection 17.12/9.24 * @return true if the specified object is equal to this 17.12/9.24 * collection 17.12/9.24 * 17.12/9.24 * @see Object#equals(Object) 17.12/9.24 * @see Set#equals(Object) 17.12/9.24 * @see List#equals(Object) 17.12/9.24 */ 17.12/9.24 boolean equals(Object o); 17.12/9.24 17.12/9.24 /** 17.12/9.24 * Returns the hash code value for this collection. While the 17.12/9.24 * Collection interface adds no stipulations to the general 17.12/9.24 * contract for the Object.hashCode method, programmers should 17.12/9.24 * take note that any class that overrides the Object.equals 17.12/9.24 * method must also override the Object.hashCode method in order 17.12/9.24 * to satisfy the general contract for the Object.hashCodemethod. 17.12/9.24 * In particular, c1.equals(c2) implies that 17.12/9.24 * c1.hashCode()==c2.hashCode(). 17.12/9.24 * 17.12/9.24 * @return the hash code value for this collection 17.12/9.24 * 17.12/9.24 * @see Object#hashCode() 17.12/9.24 * @see Object#equals(Object) 17.12/9.24 */ 17.12/9.24 int hashCode(); 17.12/9.24 } 17.12/9.24 17.12/9.24 17.12/9.24 /* 17.12/9.24 * Copyright 1997-2006 Sun Microsystems, Inc. All Rights Reserved. 17.12/9.24 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 17.12/9.24 * 17.12/9.24 * This code is free software; you can redistribute it and/or modify it 17.12/9.24 * under the terms of the GNU General Public License version 2 only, as 17.12/9.24 * published by the Free Software Foundation. Sun designates this 17.12/9.24 * particular file as subject to the "Classpath" exception as provided 17.12/9.24 * by Sun in the LICENSE file that accompanied this code. 17.12/9.24 * 17.12/9.24 * This code is distributed in the hope that it will be useful, but WITHOUT 17.12/9.24 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or 17.12/9.24 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License 17.12/9.24 * version 2 for more details (a copy is included in the LICENSE file that 17.12/9.24 * accompanied this code). 17.12/9.24 * 17.12/9.24 * You should have received a copy of the GNU General Public License version 17.12/9.24 * 2 along with this work; if not, write to the Free Software Foundation, 17.12/9.24 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. 17.12/9.24 * 17.12/9.24 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara, 17.12/9.24 * CA 95054 USA or visit www.sun.com if you need additional information or 17.12/9.24 * have any questions. 17.12/9.24 */ 17.12/9.24 17.12/9.24 package javaUtilEx; 17.12/9.24 17.12/9.24 /** 17.12/9.24 * This exception may be thrown by methods that have detected concurrent 17.12/9.24 * modification of an object when such modification is not permissible. 17.12/9.24 *

17.12/9.24 * For example, it is not generally permissible for one thread to modify a Collection 17.12/9.24 * while another thread is iterating over it. In general, the results of the 17.12/9.24 * iteration are undefined under these circumstances. Some Iterator 17.12/9.24 * implementations (including those of all the general purpose collection implementations 17.12/9.24 * provided by the JRE) may choose to throw this exception if this behavior is 17.12/9.24 * detected. Iterators that do this are known as fail-fast iterators, 17.12/9.24 * as they fail quickly and cleanly, rather that risking arbitrary, 17.12/9.24 * non-deterministic behavior at an undetermined time in the future. 17.12/9.24 *

17.12/9.24 * Note that this exception does not always indicate that an object has 17.12/9.24 * been concurrently modified by a different thread. If a single 17.12/9.24 * thread issues a sequence of method invocations that violates the 17.12/9.24 * contract of an object, the object may throw this exception. For 17.12/9.24 * example, if a thread modifies a collection directly while it is 17.12/9.24 * iterating over the collection with a fail-fast iterator, the iterator 17.12/9.24 * will throw this exception. 17.12/9.24 * 17.12/9.24 *

Note that fail-fast behavior cannot be guaranteed as it is, generally 17.12/9.24 * speaking, impossible to make any hard guarantees in the presence of 17.12/9.24 * unsynchronized concurrent modification. Fail-fast operations 17.12/9.24 * throw ConcurrentModificationException on a best-effort basis. 17.12/9.24 * Therefore, it would be wrong to write a program that depended on this 17.12/9.24 * exception for its correctness: ConcurrentModificationException 17.12/9.24 * should be used only to detect bugs. 17.12/9.24 * 17.12/9.24 * @author Josh Bloch 17.12/9.24 * @see Collection 17.12/9.24 * @see Iterator 17.12/9.24 * @see ListIterator 17.12/9.24 * @see Vector 17.12/9.24 * @see LinkedList 17.12/9.24 * @see HashSet 17.12/9.24 * @see Hashtable 17.12/9.24 * @see TreeMap 17.12/9.24 * @see AbstractList 17.12/9.24 * @since 1.2 17.12/9.24 */ 17.12/9.24 public class ConcurrentModificationException extends RuntimeException { 17.12/9.24 /** 17.12/9.24 * Constructs a ConcurrentModificationException with no 17.12/9.24 * detail message. 17.12/9.24 */ 17.12/9.24 public ConcurrentModificationException() { 17.12/9.24 } 17.12/9.24 17.12/9.24 /** 17.12/9.24 * Constructs a ConcurrentModificationException with the 17.12/9.24 * specified detail message. 17.12/9.24 * 17.12/9.24 * @param message the detail message pertaining to this exception. 17.12/9.24 */ 17.12/9.24 public ConcurrentModificationException(String message) { 17.12/9.24 super(message); 17.12/9.24 } 17.12/9.24 } 17.12/9.24 17.12/9.24 17.12/9.24 /* 17.12/9.24 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 17.12/9.24 * 17.12/9.24 * This code is free software; you can redistribute it and/or modify it 17.12/9.24 * under the terms of the GNU General Public License version 2 only, as 17.12/9.24 * published by the Free Software Foundation. Sun designates this 17.12/9.24 * particular file as subject to the "Classpath" exception as provided 17.12/9.24 * by Sun in the LICENSE file that accompanied this code. 17.12/9.24 * 17.12/9.24 * This code is distributed in the hope that it will be useful, but WITHOUT 17.12/9.24 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or 17.12/9.24 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License 17.12/9.24 * version 2 for more details (a copy is included in the LICENSE file that 17.12/9.24 * accompanied this code). 17.12/9.24 * 17.12/9.24 * You should have received a copy of the GNU General Public License version 17.12/9.24 * 2 along with this work; if not, write to the Free Software Foundation, 17.12/9.24 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. 17.12/9.24 * 17.12/9.24 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara, 17.12/9.24 * CA 95054 USA or visit www.sun.com if you need additional information or 17.12/9.24 * have any questions. 17.12/9.24 */ 17.12/9.24 17.12/9.24 /* 17.12/9.24 * This file is available under and governed by the GNU General Public 17.12/9.24 * License version 2 only, as published by the Free Software Foundation. 17.12/9.24 * However, the following notice accompanied the original version of this 17.12/9.24 * file: 17.12/9.24 * 17.12/9.24 * Written by Doug Lea and Josh Bloch with assistance from members of 17.12/9.24 * JCP JSR-166 Expert Group and released to the public domain, as explained 17.12/9.24 * at http://creativecommons.org/licenses/publicdomain 17.12/9.24 */ 17.12/9.24 17.12/9.24 package javaUtilEx; 17.12/9.24 17.12/9.24 /** 17.12/9.24 * A linear collection that supports element insertion and removal at 17.12/9.24 * both ends. The name deque is short for "double ended queue" 17.12/9.24 * and is usually pronounced "deck". Most Deque 17.12/9.24 * implementations place no fixed limits on the number of elements 17.12/9.24 * they may contain, but this interface supports capacity-restricted 17.12/9.24 * deques as well as those with no fixed size limit. 17.12/9.24 * 17.12/9.24 *

This interface defines methods to access the elements at both 17.12/9.24 * ends of the deque. Methods are provided to insert, remove, and 17.12/9.24 * examine the element. Each of these methods exists in two forms: 17.12/9.24 * one throws an exception if the operation fails, the other returns a 17.12/9.24 * special value (either null or false, depending on 17.12/9.24 * the operation). The latter form of the insert operation is 17.12/9.24 * designed specifically for use with capacity-restricted 17.12/9.24 * Deque implementations; in most implementations, insert 17.12/9.24 * operations cannot fail. 17.12/9.24 * 17.12/9.24 *

The twelve methods described above are summarized in the 17.12/9.24 * following table: 17.12/9.24 * 17.12/9.24 *

17.12/9.24 * 17.12/9.24 * 17.12/9.24 * 17.12/9.24 * 17.12/9.24 * 17.12/9.24 * 17.12/9.24 * 17.12/9.24 * 17.12/9.24 * 17.12/9.24 * 17.12/9.24 * 17.12/9.24 * 17.12/9.24 * 17.12/9.24 * 17.12/9.24 * 17.12/9.24 * 17.12/9.24 * 17.12/9.24 * 17.12/9.24 * 17.12/9.24 * 17.12/9.24 * 17.12/9.24 * 17.12/9.24 * 17.12/9.24 * 17.12/9.24 * 17.12/9.24 * 17.12/9.24 * 17.12/9.24 * 17.12/9.24 * 17.12/9.24 * 17.12/9.24 * 17.12/9.24 * 17.12/9.24 * 17.12/9.24 * 17.12/9.24 *
First Element (Head) Last Element (Tail)
Throws exceptionSpecial valueThrows exceptionSpecial value
Insert{@link #addFirst addFirst(e)}{@link #offerFirst offerFirst(e)}{@link #addLast addLast(e)}{@link #offerLast offerLast(e)}
Remove{@link #removeFirst removeFirst()}{@link #pollFirst pollFirst()}{@link #removeLast removeLast()}{@link #pollLast pollLast()}
Examine{@link #getFirst getFirst()}{@link #peekFirst peekFirst()}{@link #getLast getLast()}{@link #peekLast peekLast()}
17.12/9.24 * 17.12/9.24 *

This interface extends the {@link Queue} interface. When a deque is 17.12/9.24 * used as a queue, FIFO (First-In-First-Out) behavior results. Elements are 17.12/9.24 * added at the end of the deque and removed from the beginning. The methods 17.12/9.24 * inherited from the Queue interface are precisely equivalent to 17.12/9.24 * Deque methods as indicated in the following table: 17.12/9.24 * 17.12/9.24 *

17.12/9.24 * 17.12/9.24 * 17.12/9.24 * 17.12/9.24 * 17.12/9.24 * 17.12/9.24 * 17.12/9.24 * 17.12/9.24 * 17.12/9.24 * 17.12/9.24 * 17.12/9.24 * 17.12/9.24 * 17.12/9.24 * 17.12/9.24 * 17.12/9.24 * 17.12/9.24 * 17.12/9.24 * 17.12/9.24 * 17.12/9.24 * 17.12/9.24 * 17.12/9.24 * 17.12/9.24 * 17.12/9.24 * 17.12/9.24 * 17.12/9.24 * 17.12/9.24 * 17.12/9.24 * 17.12/9.24 * 17.12/9.24 * 17.12/9.24 *
Queue Method Equivalent Deque Method
{@link java.util.Queue#add add(e)}{@link #addLast addLast(e)}
{@link java.util.Queue#offer offer(e)}{@link #offerLast offerLast(e)}
{@link java.util.Queue#remove remove()}{@link #removeFirst removeFirst()}
{@link java.util.Queue#poll poll()}{@link #pollFirst pollFirst()}
{@link java.util.Queue#element element()}{@link #getFirst getFirst()}
{@link java.util.Queue#peek peek()}{@link #peek peekFirst()}
17.12/9.24 * 17.12/9.24 *

Deques can also be used as LIFO (Last-In-First-Out) stacks. This 17.12/9.24 * interface should be used in preference to the legacy {@link Stack} class. 17.12/9.24 * When a deque is used as a stack, elements are pushed and popped from the 17.12/9.24 * beginning of the deque. Stack methods are precisely equivalent to 17.12/9.24 * Deque methods as indicated in the table below: 17.12/9.24 * 17.12/9.24 *

17.12/9.24 * 17.12/9.24 * 17.12/9.24 * 17.12/9.24 * 17.12/9.24 * 17.12/9.24 * 17.12/9.24 * 17.12/9.24 * 17.12/9.24 * 17.12/9.24 * 17.12/9.24 * 17.12/9.24 * 17.12/9.24 * 17.12/9.24 * 17.12/9.24 * 17.12/9.24 * 17.12/9.24 * 17.12/9.24 *
Stack Method Equivalent Deque Method
{@link #push push(e)}{@link #addFirst addFirst(e)}
{@link #pop pop()}{@link #removeFirst removeFirst()}
{@link #peek peek()}{@link #peekFirst peekFirst()}
17.12/9.24 * 17.12/9.24 *

Note that the {@link #peek peek} method works equally well when 17.12/9.24 * a deque is used as a queue or a stack; in either case, elements are 17.12/9.24 * drawn from the beginning of the deque. 17.12/9.24 * 17.12/9.24 *

This interface provides two methods to remove interior 17.12/9.24 * elements, {@link #removeFirstOccurrence removeFirstOccurrence} and 17.12/9.24 * {@link #removeLastOccurrence removeLastOccurrence}. 17.12/9.24 * 17.12/9.24 *

Unlike the {@link List} interface, this interface does not 17.12/9.24 * provide support for indexed access to elements. 17.12/9.24 * 17.12/9.24 *

While Deque implementations are not strictly required 17.12/9.24 * to prohibit the insertion of null elements, they are strongly 17.12/9.24 * encouraged to do so. Users of any Deque implementations 17.12/9.24 * that do allow null elements are strongly encouraged not to 17.12/9.24 * take advantage of the ability to insert nulls. This is so because 17.12/9.24 * null is used as a special return value by various methods 17.12/9.24 * to indicated that the deque is empty. 17.12/9.24 * 17.12/9.24 *

Deque implementations generally do not define 17.12/9.24 * element-based versions of the equals and hashCode 17.12/9.24 * methods, but instead inherit the identity-based versions from class 17.12/9.24 * Object. 17.12/9.24 * 17.12/9.24 *

This interface is a member of the Java Collections 17.12/9.24 * Framework. 17.12/9.24 * 17.12/9.24 * @author Doug Lea 17.12/9.24 * @author Josh Bloch 17.12/9.24 * @since 1.6 17.12/9.24 * @param the type of elements held in this collection 17.12/9.24 */ 17.12/9.24 17.12/9.24 public interface Deque extends Queue { 17.12/9.24 /** 17.12/9.24 * Inserts the specified element at the front of this deque if it is 17.12/9.24 * possible to do so immediately without violating capacity restrictions. 17.12/9.24 * When using a capacity-restricted deque, it is generally preferable to 17.12/9.24 * use method {@link #offerFirst}. 17.12/9.24 * 17.12/9.24 * @param e the element to add 17.12/9.24 * @throws IllegalStateException if the element cannot be added at this 17.12/9.24 * time due to capacity restrictions 17.12/9.24 * @throws ClassCastException if the class of the specified element 17.12/9.24 * prevents it from being added to this deque 17.12/9.24 * @throws NullPointerException if the specified element is null and this 17.12/9.24 * deque does not permit null elements 17.12/9.24 * @throws IllegalArgumentException if some property of the specified 17.12/9.24 * element prevents it from being added to this deque 17.12/9.24 */ 17.12/9.24 void addFirst(E e); 17.12/9.24 17.12/9.24 /** 17.12/9.24 * Inserts the specified element at the end of this deque if it is 17.12/9.25 * possible to do so immediately without violating capacity restrictions. 17.12/9.25 * When using a capacity-restricted deque, it is generally preferable to 17.12/9.25 * use method {@link #offerLast}. 17.12/9.25 * 17.12/9.25 *

This method is equivalent to {@link #add}. 17.12/9.25 * 17.12/9.25 * @param e the element to add 17.12/9.25 * @throws IllegalStateException if the element cannot be added at this 17.12/9.25 * time due to capacity restrictions 17.12/9.25 * @throws ClassCastException if the class of the specified element 17.12/9.25 * prevents it from being added to this deque 17.12/9.25 * @throws NullPointerException if the specified element is null and this 17.12/9.25 * deque does not permit null elements 17.12/9.25 * @throws IllegalArgumentException if some property of the specified 17.12/9.25 * element prevents it from being added to this deque 17.12/9.25 */ 17.12/9.25 void addLast(E e); 17.12/9.25 17.12/9.25 /** 17.12/9.25 * Inserts the specified element at the front of this deque unless it would 17.12/9.25 * violate capacity restrictions. When using a capacity-restricted deque, 17.12/9.25 * this method is generally preferable to the {@link #addFirst} method, 17.12/9.25 * which can fail to insert an element only by throwing an exception. 17.12/9.25 * 17.12/9.25 * @param e the element to add 17.12/9.25 * @return true if the element was added to this deque, else 17.12/9.25 * false 17.12/9.25 * @throws ClassCastException if the class of the specified element 17.12/9.25 * prevents it from being added to this deque 17.12/9.25 * @throws NullPointerException if the specified element is null and this 17.12/9.25 * deque does not permit null elements 17.12/9.25 * @throws IllegalArgumentException if some property of the specified 17.12/9.25 * element prevents it from being added to this deque 17.12/9.25 */ 17.12/9.25 boolean offerFirst(E e); 17.12/9.25 17.12/9.25 /** 17.12/9.25 * Inserts the specified element at the end of this deque unless it would 17.12/9.25 * violate capacity restrictions. When using a capacity-restricted deque, 17.12/9.25 * this method is generally preferable to the {@link #addLast} method, 17.12/9.25 * which can fail to insert an element only by throwing an exception. 17.12/9.25 * 17.12/9.25 * @param e the element to add 17.12/9.25 * @return true if the element was added to this deque, else 17.12/9.25 * false 17.12/9.25 * @throws ClassCastException if the class of the specified element 17.12/9.25 * prevents it from being added to this deque 17.12/9.25 * @throws NullPointerException if the specified element is null and this 17.12/9.25 * deque does not permit null elements 17.12/9.25 * @throws IllegalArgumentException if some property of the specified 17.12/9.25 * element prevents it from being added to this deque 17.12/9.25 */ 17.12/9.25 boolean offerLast(E e); 17.12/9.25 17.12/9.25 /** 17.12/9.25 * Retrieves and removes the first element of this deque. This method 17.12/9.25 * differs from {@link #pollFirst pollFirst} only in that it throws an 17.12/9.25 * exception if this deque is empty. 17.12/9.25 * 17.12/9.25 * @return the head of this deque 17.12/9.25 * @throws NoSuchElementException if this deque is empty 17.12/9.25 */ 17.12/9.25 E removeFirst(); 17.12/9.25 17.12/9.25 /** 17.12/9.25 * Retrieves and removes the last element of this deque. This method 17.12/9.25 * differs from {@link #pollLast pollLast} only in that it throws an 17.12/9.25 * exception if this deque is empty. 17.12/9.25 * 17.12/9.25 * @return the tail of this deque 17.12/9.25 * @throws NoSuchElementException if this deque is empty 17.12/9.25 */ 17.12/9.25 E removeLast(); 17.12/9.25 17.12/9.25 /** 17.12/9.25 * Retrieves and removes the first element of this deque, 17.12/9.25 * or returns null if this deque is empty. 17.12/9.25 * 17.12/9.25 * @return the head of this deque, or null if this deque is empty 17.12/9.25 */ 17.12/9.25 E pollFirst(); 17.12/9.25 17.12/9.25 /** 17.12/9.25 * Retrieves and removes the last element of this deque, 17.12/9.25 * or returns null if this deque is empty. 17.12/9.25 * 17.12/9.25 * @return the tail of this deque, or null if this deque is empty 17.12/9.25 */ 17.12/9.25 E pollLast(); 17.12/9.25 17.12/9.25 /** 17.12/9.25 * Retrieves, but does not remove, the first element of this deque. 17.12/9.25 * 17.12/9.25 * This method differs from {@link #peekFirst peekFirst} only in that it 17.12/9.25 * throws an exception if this deque is empty. 17.12/9.25 * 17.12/9.25 * @return the head of this deque 17.12/9.25 * @throws NoSuchElementException if this deque is empty 17.12/9.25 */ 17.12/9.25 E getFirst(); 17.12/9.25 17.12/9.25 /** 17.12/9.25 * Retrieves, but does not remove, the last element of this deque. 17.12/9.25 * This method differs from {@link #peekLast peekLast} only in that it 17.12/9.25 * throws an exception if this deque is empty. 17.12/9.25 * 17.12/9.25 * @return the tail of this deque 17.12/9.25 * @throws NoSuchElementException if this deque is empty 17.12/9.25 */ 17.12/9.25 E getLast(); 17.12/9.25 17.12/9.25 /** 17.12/9.25 * Retrieves, but does not remove, the first element of this deque, 17.12/9.25 * or returns null if this deque is empty. 17.12/9.25 * 17.12/9.25 * @return the head of this deque, or null if this deque is empty 17.12/9.25 */ 17.12/9.25 E peekFirst(); 17.12/9.25 17.12/9.25 /** 17.12/9.25 * Retrieves, but does not remove, the last element of this deque, 17.12/9.25 * or returns null if this deque is empty. 17.12/9.25 * 17.12/9.25 * @return the tail of this deque, or null if this deque is empty 17.12/9.25 */ 17.12/9.25 E peekLast(); 17.12/9.25 17.12/9.25 /** 17.12/9.25 * Removes the first occurrence of the specified element from this deque. 17.12/9.25 * If the deque does not contain the element, it is unchanged. 17.12/9.25 * More formally, removes the first element e such that 17.12/9.25 * (o==null ? e==null : o.equals(e)) 17.12/9.25 * (if such an element exists). 17.12/9.25 * Returns true if this deque contained the specified element 17.12/9.25 * (or equivalently, if this deque changed as a result of the call). 17.12/9.25 * 17.12/9.25 * @param o element to be removed from this deque, if present 17.12/9.25 * @return true if an element was removed as a result of this call 17.12/9.25 * @throws ClassCastException if the class of the specified element 17.12/9.25 * is incompatible with this deque (optional) 17.12/9.25 * @throws NullPointerException if the specified element is null and this 17.12/9.25 * deque does not permit null elements (optional) 17.12/9.25 */ 17.12/9.25 boolean removeFirstOccurrence(Object o); 17.12/9.25 17.12/9.25 /** 17.12/9.25 * Removes the last occurrence of the specified element from this deque. 17.12/9.25 * If the deque does not contain the element, it is unchanged. 17.12/9.25 * More formally, removes the last element e such that 17.12/9.25 * (o==null ? e==null : o.equals(e)) 17.12/9.25 * (if such an element exists). 17.12/9.25 * Returns true if this deque contained the specified element 17.12/9.25 * (or equivalently, if this deque changed as a result of the call). 17.12/9.25 * 17.12/9.25 * @param o element to be removed from this deque, if present 17.12/9.25 * @return true if an element was removed as a result of this call 17.12/9.25 * @throws ClassCastException if the class of the specified element 17.12/9.25 * is incompatible with this deque (optional) 17.12/9.25 * @throws NullPointerException if the specified element is null and this 17.12/9.25 * deque does not permit null elements (optional) 17.12/9.25 */ 17.12/9.25 boolean removeLastOccurrence(Object o); 17.12/9.25 17.12/9.25 // *** Queue methods *** 17.12/9.25 17.12/9.25 /** 17.12/9.25 * Inserts the specified element into the queue represented by this deque 17.12/9.25 * (in other words, at the tail of this deque) if it is possible to do so 17.12/9.25 * immediately without violating capacity restrictions, returning 17.12/9.25 * true upon success and throwing an 17.12/9.25 * IllegalStateException if no space is currently available. 17.12/9.25 * When using a capacity-restricted deque, it is generally preferable to 17.12/9.25 * use {@link #offer(Object) offer}. 17.12/9.25 * 17.12/9.25 *

This method is equivalent to {@link #addLast}. 17.12/9.25 * 17.12/9.25 * @param e the element to add 17.12/9.25 * @return true (as specified by {@link Collection#add}) 17.12/9.25 * @throws IllegalStateException if the element cannot be added at this 17.12/9.25 * time due to capacity restrictions 17.12/9.25 * @throws ClassCastException if the class of the specified element 17.12/9.25 * prevents it from being added to this deque 17.12/9.25 * @throws NullPointerException if the specified element is null and this 17.12/9.25 * deque does not permit null elements 17.12/9.25 * @throws IllegalArgumentException if some property of the specified 17.12/9.25 * element prevents it from being added to this deque 17.12/9.25 */ 17.12/9.25 boolean add(E e); 17.12/9.25 17.12/9.25 /** 17.12/9.25 * Inserts the specified element into the queue represented by this deque 17.12/9.25 * (in other words, at the tail of this deque) if it is possible to do so 17.12/9.25 * immediately without violating capacity restrictions, returning 17.12/9.25 * true upon success and false if no space is currently 17.12/9.25 * available. When using a capacity-restricted deque, this method is 17.12/9.25 * generally preferable to the {@link #add} method, which can fail to 17.12/9.25 * insert an element only by throwing an exception. 17.12/9.25 * 17.12/9.25 *

This method is equivalent to {@link #offerLast}. 17.12/9.25 * 17.12/9.25 * @param e the element to add 17.12/9.25 * @return true if the element was added to this deque, else 17.12/9.25 * false 17.12/9.25 * @throws ClassCastException if the class of the specified element 17.12/9.25 * prevents it from being added to this deque 17.12/9.25 * @throws NullPointerException if the specified element is null and this 17.12/9.25 * deque does not permit null elements 17.12/9.25 * @throws IllegalArgumentException if some property of the specified 17.12/9.25 * element prevents it from being added to this deque 17.12/9.25 */ 17.12/9.25 boolean offer(E e); 17.12/9.25 17.12/9.25 /** 17.12/9.25 * Retrieves and removes the head of the queue represented by this deque 17.12/9.25 * (in other words, the first element of this deque). 17.12/9.25 * This method differs from {@link #poll poll} only in that it throws an 17.12/9.25 * exception if this deque is empty. 17.12/9.25 * 17.12/9.25 *

This method is equivalent to {@link #removeFirst()}. 17.12/9.25 * 17.12/9.25 * @return the head of the queue represented by this deque 17.12/9.25 * @throws NoSuchElementException if this deque is empty 17.12/9.25 */ 17.12/9.25 E remove(); 17.12/9.25 17.12/9.25 /** 17.12/9.25 * Retrieves and removes the head of the queue represented by this deque 17.12/9.25 * (in other words, the first element of this deque), or returns 17.12/9.25 * null if this deque is empty. 17.12/9.25 * 17.12/9.25 *

This method is equivalent to {@link #pollFirst()}. 17.12/9.25 * 17.12/9.25 * @return the first element of this deque, or null if 17.12/9.25 * this deque is empty 17.12/9.25 */ 17.12/9.25 E poll(); 17.12/9.25 17.12/9.25 /** 17.12/9.25 * Retrieves, but does not remove, the head of the queue represented by 17.12/9.25 * this deque (in other words, the first element of this deque). 17.12/9.25 * This method differs from {@link #peek peek} only in that it throws an 17.12/9.25 * exception if this deque is empty. 17.12/9.25 * 17.12/9.25 *

This method is equivalent to {@link #getFirst()}. 17.12/9.25 * 17.12/9.25 * @return the head of the queue represented by this deque 17.12/9.25 * @throws NoSuchElementException if this deque is empty 17.12/9.25 */ 17.12/9.25 E element(); 17.12/9.25 17.12/9.25 /** 17.12/9.25 * Retrieves, but does not remove, the head of the queue represented by 17.12/9.25 * this deque (in other words, the first element of this deque), or 17.12/9.25 * returns null if this deque is empty. 17.12/9.25 * 17.12/9.25 *

This method is equivalent to {@link #peekFirst()}. 17.12/9.25 * 17.12/9.25 * @return the head of the queue represented by this deque, or 17.12/9.25 * null if this deque is empty 17.12/9.25 */ 17.12/9.25 E peek(); 17.12/9.25 17.12/9.25 17.12/9.25 // *** Stack methods *** 17.12/9.25 17.12/9.25 /** 17.12/9.25 * Pushes an element onto the stack represented by this deque (in other 17.12/9.25 * words, at the head of this deque) if it is possible to do so 17.12/9.25 * immediately without violating capacity restrictions, returning 17.12/9.25 * true upon success and throwing an 17.12/9.25 * IllegalStateException if no space is currently available. 17.12/9.25 * 17.12/9.25 *

This method is equivalent to {@link #addFirst}. 17.12/9.25 * 17.12/9.25 * @param e the element to push 17.12/9.25 * @throws IllegalStateException if the element cannot be added at this 17.12/9.25 * time due to capacity restrictions 17.12/9.25 * @throws ClassCastException if the class of the specified element 17.12/9.25 * prevents it from being added to this deque 17.12/9.25 * @throws NullPointerException if the specified element is null and this 17.12/9.25 * deque does not permit null elements 17.12/9.25 * @throws IllegalArgumentException if some property of the specified 17.12/9.25 * element prevents it from being added to this deque 17.12/9.25 */ 17.12/9.25 void push(E e); 17.12/9.25 17.12/9.25 /** 17.12/9.25 * Pops an element from the stack represented by this deque. In other 17.12/9.25 * words, removes and returns the first element of this deque. 17.12/9.25 * 17.12/9.25 *

This method is equivalent to {@link #removeFirst()}. 17.12/9.25 * 17.12/9.25 * @return the element at the front of this deque (which is the top 17.12/9.25 * of the stack represented by this deque) 17.12/9.25 * @throws NoSuchElementException if this deque is empty 17.12/9.25 */ 17.12/9.25 E pop(); 17.12/9.25 17.12/9.25 17.12/9.25 // *** Collection methods *** 17.12/9.25 17.12/9.25 /** 17.12/9.25 * Removes the first occurrence of the specified element from this deque. 17.12/9.25 * If the deque does not contain the element, it is unchanged. 17.12/9.25 * More formally, removes the first element e such that 17.12/9.25 * (o==null ? e==null : o.equals(e)) 17.12/9.25 * (if such an element exists). 17.12/9.25 * Returns true if this deque contained the specified element 17.12/9.25 * (or equivalently, if this deque changed as a result of the call). 17.12/9.25 * 17.12/9.25 *

This method is equivalent to {@link #removeFirstOccurrence}. 17.12/9.25 * 17.12/9.25 * @param o element to be removed from this deque, if present 17.12/9.25 * @return true if an element was removed as a result of this call 17.12/9.25 * @throws ClassCastException if the class of the specified element 17.12/9.25 * is incompatible with this deque (optional) 17.12/9.25 * @throws NullPointerException if the specified element is null and this 17.12/9.25 * deque does not permit null elements (optional) 17.12/9.25 */ 17.12/9.25 boolean remove(Object o); 17.12/9.25 17.12/9.25 /** 17.12/9.25 * Returns true if this deque contains the specified element. 17.12/9.25 * More formally, returns true if and only if this deque contains 17.12/9.25 * at least one element e such that 17.12/9.25 * (o==null ? e==null : o.equals(e)). 17.12/9.25 * 17.12/9.25 * @param o element whose presence in this deque is to be tested 17.12/9.25 * @return true if this deque contains the specified element 17.12/9.25 * @throws ClassCastException if the type of the specified element 17.12/9.25 * is incompatible with this deque (optional) 17.12/9.25 * @throws NullPointerException if the specified element is null and this 17.12/9.25 * deque does not permit null elements (optional) 17.12/9.25 */ 17.12/9.25 boolean contains(Object o); 17.12/9.25 17.12/9.25 /** 17.12/9.25 * Returns the number of elements in this deque. 17.12/9.25 * 17.12/9.25 * @return the number of elements in this deque 17.12/9.25 */ 17.12/9.25 public int size(); 17.12/9.25 17.12/9.25 /** 17.12/9.25 * Returns an iterator over the elements in this deque in proper sequence. 17.12/9.25 * The elements will be returned in order from first (head) to last (tail). 17.12/9.25 * 17.12/9.25 * @return an iterator over the elements in this deque in proper sequence 17.12/9.25 */ 17.12/9.25 Iterator iterator(); 17.12/9.25 17.12/9.25 /** 17.12/9.25 * Returns an iterator over the elements in this deque in reverse 17.12/9.25 * sequential order. The elements will be returned in order from 17.12/9.25 * last (tail) to first (head). 17.12/9.25 * 17.12/9.25 * @return an iterator over the elements in this deque in reverse 17.12/9.25 * sequence 17.12/9.25 */ 17.12/9.25 Iterator descendingIterator(); 17.12/9.25 17.12/9.25 } 17.12/9.25 17.12/9.25 17.12/9.25 /* 17.12/9.25 * Copyright 1994-2003 Sun Microsystems, Inc. All Rights Reserved. 17.12/9.25 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 17.12/9.25 * 17.12/9.25 * This code is free software; you can redistribute it and/or modify it 17.12/9.25 * under the terms of the GNU General Public License version 2 only, as 17.12/9.25 * published by the Free Software Foundation. Sun designates this 17.12/9.25 * particular file as subject to the "Classpath" exception as provided 17.12/9.25 * by Sun in the LICENSE file that accompanied this code. 17.12/9.25 * 17.12/9.25 * This code is distributed in the hope that it will be useful, but WITHOUT 17.12/9.25 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or 17.12/9.25 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License 17.12/9.25 * version 2 for more details (a copy is included in the LICENSE file that 17.12/9.25 * accompanied this code). 17.12/9.25 * 17.12/9.25 * You should have received a copy of the GNU General Public License version 17.12/9.25 * 2 along with this work; if not, write to the Free Software Foundation, 17.12/9.25 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. 17.12/9.25 * 17.12/9.25 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara, 17.12/9.25 * CA 95054 USA or visit www.sun.com if you need additional information or 17.12/9.25 * have any questions. 17.12/9.25 */ 17.12/9.25 17.12/9.25 package javaUtilEx; 17.12/9.25 17.12/9.25 /** 17.12/9.25 * Thrown to indicate that a method has been passed an illegal or 17.12/9.25 * inappropriate argument. 17.12/9.25 * 17.12/9.25 * @author unascribed 17.12/9.25 * @see java.lang.Thread#setPriority(int) 17.12/9.25 * @since JDK1.0 17.12/9.25 */ 17.12/9.25 public 17.12/9.25 class IllegalArgumentException extends RuntimeException { 17.12/9.25 /** 17.12/9.25 * Constructs an IllegalArgumentException with no 17.12/9.25 * detail message. 17.12/9.25 */ 17.12/9.25 public IllegalArgumentException() { 17.12/9.25 super(); 17.12/9.25 } 17.12/9.25 17.12/9.25 /** 17.12/9.25 * Constructs an IllegalArgumentException with the 17.12/9.25 * specified detail message. 17.12/9.25 * 17.12/9.25 * @param s the detail message. 17.12/9.25 */ 17.12/9.25 public IllegalArgumentException(String s) { 17.12/9.25 super(s); 17.12/9.25 } 17.12/9.25 17.12/9.25 /** 17.12/9.25 * Constructs a new exception with the specified detail message and 17.12/9.25 * cause. 17.12/9.25 * 17.12/9.25 *

Note that the detail message associated with cause is 17.12/9.25 * not automatically incorporated in this exception's detail 17.12/9.25 * message. 17.12/9.25 * 17.12/9.25 * @param message the detail message (which is saved for later retrieval 17.12/9.25 * by the {@link Throwable#getMessage()} method). 17.12/9.25 * @param cause the cause (which is saved for later retrieval by the 17.12/9.25 * {@link Throwable#getCause()} method). (A null value 17.12/9.25 * is permitted, and indicates that the cause is nonexistent or 17.12/9.25 * unknown.) 17.12/9.25 * @since 1.5 17.12/9.25 */ 17.12/9.25 public IllegalArgumentException(String message, Throwable cause) { 17.12/9.25 super(message, cause); 17.12/9.25 } 17.12/9.25 17.12/9.25 /** 17.12/9.25 * Constructs a new exception with the specified cause and a detail 17.12/9.25 * message of (cause==null ? null : cause.toString()) (which 17.12/9.25 * typically contains the class and detail message of cause). 17.12/9.25 * This constructor is useful for exceptions that are little more than 17.12/9.25 * wrappers for other throwables (for example, {@link 17.12/9.25 * java.security.PrivilegedActionException}). 17.12/9.25 * 17.12/9.25 * @param cause the cause (which is saved for later retrieval by the 17.12/9.25 * {@link Throwable#getCause()} method). (A null value is 17.12/9.25 * permitted, and indicates that the cause is nonexistent or 17.12/9.25 * unknown.) 17.12/9.25 * @since 1.5 17.12/9.25 */ 17.12/9.25 public IllegalArgumentException(Throwable cause) { 17.12/9.25 super(cause); 17.12/9.25 } 17.12/9.25 17.12/9.25 private static final long serialVersionUID = -5365630128856068164L; 17.12/9.25 } 17.12/9.25 17.12/9.25 17.12/9.25 /* 17.12/9.25 * Copyright 1996-2003 Sun Microsystems, Inc. All Rights Reserved. 17.12/9.25 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 17.12/9.25 * 17.12/9.25 * This code is free software; you can redistribute it and/or modify it 17.12/9.25 * under the terms of the GNU General Public License version 2 only, as 17.12/9.25 * published by the Free Software Foundation. Sun designates this 17.12/9.25 * particular file as subject to the "Classpath" exception as provided 17.12/9.25 * by Sun in the LICENSE file that accompanied this code. 17.12/9.25 * 17.12/9.25 * This code is distributed in the hope that it will be useful, but WITHOUT 17.12/9.25 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or 17.12/9.25 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License 17.12/9.25 * version 2 for more details (a copy is included in the LICENSE file that 17.12/9.25 * accompanied this code). 17.12/9.25 * 17.12/9.25 * You should have received a copy of the GNU General Public License version 17.12/9.25 * 2 along with this work; if not, write to the Free Software Foundation, 17.12/9.25 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. 17.12/9.25 * 17.12/9.25 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara, 17.12/9.25 * CA 95054 USA or visit www.sun.com if you need additional information or 17.12/9.25 * have any questions. 17.12/9.25 */ 17.12/9.25 17.12/9.25 package javaUtilEx; 17.12/9.25 17.12/9.25 /** 17.12/9.25 * Signals that a method has been invoked at an illegal or 17.12/9.25 * inappropriate time. In other words, the Java environment or 17.12/9.25 * Java application is not in an appropriate state for the requested 17.12/9.25 * operation. 17.12/9.25 * 17.12/9.25 * @author Jonni Kanerva 17.12/9.25 * @since JDK1.1 17.12/9.25 */ 17.12/9.25 public 17.12/9.25 class IllegalStateException extends RuntimeException { 17.12/9.25 /** 17.12/9.25 * Constructs an IllegalStateException with no detail message. 17.12/9.25 * A detail message is a String that describes this particular exception. 17.12/9.25 */ 17.12/9.25 public IllegalStateException() { 17.12/9.25 super(); 17.12/9.25 } 17.12/9.25 17.12/9.25 /** 17.12/9.25 * Constructs an IllegalStateException with the specified detail 17.12/9.25 * message. A detail message is a String that describes this particular 17.12/9.25 * exception. 17.12/9.25 * 17.12/9.25 * @param s the String that contains a detailed message 17.12/9.25 */ 17.12/9.25 public IllegalStateException(String s) { 17.12/9.25 super(s); 17.12/9.25 } 17.12/9.25 17.12/9.25 /** 17.12/9.25 * Constructs a new exception with the specified detail message and 17.12/9.25 * cause. 17.12/9.25 * 17.12/9.25 *

Note that the detail message associated with cause is 17.12/9.25 * not automatically incorporated in this exception's detail 17.12/9.25 * message. 17.12/9.25 * 17.12/9.25 * @param message the detail message (which is saved for later retrieval 17.12/9.25 * by the {@link Throwable#getMessage()} method). 17.12/9.25 * @param cause the cause (which is saved for later retrieval by the 17.12/9.25 * {@link Throwable#getCause()} method). (A null value 17.12/9.25 * is permitted, and indicates that the cause is nonexistent or 17.12/9.25 * unknown.) 17.12/9.25 * @since 1.5 17.12/9.25 */ 17.12/9.25 public IllegalStateException(String message, Throwable cause) { 17.12/9.25 super(message, cause); 17.12/9.25 } 17.12/9.25 17.12/9.25 /** 17.12/9.25 * Constructs a new exception with the specified cause and a detail 17.12/9.25 * message of (cause==null ? null : cause.toString()) (which 17.12/9.25 * typically contains the class and detail message of cause). 17.12/9.25 * This constructor is useful for exceptions that are little more than 17.12/9.25 * wrappers for other throwables (for example, {@link 17.12/9.25 * java.security.PrivilegedActionException}). 17.12/9.25 * 17.12/9.25 * @param cause the cause (which is saved for later retrieval by the 17.12/9.25 * {@link Throwable#getCause()} method). (A null value is 17.12/9.25 * permitted, and indicates that the cause is nonexistent or 17.12/9.25 * unknown.) 17.12/9.25 * @since 1.5 17.12/9.25 */ 17.12/9.25 public IllegalStateException(Throwable cause) { 17.12/9.25 super(cause); 17.12/9.25 } 17.12/9.25 17.12/9.25 static final long serialVersionUID = -1848914673093119416L; 17.12/9.25 } 17.12/9.25 17.12/9.25 17.12/9.25 /* 17.12/9.25 * Copyright 1997-2006 Sun Microsystems, Inc. All Rights Reserved. 17.12/9.25 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 17.12/9.25 * 17.12/9.25 * This code is free software; you can redistribute it and/or modify it 17.12/9.25 * under the terms of the GNU General Public License version 2 only, as 17.12/9.25 * published by the Free Software Foundation. Sun designates this 17.12/9.25 * particular file as subject to the "Classpath" exception as provided 17.12/9.25 * by Sun in the LICENSE file that accompanied this code. 17.12/9.25 * 17.12/9.25 * This code is distributed in the hope that it will be useful, but WITHOUT 17.12/9.25 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or 17.12/9.25 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License 17.12/9.25 * version 2 for more details (a copy is included in the LICENSE file that 17.12/9.25 * accompanied this code). 17.12/9.25 * 17.12/9.25 * You should have received a copy of the GNU General Public License version 17.12/9.25 * 2 along with this work; if not, write to the Free Software Foundation, 17.12/9.25 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. 17.12/9.25 * 17.12/9.25 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara, 17.12/9.25 * CA 95054 USA or visit www.sun.com if you need additional information or 17.12/9.25 * have any questions. 17.12/9.25 */ 17.12/9.25 17.12/9.25 package javaUtilEx; 17.12/9.25 17.12/9.25 /** 17.12/9.25 * An iterator over a collection. {@code Iterator} takes the place of 17.12/9.25 * {@link Enumeration} in the Java Collections Framework. Iterators 17.12/9.25 * differ from enumerations in two ways: 17.12/9.25 * 17.12/9.25 *

17.12/9.25 * 17.12/9.25 *

This interface is a member of the 17.12/9.25 * 17.12/9.25 * Java Collections Framework. 17.12/9.25 * 17.12/9.25 * @author Josh Bloch 17.12/9.25 * @see Collection 17.12/9.25 * @see ListIterator 17.12/9.25 * @see Iterable 17.12/9.25 * @since 1.2 17.12/9.25 */ 17.12/9.25 public interface Iterator { 17.12/9.25 /** 17.12/9.25 * Returns {@code true} if the iteration has more elements. 17.12/9.25 * (In other words, returns {@code true} if {@link #next} would 17.12/9.25 * return an element rather than throwing an exception.) 17.12/9.25 * 17.12/9.25 * @return {@code true} if the iteration has more elements 17.12/9.25 */ 17.12/9.25 boolean hasNext(); 17.12/9.25 17.12/9.25 /** 17.12/9.25 * Returns the next element in the iteration. 17.12/9.25 * 17.12/9.25 * @return the next element in the iteration 17.12/9.25 * @throws NoSuchElementException if the iteration has no more elements 17.12/9.25 */ 17.12/9.25 E next(); 17.12/9.25 17.12/9.25 /** 17.12/9.25 * Removes from the underlying collection the last element returned 17.12/9.25 * by this iterator (optional operation). This method can be called 17.12/9.25 * only once per call to {@link #next}. The behavior of an iterator 17.12/9.25 * is unspecified if the underlying collection is modified while the 17.12/9.25 * iteration is in progress in any way other than by calling this 17.12/9.25 * method. 17.12/9.25 * 17.12/9.25 * @throws UnsupportedOperationException if the {@code remove} 17.12/9.25 * operation is not supported by this iterator 17.12/9.25 * 17.12/9.25 * @throws IllegalStateException if the {@code next} method has not 17.12/9.25 * yet been called, or the {@code remove} method has already 17.12/9.25 * been called after the last call to the {@code next} 17.12/9.25 * method 17.12/9.25 */ 17.12/9.25 void remove(); 17.12/9.25 } 17.12/9.25 17.12/9.25 17.12/9.25 package javaUtilEx; 17.12/9.25 17.12/9.25 public class juLinkedListCreatePoll { 17.12/9.25 public static void main(String[] args) { 17.12/9.25 Random.args = args; 17.12/9.25 17.12/9.25 LinkedList l = createList(Random.random()); 17.12/9.25 l.poll(); 17.12/9.25 } 17.12/9.25 17.12/9.25 public static LinkedList createList(int n) { 17.12/9.25 LinkedList l = new LinkedList(); 17.12/9.25 while (n > 0) { 17.12/9.25 l.addLast(new Content(Random.random())); 17.12/9.25 n--; 17.12/9.25 } 17.12/9.25 return l; 17.12/9.25 } 17.12/9.25 } 17.12/9.25 17.12/9.25 final class Content { 17.12/9.25 int val; 17.12/9.25 17.12/9.25 public Content(int v) { 17.12/9.25 this.val = v; 17.12/9.25 } 17.12/9.25 17.12/9.25 public int hashCode() { 17.12/9.25 return val^31; 17.12/9.25 } 17.12/9.25 17.12/9.25 public boolean equals(Object o) { 17.12/9.25 if (o instanceof Content) { 17.12/9.25 return this.val == ((Content) o).val; 17.12/9.25 } 17.12/9.25 return false; 17.12/9.25 } 17.12/9.25 } 17.12/9.25 17.12/9.25 17.12/9.25 /* 17.12/9.25 * Copyright 1997-2006 Sun Microsystems, Inc. All Rights Reserved. 17.12/9.25 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 17.12/9.25 * 17.12/9.25 * This code is free software; you can redistribute it and/or modify it 17.12/9.25 * under the terms of the GNU General Public License version 2 only, as 17.12/9.25 * published by the Free Software Foundation. Sun designates this 17.12/9.25 * particular file as subject to the "Classpath" exception as provided 17.12/9.25 * by Sun in the LICENSE file that accompanied this code. 17.12/9.25 * 17.12/9.25 * This code is distributed in the hope that it will be useful, but WITHOUT 17.12/9.25 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or 17.12/9.25 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License 17.12/9.25 * version 2 for more details (a copy is included in the LICENSE file that 17.12/9.25 * accompanied this code). 17.12/9.25 * 17.12/9.25 * You should have received a copy of the GNU General Public License version 17.12/9.25 * 2 along with this work; if not, write to the Free Software Foundation, 17.12/9.25 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. 17.12/9.25 * 17.12/9.25 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara, 17.12/9.25 * CA 95054 USA or visit www.sun.com if you need additional information or 17.12/9.25 * have any questions. 17.12/9.25 */ 17.12/9.25 17.12/9.25 package javaUtilEx; 17.12/9.25 17.12/9.25 /** 17.12/9.25 * Linked list implementation of the List interface. Implements all 17.12/9.25 * optional list operations, and permits all elements (including 17.12/9.25 * null). In addition to implementing the List interface, 17.12/9.25 * the LinkedList class provides uniformly named methods to 17.12/9.25 * get, remove and insert an element at the 17.12/9.25 * beginning and end of the list. These operations allow linked lists to be 17.12/9.25 * used as a stack, {@linkplain Queue queue}, or {@linkplain Deque 17.12/9.25 * double-ended queue}.

17.12/9.25 * 17.12/9.25 * The class implements the Deque interface, providing 17.12/9.25 * first-in-first-out queue operations for add, 17.12/9.25 * poll, along with other stack and deque operations.

17.12/9.25 * 17.12/9.25 * All of the operations perform as could be expected for a doubly-linked 17.12/9.25 * list. Operations that index into the list will traverse the list from 17.12/9.25 * the beginning or the end, whichever is closer to the specified index.

17.12/9.25 * 17.12/9.25 *

Note that this implementation is not synchronized. 17.12/9.25 * If multiple threads access a linked list concurrently, and at least 17.12/9.25 * one of the threads modifies the list structurally, it must be 17.12/9.25 * synchronized externally. (A structural modification is any operation 17.12/9.25 * that adds or deletes one or more elements; merely setting the value of 17.12/9.25 * an element is not a structural modification.) This is typically 17.12/9.25 * accomplished by synchronizing on some object that naturally 17.12/9.25 * encapsulates the list. 17.12/9.25 * 17.12/9.25 * If no such object exists, the list should be "wrapped" using the 17.12/9.25 * {@link Collections#synchronizedList Collections.synchronizedList} 17.12/9.25 * method. This is best done at creation time, to prevent accidental 17.12/9.25 * unsynchronized access to the list:

17.12/9.25	 *   List list = Collections.synchronizedList(new LinkedList(...));
17.12/9.25 * 17.12/9.25 *

The iterators returned by this class's iterator and 17.12/9.25 * listIterator methods are fail-fast: if the list is 17.12/9.25 * structurally modified at any time after the iterator is created, in 17.12/9.25 * any way except through the Iterator's own remove or 17.12/9.25 * add methods, the iterator will throw a {@link 17.12/9.25 * ConcurrentModificationException}. Thus, in the face of concurrent 17.12/9.25 * modification, the iterator fails quickly and cleanly, rather than 17.12/9.25 * risking arbitrary, non-deterministic behavior at an undetermined 17.12/9.25 * time in the future. 17.12/9.25 * 17.12/9.25 *

Note that the fail-fast behavior of an iterator cannot be guaranteed 17.12/9.25 * as it is, generally speaking, impossible to make any hard guarantees in the 17.12/9.25 * presence of unsynchronized concurrent modification. Fail-fast iterators 17.12/9.25 * throw ConcurrentModificationException on a best-effort basis. 17.12/9.25 * Therefore, it would be wrong to write a program that depended on this 17.12/9.25 * exception for its correctness: the fail-fast behavior of iterators 17.12/9.25 * should be used only to detect bugs. 17.12/9.25 * 17.12/9.25 *

This class is a member of the 17.12/9.25 * 17.12/9.25 * Java Collections Framework. 17.12/9.25 * 17.12/9.25 * @author Josh Bloch 17.12/9.25 * @see List 17.12/9.25 * @see ArrayList 17.12/9.25 * @see Vector 17.12/9.25 * @since 1.2 17.12/9.25 * @param the type of elements held in this collection 17.12/9.25 */ 17.12/9.25 17.12/9.25 public class LinkedList 17.12/9.25 extends AbstractSequentialList 17.12/9.25 implements List, Deque 17.12/9.25 { 17.12/9.25 private transient Entry header = new Entry(null, null, null); 17.12/9.25 private transient int size = 0; 17.12/9.25 17.12/9.25 /** 17.12/9.25 * Constructs an empty list. 17.12/9.25 */ 17.12/9.25 public LinkedList() { 17.12/9.25 header.next = header.previous = header; 17.12/9.25 } 17.12/9.25 17.12/9.25 /** 17.12/9.25 * Constructs a list containing the elements of the specified 17.12/9.25 * collection, in the order they are returned by the collection's 17.12/9.25 * iterator. 17.12/9.25 * 17.12/9.25 * @param c the collection whose elements are to be placed into this list 17.12/9.25 * @throws NullPointerException if the specified collection is null 17.12/9.25 */ 17.12/9.25 public LinkedList(Collection c) { 17.12/9.25 this(); 17.12/9.25 addAll(c); 17.12/9.25 } 17.12/9.25 17.12/9.25 /** 17.12/9.25 * Returns the first element in this list. 17.12/9.25 * 17.12/9.25 * @return the first element in this list 17.12/9.25 * @throws NoSuchElementException if this list is empty 17.12/9.25 */ 17.12/9.25 public E getFirst() { 17.12/9.25 if (size==0) 17.12/9.25 throw new NoSuchElementException(); 17.12/9.25 17.12/9.25 return header.next.element; 17.12/9.25 } 17.12/9.25 17.12/9.25 /** 17.12/9.25 * Returns the last element in this list. 17.12/9.25 * 17.12/9.25 * @return the last element in this list 17.12/9.25 * @throws NoSuchElementException if this list is empty 17.12/9.25 */ 17.12/9.25 public E getLast() { 17.12/9.25 if (size==0) 17.12/9.25 throw new NoSuchElementException(); 17.12/9.25 17.12/9.25 return header.previous.element; 17.12/9.25 } 17.12/9.25 17.12/9.25 /** 17.12/9.25 * Removes and returns the first element from this list. 17.12/9.25 * 17.12/9.25 * @return the first element from this list 17.12/9.25 * @throws NoSuchElementException if this list is empty 17.12/9.25 */ 17.12/9.25 public E removeFirst() { 17.12/9.25 return remove(header.next); 17.12/9.25 } 17.12/9.25 17.12/9.25 /** 17.12/9.25 * Removes and returns the last element from this list. 17.12/9.25 * 17.12/9.25 * @return the last element from this list 17.12/9.25 * @throws NoSuchElementException if this list is empty 17.12/9.25 */ 17.12/9.25 public E removeLast() { 17.12/9.25 return remove(header.previous); 17.12/9.25 } 17.12/9.25 17.12/9.25 /** 17.12/9.25 * Inserts the specified element at the beginning of this list. 17.12/9.25 * 17.12/9.25 * @param e the element to add 17.12/9.25 */ 17.12/9.25 public void addFirst(E e) { 17.12/9.25 addBefore(e, header.next); 17.12/9.25 } 17.12/9.25 17.12/9.25 /** 17.12/9.25 * Appends the specified element to the end of this list. 17.12/9.25 * 17.12/9.25 *

This method is equivalent to {@link #add}. 17.12/9.25 * 17.12/9.25 * @param e the element to add 17.12/9.25 */ 17.12/9.25 public void addLast(E e) { 17.12/9.25 addBefore(e, header); 17.12/9.25 } 17.12/9.25 17.12/9.25 /** 17.12/9.25 * Returns true if this list contains the specified element. 17.12/9.25 * More formally, returns true if and only if this list contains 17.12/9.25 * at least one element e such that 17.12/9.25 * (o==null ? e==null : o.equals(e)). 17.12/9.25 * 17.12/9.25 * @param o element whose presence in this list is to be tested 17.12/9.25 * @return true if this list contains the specified element 17.12/9.25 */ 17.12/9.25 public boolean contains(Object o) { 17.12/9.25 return indexOf(o) != -1; 17.12/9.25 } 17.12/9.25 17.12/9.25 /** 17.12/9.25 * Returns the number of elements in this list. 17.12/9.25 * 17.12/9.25 * @return the number of elements in this list 17.12/9.25 */ 17.12/9.25 public int size() { 17.12/9.25 return size; 17.12/9.25 } 17.12/9.25 17.12/9.25 /** 17.12/9.25 * Appends the specified element to the end of this list. 17.12/9.25 * 17.12/9.25 *

This method is equivalent to {@link #addLast}. 17.12/9.25 * 17.12/9.25 * @param e element to be appended to this list 17.12/9.25 * @return true (as specified by {@link Collection#add}) 17.12/9.25 */ 17.12/9.25 public boolean add(E e) { 17.12/9.25 addBefore(e, header); 17.12/9.25 return true; 17.12/9.25 } 17.12/9.25 17.12/9.25 /** 17.12/9.25 * Removes the first occurrence of the specified element from this list, 17.12/9.25 * if it is present. If this list does not contain the element, it is 17.12/9.25 * unchanged. More formally, removes the element with the lowest index 17.12/9.25 * i such that 17.12/9.25 * (o==null ? get(i)==null : o.equals(get(i))) 17.12/9.25 * (if such an element exists). Returns true if this list 17.12/9.25 * contained the specified element (or equivalently, if this list 17.12/9.25 * changed as a result of the call). 17.12/9.25 * 17.12/9.25 * @param o element to be removed from this list, if present 17.12/9.25 * @return true if this list contained the specified element 17.12/9.25 */ 17.12/9.25 public boolean remove(Object o) { 17.12/9.25 if (o==null) { 17.12/9.25 for (Entry e = header.next; e != header; e = e.next) { 17.12/9.25 if (e.element==null) { 17.12/9.25 remove(e); 17.12/9.25 return true; 17.12/9.25 } 17.12/9.25 } 17.12/9.25 } else { 17.12/9.25 for (Entry e = header.next; e != header; e = e.next) { 17.12/9.25 if (o.equals(e.element)) { 17.12/9.25 remove(e); 17.12/9.25 return true; 17.12/9.25 } 17.12/9.25 } 17.12/9.25 } 17.12/9.25 return false; 17.12/9.25 } 17.12/9.25 /** 17.12/9.25 * Removes all of the elements from this list. 17.12/9.25 */ 17.12/9.25 public void clear() { 17.12/9.25 Entry e = header.next; 17.12/9.25 while (e != header) { 17.12/9.25 Entry next = e.next; 17.12/9.25 e.next = e.previous = null; 17.12/9.25 e.element = null; 17.12/9.25 e = next; 17.12/9.25 } 17.12/9.25 header.next = header.previous = header; 17.12/9.25 size = 0; 17.12/9.25 modCount++; 17.12/9.25 } 17.12/9.25 17.12/9.25 17.12/9.25 // Positional Access Operations 17.12/9.25 17.12/9.25 /** 17.12/9.25 * Returns the element at the specified position in this list. 17.12/9.25 * 17.12/9.25 * @param index index of the element to return 17.12/9.25 * @return the element at the specified position in this list 17.12/9.25 * @throws IndexOutOfBoundsException {@inheritDoc} 17.12/9.25 */ 17.12/9.25 public E get(int index) { 17.12/9.25 return entry(index).element; 17.12/9.25 } 17.12/9.25 17.12/9.25 /** 17.12/9.25 * Replaces the element at the specified position in this list with the 17.12/9.25 * specified element. 17.12/9.25 * 17.12/9.25 * @param index index of the element to replace 17.12/9.25 * @param element element to be stored at the specified position 17.12/9.25 * @return the element previously at the specified position 17.12/9.25 * @throws IndexOutOfBoundsException {@inheritDoc} 17.12/9.25 */ 17.12/9.25 public E set(int index, E element) { 17.12/9.25 Entry e = entry(index); 17.12/9.25 E oldVal = e.element; 17.12/9.25 e.element = element; 17.12/9.25 return oldVal; 17.12/9.25 } 17.12/9.25 17.12/9.25 /** 17.12/9.25 * Inserts the specified element at the specified position in this list. 17.12/9.25 * Shifts the element currently at that position (if any) and any 17.12/9.25 * subsequent elements to the right (adds one to their indices). 17.12/9.25 * 17.12/9.25 * @param index index at which the specified element is to be inserted 17.12/9.25 * @param element element to be inserted 17.12/9.25 * @throws IndexOutOfBoundsException {@inheritDoc} 17.12/9.25 */ 17.12/9.25 public void add(int index, E element) { 17.12/9.25 addBefore(element, (index==size ? header : entry(index))); 17.12/9.25 } 17.12/9.25 17.12/9.25 /** 17.12/9.25 * Removes the element at the specified position in this list. Shifts any 17.12/9.25 * subsequent elements to the left (subtracts one from their indices). 17.12/9.25 * Returns the element that was removed from the list. 17.12/9.25 * 17.12/9.25 * @param index the index of the element to be removed 17.12/9.25 * @return the element previously at the specified position 17.12/9.25 * @throws IndexOutOfBoundsException {@inheritDoc} 17.12/9.25 */ 17.12/9.25 public E remove(int index) { 17.12/9.25 return remove(entry(index)); 17.12/9.25 } 17.12/9.25 17.12/9.25 /** 17.12/9.25 * Returns the indexed entry. 17.12/9.25 */ 17.12/9.25 private Entry entry(int index) { 17.12/9.25 if (index < 0 || index >= size) 17.12/9.25 throw new IndexOutOfBoundsException(); 17.12/9.25 Entry e = header; 17.12/9.25 if (index < (size >> 1)) { 17.12/9.25 for (int i = 0; i <= index; i++) 17.12/9.25 e = e.next; 17.12/9.25 } else { 17.12/9.25 for (int i = size; i > index; i--) 17.12/9.25 e = e.previous; 17.12/9.25 } 17.12/9.25 return e; 17.12/9.25 } 17.12/9.25 17.12/9.25 17.12/9.25 // Search Operations 17.12/9.25 17.12/9.25 /** 17.12/9.25 * Returns the index of the first occurrence of the specified element 17.12/9.25 * in this list, or -1 if this list does not contain the element. 17.12/9.25 * More formally, returns the lowest index i such that 17.12/9.25 * (o==null ? get(i)==null : o.equals(get(i))), 17.12/9.25 * or -1 if there is no such index. 17.12/9.25 * 17.12/9.25 * @param o element to search for 17.12/9.25 * @return the index of the first occurrence of the specified element in 17.12/9.25 * this list, or -1 if this list does not contain the element 17.12/9.25 */ 17.12/9.25 public int indexOf(Object o) { 17.12/9.25 int index = 0; 17.12/9.25 if (o==null) { 17.12/9.25 for (Entry e = header.next; e != header; e = e.next) { 17.12/9.25 if (e.element==null) 17.12/9.25 return index; 17.12/9.25 index++; 17.12/9.25 } 17.12/9.25 } else { 17.12/9.25 for (Entry e = header.next; e != header; e = e.next) { 17.12/9.25 if (o.equals(e.element)) 17.12/9.25 return index; 17.12/9.25 index++; 17.12/9.25 } 17.12/9.25 } 17.12/9.25 return -1; 17.12/9.25 } 17.12/9.25 17.12/9.25 /** 17.12/9.25 * Returns the index of the last occurrence of the specified element 17.12/9.25 * in this list, or -1 if this list does not contain the element. 17.12/9.25 * More formally, returns the highest index i such that 17.12/9.25 * (o==null ? get(i)==null : o.equals(get(i))), 17.12/9.25 * or -1 if there is no such index. 17.12/9.25 * 17.12/9.25 * @param o element to search for 17.12/9.25 * @return the index of the last occurrence of the specified element in 17.12/9.25 * this list, or -1 if this list does not contain the element 17.12/9.25 */ 17.12/9.25 public int lastIndexOf(Object o) { 17.12/9.25 int index = size; 17.12/9.25 if (o==null) { 17.12/9.25 for (Entry e = header.previous; e != header; e = e.previous) { 17.12/9.25 index--; 17.12/9.25 if (e.element==null) 17.12/9.25 return index; 17.12/9.25 } 17.12/9.25 } else { 17.12/9.25 for (Entry e = header.previous; e != header; e = e.previous) { 17.12/9.25 index--; 17.12/9.25 if (o.equals(e.element)) 17.12/9.25 return index; 17.12/9.25 } 17.12/9.25 } 17.12/9.25 return -1; 17.12/9.25 } 17.12/9.25 17.12/9.25 // Queue operations. 17.12/9.25 17.12/9.25 /** 17.12/9.25 * Retrieves, but does not remove, the head (first element) of this list. 17.12/9.25 * @return the head of this list, or null if this list is empty 17.12/9.25 * @since 1.5 17.12/9.25 */ 17.12/9.25 public E peek() { 17.12/9.25 if (size==0) 17.12/9.25 return null; 17.12/9.25 return getFirst(); 17.12/9.25 } 17.12/9.25 17.12/9.25 /** 17.12/9.25 * Retrieves, but does not remove, the head (first element) of this list. 17.12/9.25 * @return the head of this list 17.12/9.25 * @throws NoSuchElementException if this list is empty 17.12/9.25 * @since 1.5 17.12/9.25 */ 17.12/9.25 public E element() { 17.12/9.25 return getFirst(); 17.12/9.25 } 17.12/9.25 17.12/9.25 /** 17.12/9.25 * Retrieves and removes the head (first element) of this list 17.12/9.25 * @return the head of this list, or null if this list is empty 17.12/9.25 * @since 1.5 17.12/9.25 */ 17.12/9.25 public E poll() { 17.12/9.25 if (size==0) 17.12/9.25 return null; 17.12/9.25 return removeFirst(); 17.12/9.25 } 17.12/9.25 17.12/9.25 /** 17.12/9.25 * Retrieves and removes the head (first element) of this list. 17.12/9.25 * 17.12/9.25 * @return the head of this list 17.12/9.25 * @throws NoSuchElementException if this list is empty 17.12/9.25 * @since 1.5 17.12/9.25 */ 17.12/9.25 public E remove() { 17.12/9.25 return removeFirst(); 17.12/9.25 } 17.12/9.25 17.12/9.25 /** 17.12/9.25 * Adds the specified element as the tail (last element) of this list. 17.12/9.25 * 17.12/9.25 * @param e the element to add 17.12/9.25 * @return true (as specified by {@link Queue#offer}) 17.12/9.25 * @since 1.5 17.12/9.25 */ 17.12/9.25 public boolean offer(E e) { 17.12/9.25 return add(e); 17.12/9.25 } 17.12/9.25 17.12/9.25 // Deque operations 17.12/9.25 /** 17.12/9.25 * Inserts the specified element at the front of this list. 17.12/9.25 * 17.12/9.25 * @param e the element to insert 17.12/9.25 * @return true (as specified by {@link Deque#offerFirst}) 17.12/9.25 * @since 1.6 17.12/9.25 */ 17.12/9.25 public boolean offerFirst(E e) { 17.12/9.25 addFirst(e); 17.12/9.25 return true; 17.12/9.25 } 17.12/9.25 17.12/9.25 /** 17.12/9.25 * Inserts the specified element at the end of this list. 17.12/9.25 * 17.12/9.25 * @param e the element to insert 17.12/9.25 * @return true (as specified by {@link Deque#offerLast}) 17.12/9.25 * @since 1.6 17.12/9.25 */ 17.12/9.25 public boolean offerLast(E e) { 17.12/9.25 addLast(e); 17.12/9.25 return true; 17.12/9.25 } 17.12/9.25 17.12/9.25 /** 17.12/9.25 * Retrieves, but does not remove, the first element of this list, 17.12/9.25 * or returns null if this list is empty. 17.12/9.25 * 17.12/9.25 * @return the first element of this list, or null 17.12/9.25 * if this list is empty 17.12/9.25 * @since 1.6 17.12/9.25 */ 17.12/9.25 public E peekFirst() { 17.12/9.25 if (size==0) 17.12/9.25 return null; 17.12/9.25 return getFirst(); 17.12/9.25 } 17.12/9.25 17.12/9.25 /** 17.12/9.25 * Retrieves, but does not remove, the last element of this list, 17.12/9.25 * or returns null if this list is empty. 17.12/9.25 * 17.12/9.25 * @return the last element of this list, or null 17.12/9.25 * if this list is empty 17.12/9.25 * @since 1.6 17.12/9.25 */ 17.12/9.25 public E peekLast() { 17.12/9.25 if (size==0) 17.12/9.25 return null; 17.12/9.25 return getLast(); 17.12/9.25 } 17.12/9.25 17.12/9.25 /** 17.12/9.25 * Retrieves and removes the first element of this list, 17.12/9.25 * or returns null if this list is empty. 17.12/9.25 * 17.12/9.25 * @return the first element of this list, or null if 17.12/9.25 * this list is empty 17.12/9.25 * @since 1.6 17.12/9.25 */ 17.12/9.25 public E pollFirst() { 17.12/9.25 if (size==0) 17.12/9.25 return null; 17.12/9.25 return removeFirst(); 17.12/9.25 } 17.12/9.25 17.12/9.25 /** 17.12/9.25 * Retrieves and removes the last element of this list, 17.12/9.25 * or returns null if this list is empty. 17.12/9.25 * 17.12/9.25 * @return the last element of this list, or null if 17.12/9.25 * this list is empty 17.12/9.25 * @since 1.6 17.12/9.25 */ 17.12/9.25 public E pollLast() { 17.12/9.25 if (size==0) 17.12/9.25 return null; 17.12/9.25 return removeLast(); 17.12/9.25 } 17.12/9.25 17.12/9.25 /** 17.12/9.25 * Pushes an element onto the stack represented by this list. In other 17.12/9.25 * words, inserts the element at the front of this list. 17.12/9.25 * 17.12/9.25 *

This method is equivalent to {@link #addFirst}. 17.12/9.25 * 17.12/9.25 * @param e the element to push 17.12/9.25 * @since 1.6 17.12/9.25 */ 17.12/9.25 public void push(E e) { 17.12/9.25 addFirst(e); 17.12/9.25 } 17.12/9.25 17.12/9.25 /** 17.12/9.25 * Pops an element from the stack represented by this list. In other 17.12/9.25 * words, removes and returns the first element of this list. 17.12/9.25 * 17.12/9.25 *

This method is equivalent to {@link #removeFirst()}. 17.12/9.25 * 17.12/9.25 * @return the element at the front of this list (which is the top 17.12/9.25 * of the stack represented by this list) 17.12/9.25 * @throws NoSuchElementException if this list is empty 17.12/9.25 * @since 1.6 17.12/9.25 */ 17.12/9.25 public E pop() { 17.12/9.25 return removeFirst(); 17.12/9.25 } 17.12/9.25 17.12/9.25 /** 17.12/9.25 * Removes the first occurrence of the specified element in this 17.12/9.25 * list (when traversing the list from head to tail). If the list 17.12/9.25 * does not contain the element, it is unchanged. 17.12/9.25 * 17.12/9.25 * @param o element to be removed from this list, if present 17.12/9.25 * @return true if the list contained the specified element 17.12/9.25 * @since 1.6 17.12/9.25 */ 17.12/9.25 public boolean removeFirstOccurrence(Object o) { 17.12/9.25 return remove(o); 17.12/9.25 } 17.12/9.25 17.12/9.25 /** 17.12/9.25 * Removes the last occurrence of the specified element in this 17.12/9.25 * list (when traversing the list from head to tail). If the list 17.12/9.25 * does not contain the element, it is unchanged. 17.12/9.25 * 17.12/9.25 * @param o element to be removed from this list, if present 17.12/9.25 * @return true if the list contained the specified element 17.12/9.25 * @since 1.6 17.12/9.25 */ 17.12/9.25 public boolean removeLastOccurrence(Object o) { 17.12/9.25 if (o==null) { 17.12/9.25 for (Entry e = header.previous; e != header; e = e.previous) { 17.12/9.25 if (e.element==null) { 17.12/9.25 remove(e); 17.12/9.25 return true; 17.12/9.25 } 17.12/9.25 } 17.12/9.25 } else { 17.12/9.25 for (Entry e = header.previous; e != header; e = e.previous) { 17.12/9.25 if (o.equals(e.element)) { 17.12/9.25 remove(e); 17.12/9.25 return true; 17.12/9.25 } 17.12/9.25 } 17.12/9.25 } 17.12/9.25 return false; 17.12/9.25 } 17.12/9.25 17.12/9.25 /** 17.12/9.25 * Returns a list-iterator of the elements in this list (in proper 17.12/9.25 * sequence), starting at the specified position in the list. 17.12/9.25 * Obeys the general contract of List.listIterator(int).

17.12/9.25 * 17.12/9.25 * The list-iterator is fail-fast: if the list is structurally 17.12/9.25 * modified at any time after the Iterator is created, in any way except 17.12/9.25 * through the list-iterator's own remove or add 17.12/9.25 * methods, the list-iterator will throw a 17.12/9.25 * ConcurrentModificationException. Thus, in the face of 17.12/9.25 * concurrent modification, the iterator fails quickly and cleanly, rather 17.12/9.25 * than risking arbitrary, non-deterministic behavior at an undetermined 17.12/9.25 * time in the future. 17.12/9.25 * 17.12/9.25 * @param index index of the first element to be returned from the 17.12/9.25 * list-iterator (by a call to next) 17.12/9.25 * @return a ListIterator of the elements in this list (in proper 17.12/9.25 * sequence), starting at the specified position in the list 17.12/9.25 * @throws IndexOutOfBoundsException {@inheritDoc} 17.12/9.25 * @see List#listIterator(int) 17.12/9.25 */ 17.12/9.25 public ListIterator listIterator(int index) { 17.12/9.25 return new ListItr(index); 17.12/9.25 } 17.12/9.25 17.12/9.25 private class ListItr implements ListIterator { 17.12/9.25 private Entry lastReturned = header; 17.12/9.25 private Entry next; 17.12/9.25 private int nextIndex; 17.12/9.25 private int expectedModCount = modCount; 17.12/9.25 17.12/9.25 ListItr(int index) { 17.12/9.25 if (index < 0 || index > size) 17.12/9.25 throw new IndexOutOfBoundsException(); 17.12/9.25 if (index < (size >> 1)) { 17.12/9.25 next = header.next; 17.12/9.25 for (nextIndex=0; nextIndexindex; nextIndex--) 17.12/9.25 next = next.previous; 17.12/9.25 } 17.12/9.25 } 17.12/9.25 17.12/9.25 public boolean hasNext() { 17.12/9.25 return nextIndex != size; 17.12/9.25 } 17.12/9.25 17.12/9.25 public E next() { 17.12/9.25 checkForComodification(); 17.12/9.25 if (nextIndex == size) 17.12/9.25 throw new NoSuchElementException(); 17.12/9.25 17.12/9.25 lastReturned = next; 17.12/9.25 next = next.next; 17.12/9.25 nextIndex++; 17.12/9.25 return lastReturned.element; 17.12/9.25 } 17.12/9.25 17.12/9.25 public boolean hasPrevious() { 17.12/9.25 return nextIndex != 0; 17.12/9.25 } 17.12/9.25 17.12/9.25 public E previous() { 17.12/9.25 if (nextIndex == 0) 17.12/9.25 throw new NoSuchElementException(); 17.12/9.25 17.12/9.25 lastReturned = next = next.previous; 17.12/9.25 nextIndex--; 17.12/9.25 checkForComodification(); 17.12/9.25 return lastReturned.element; 17.12/9.25 } 17.12/9.25 17.12/9.25 public int nextIndex() { 17.12/9.25 return nextIndex; 17.12/9.25 } 17.12/9.25 17.12/9.25 public int previousIndex() { 17.12/9.25 return nextIndex-1; 17.12/9.25 } 17.12/9.25 17.12/9.25 public void remove() { 17.12/9.25 checkForComodification(); 17.12/9.25 Entry lastNext = lastReturned.next; 17.12/9.25 try { 17.12/9.25 LinkedList.this.remove(lastReturned); 17.12/9.25 } catch (NoSuchElementException e) { 17.12/9.25 throw new IllegalStateException(); 17.12/9.25 } 17.12/9.25 if (next==lastReturned) 17.12/9.25 next = lastNext; 17.12/9.25 else 17.12/9.25 nextIndex--; 17.12/9.25 lastReturned = header; 17.12/9.25 expectedModCount++; 17.12/9.25 } 17.12/9.25 17.12/9.25 public void set(E e) { 17.12/9.25 if (lastReturned == header) 17.12/9.25 throw new IllegalStateException(); 17.12/9.25 checkForComodification(); 17.12/9.25 lastReturned.element = e; 17.12/9.25 } 17.12/9.25 17.12/9.25 public void add(E e) { 17.12/9.25 checkForComodification(); 17.12/9.25 lastReturned = header; 17.12/9.25 addBefore(e, next); 17.12/9.25 nextIndex++; 17.12/9.25 expectedModCount++; 17.12/9.25 } 17.12/9.25 17.12/9.25 final void checkForComodification() { 17.12/9.25 if (modCount != expectedModCount) 17.12/9.25 throw new ConcurrentModificationException(); 17.12/9.25 } 17.12/9.25 } 17.12/9.25 17.12/9.25 private static class Entry { 17.12/9.25 E element; 17.12/9.25 Entry next; 17.12/9.25 Entry previous; 17.12/9.25 17.12/9.25 Entry(E element, Entry next, Entry previous) { 17.12/9.25 this.element = element; 17.12/9.25 this.next = next; 17.12/9.25 this.previous = previous; 17.12/9.25 } 17.12/9.25 } 17.12/9.25 17.12/9.25 private Entry addBefore(E e, Entry entry) { 17.12/9.25 Entry newEntry = new Entry(e, entry, entry.previous); 17.12/9.25 newEntry.previous.next = newEntry; 17.12/9.25 newEntry.next.previous = newEntry; 17.12/9.25 size++; 17.12/9.25 modCount++; 17.12/9.25 return newEntry; 17.12/9.25 } 17.12/9.25 17.12/9.25 private E remove(Entry e) { 17.12/9.25 if (e == header) 17.12/9.25 throw new NoSuchElementException(); 17.12/9.25 17.12/9.25 E result = e.element; 17.12/9.25 e.previous.next = e.next; 17.12/9.25 e.next.previous = e.previous; 17.12/9.25 e.next = e.previous = null; 17.12/9.25 e.element = null; 17.12/9.25 size--; 17.12/9.25 modCount++; 17.12/9.25 return result; 17.12/9.25 } 17.12/9.25 17.12/9.25 /** 17.12/9.25 * @since 1.6 17.12/9.25 */ 17.12/9.25 public Iterator descendingIterator() { 17.12/9.25 return new DescendingIterator(); 17.12/9.25 } 17.12/9.25 17.12/9.25 /** Adapter to provide descending iterators via ListItr.previous */ 17.12/9.25 private class DescendingIterator implements Iterator { 17.12/9.25 final ListItr itr = new ListItr(size()); 17.12/9.25 public boolean hasNext() { 17.12/9.25 return itr.hasPrevious(); 17.12/9.25 } 17.12/9.25 public E next() { 17.12/9.25 return itr.previous(); 17.12/9.25 } 17.12/9.25 public void remove() { 17.12/9.25 itr.remove(); 17.12/9.25 } 17.12/9.25 } 17.12/9.25 17.12/9.25 /** 17.12/9.25 * Returns an array containing all of the elements in this list 17.12/9.25 * in proper sequence (from first to last element). 17.12/9.25 * 17.12/9.25 *

The returned array will be "safe" in that no references to it are 17.12/9.25 * maintained by this list. (In other words, this method must allocate 17.12/9.25 * a new array). The caller is thus free to modify the returned array. 17.12/9.25 * 17.12/9.25 *

This method acts as bridge between array-based and collection-based 17.12/9.25 * APIs. 17.12/9.25 * 17.12/9.25 * @return an array containing all of the elements in this list 17.12/9.25 * in proper sequence 17.12/9.25 */ 17.12/9.25 public Object[] toArray() { 17.12/9.25 Object[] result = new Object[size]; 17.12/9.25 int i = 0; 17.12/9.25 for (Entry e = header.next; e != header; e = e.next) 17.12/9.25 result[i++] = e.element; 17.12/9.25 return result; 17.12/9.25 } 17.12/9.25 17.12/9.25 private static final long serialVersionUID = 876323262645176354L; 17.12/9.25 } 17.12/9.25 17.12/9.25 17.12/9.25 /* 17.12/9.25 * Copyright 1997-2007 Sun Microsystems, Inc. All Rights Reserved. 17.12/9.25 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 17.12/9.25 * 17.12/9.25 * This code is free software; you can redistribute it and/or modify it 17.12/9.25 * under the terms of the GNU General Public License version 2 only, as 17.12/9.25 * published by the Free Software Foundation. Sun designates this 17.12/9.25 * particular file as subject to the "Classpath" exception as provided 17.12/9.25 * by Sun in the LICENSE file that accompanied this code. 17.12/9.25 * 17.12/9.25 * This code is distributed in the hope that it will be useful, but WITHOUT 17.12/9.25 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or 17.12/9.25 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License 17.12/9.25 * version 2 for more details (a copy is included in the LICENSE file that 17.12/9.25 * accompanied this code). 17.12/9.25 * 17.12/9.25 * You should have received a copy of the GNU General Public License version 17.12/9.25 * 2 along with this work; if not, write to the Free Software Foundation, 17.12/9.25 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. 17.12/9.25 * 17.12/9.25 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara, 17.12/9.25 * CA 95054 USA or visit www.sun.com if you need additional information or 17.12/9.25 * have any questions. 17.12/9.25 */ 17.12/9.25 17.12/9.25 package javaUtilEx; 17.12/9.25 17.12/9.25 /** 17.12/9.25 * An iterator for lists that allows the programmer 17.12/9.25 * to traverse the list in either direction, modify 17.12/9.25 * the list during iteration, and obtain the iterator's 17.12/9.25 * current position in the list. A {@code ListIterator} 17.12/9.25 * has no current element; its cursor position always 17.12/9.25 * lies between the element that would be returned by a call 17.12/9.25 * to {@code previous()} and the element that would be 17.12/9.25 * returned by a call to {@code next()}. 17.12/9.25 * An iterator for a list of length {@code n} has {@code n+1} possible 17.12/9.25 * cursor positions, as illustrated by the carets ({@code ^}) below: 17.12/9.25 *

17.12/9.25	 *                      Element(0)   Element(1)   Element(2)   ... Element(n-1)
17.12/9.25	 * cursor positions:  ^            ^            ^            ^                  ^
17.12/9.25	 * 
17.12/9.25 * Note that the {@link #remove} and {@link #set(Object)} methods are 17.12/9.25 * not defined in terms of the cursor position; they are defined to 17.12/9.25 * operate on the last element returned by a call to {@link #next} or 17.12/9.25 * {@link #previous()}. 17.12/9.25 * 17.12/9.25 *

This interface is a member of the 17.12/9.25 * 17.12/9.25 * Java Collections Framework. 17.12/9.25 * 17.12/9.25 * @author Josh Bloch 17.12/9.25 * @see Collection 17.12/9.25 * @see List 17.12/9.25 * @see Iterator 17.12/9.25 * @see Enumeration 17.12/9.25 * @see List#listIterator() 17.12/9.25 * @since 1.2 17.12/9.25 */ 17.12/9.25 public interface ListIterator extends Iterator { 17.12/9.25 // Query Operations 17.12/9.25 17.12/9.25 /** 17.12/9.25 * Returns {@code true} if this list iterator has more elements when 17.12/9.25 * traversing the list in the forward direction. (In other words, 17.12/9.25 * returns {@code true} if {@link #next} would return an element rather 17.12/9.25 * than throwing an exception.) 17.12/9.25 * 17.12/9.25 * @return {@code true} if the list iterator has more elements when 17.12/9.25 * traversing the list in the forward direction 17.12/9.25 */ 17.12/9.25 boolean hasNext(); 17.12/9.25 17.12/9.25 /** 17.12/9.25 * Returns the next element in the list and advances the cursor position. 17.12/9.25 * This method may be called repeatedly to iterate through the list, 17.12/9.25 * or intermixed with calls to {@link #previous} to go back and forth. 17.12/9.25 * (Note that alternating calls to {@code next} and {@code previous} 17.12/9.25 * will return the same element repeatedly.) 17.12/9.25 * 17.12/9.25 * @return the next element in the list 17.12/9.25 * @throws NoSuchElementException if the iteration has no next element 17.12/9.25 */ 17.12/9.25 E next(); 17.12/9.25 17.12/9.25 /** 17.12/9.25 * Returns {@code true} if this list iterator has more elements when 17.12/9.25 * traversing the list in the reverse direction. (In other words, 17.12/9.25 * returns {@code true} if {@link #previous} would return an element 17.12/9.25 * rather than throwing an exception.) 17.12/9.25 * 17.12/9.25 * @return {@code true} if the list iterator has more elements when 17.12/9.25 * traversing the list in the reverse direction 17.12/9.25 */ 17.12/9.25 boolean hasPrevious(); 17.12/9.25 17.12/9.25 /** 17.12/9.25 * Returns the previous element in the list and moves the cursor 17.12/9.25 * position backwards. This method may be called repeatedly to 17.12/9.25 * iterate through the list backwards, or intermixed with calls to 17.12/9.25 * {@link #next} to go back and forth. (Note that alternating calls 17.12/9.25 * to {@code next} and {@code previous} will return the same 17.12/9.25 * element repeatedly.) 17.12/9.25 * 17.12/9.25 * @return the previous element in the list 17.12/9.25 * @throws NoSuchElementException if the iteration has no previous 17.12/9.25 * element 17.12/9.25 */ 17.12/9.25 E previous(); 17.12/9.25 17.12/9.25 /** 17.12/9.25 * Returns the index of the element that would be returned by a 17.12/9.25 * subsequent call to {@link #next}. (Returns list size if the list 17.12/9.25 * iterator is at the end of the list.) 17.12/9.25 * 17.12/9.25 * @return the index of the element that would be returned by a 17.12/9.25 * subsequent call to {@code next}, or list size if the list 17.12/9.25 * iterator is at the end of the list 17.12/9.25 */ 17.12/9.25 int nextIndex(); 17.12/9.25 17.12/9.25 /** 17.12/9.25 * Returns the index of the element that would be returned by a 17.12/9.25 * subsequent call to {@link #previous}. (Returns -1 if the list 17.12/9.25 * iterator is at the beginning of the list.) 17.12/9.25 * 17.12/9.25 * @return the index of the element that would be returned by a 17.12/9.25 * subsequent call to {@code previous}, or -1 if the list 17.12/9.25 * iterator is at the beginning of the list 17.12/9.25 */ 17.12/9.25 int previousIndex(); 17.12/9.25 17.12/9.25 17.12/9.25 // Modification Operations 17.12/9.25 17.12/9.25 /** 17.12/9.25 * Removes from the list the last element that was returned by {@link 17.12/9.25 * #next} or {@link #previous} (optional operation). This call can 17.12/9.25 * only be made once per call to {@code next} or {@code previous}. 17.12/9.25 * It can be made only if {@link #add} has not been 17.12/9.25 * called after the last call to {@code next} or {@code previous}. 17.12/9.25 * 17.12/9.25 * @throws UnsupportedOperationException if the {@code remove} 17.12/9.25 * operation is not supported by this list iterator 17.12/9.25 * @throws IllegalStateException if neither {@code next} nor 17.12/9.25 * {@code previous} have been called, or {@code remove} or 17.12/9.25 * {@code add} have been called after the last call to 17.12/9.25 * {@code next} or {@code previous} 17.12/9.25 */ 17.12/9.25 void remove(); 17.12/9.25 17.12/9.25 /** 17.12/9.25 * Replaces the last element returned by {@link #next} or 17.12/9.25 * {@link #previous} with the specified element (optional operation). 17.12/9.25 * This call can be made only if neither {@link #remove} nor {@link 17.12/9.25 * #add} have been called after the last call to {@code next} or 17.12/9.25 * {@code previous}. 17.12/9.25 * 17.12/9.25 * @param e the element with which to replace the last element returned by 17.12/9.25 * {@code next} or {@code previous} 17.12/9.25 * @throws UnsupportedOperationException if the {@code set} operation 17.12/9.25 * is not supported by this list iterator 17.12/9.25 * @throws ClassCastException if the class of the specified element 17.12/9.25 * prevents it from being added to this list 17.12/9.25 * @throws IllegalArgumentException if some aspect of the specified 17.12/9.25 * element prevents it from being added to this list 17.12/9.25 * @throws IllegalStateException if neither {@code next} nor 17.12/9.25 * {@code previous} have been called, or {@code remove} or 17.12/9.25 * {@code add} have been called after the last call to 17.12/9.25 * {@code next} or {@code previous} 17.12/9.25 */ 17.12/9.25 void set(E e); 17.12/9.25 17.12/9.25 /** 17.12/9.25 * Inserts the specified element into the list (optional operation). 17.12/9.25 * The element is inserted immediately before the next element that 17.12/9.25 * would be returned by {@link #next}, if any, and after the next 17.12/9.25 * element that would be returned by {@link #previous}, if any. (If the 17.12/9.25 * list contains no elements, the new element becomes the sole element 17.12/9.25 * on the list.) The new element is inserted before the implicit 17.12/9.25 * cursor: a subsequent call to {@code next} would be unaffected, and a 17.12/9.25 * subsequent call to {@code previous} would return the new element. 17.12/9.25 * (This call increases by one the value that would be returned by a 17.12/9.25 * call to {@code nextIndex} or {@code previousIndex}.) 17.12/9.25 * 17.12/9.25 * @param e the element to insert 17.12/9.25 * @throws UnsupportedOperationException if the {@code add} method is 17.12/9.25 * not supported by this list iterator 17.12/9.25 * @throws ClassCastException if the class of the specified element 17.12/9.25 * prevents it from being added to this list 17.12/9.25 * @throws IllegalArgumentException if some aspect of this element 17.12/9.25 * prevents it from being added to this list 17.12/9.25 */ 17.12/9.25 void add(E e); 17.12/9.25 } 17.12/9.25 17.12/9.25 17.12/9.25 /* 17.12/9.25 * Copyright 1997-2007 Sun Microsystems, Inc. All Rights Reserved. 17.12/9.25 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 17.12/9.25 * 17.12/9.25 * This code is free software; you can redistribute it and/or modify it 17.12/9.25 * under the terms of the GNU General Public License version 2 only, as 17.12/9.25 * published by the Free Software Foundation. Sun designates this 17.12/9.25 * particular file as subject to the "Classpath" exception as provided 17.12/9.25 * by Sun in the LICENSE file that accompanied this code. 17.12/9.25 * 17.12/9.25 * This code is distributed in the hope that it will be useful, but WITHOUT 17.12/9.25 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or 17.12/9.25 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License 17.12/9.25 * version 2 for more details (a copy is included in the LICENSE file that 17.12/9.25 * accompanied this code). 17.12/9.25 * 17.12/9.25 * You should have received a copy of the GNU General Public License version 17.12/9.25 * 2 along with this work; if not, write to the Free Software Foundation, 17.12/9.25 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. 17.12/9.25 * 17.12/9.25 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara, 17.12/9.25 * CA 95054 USA or visit www.sun.com if you need additional information or 17.12/9.25 * have any questions. 17.12/9.25 */ 17.12/9.25 17.12/9.25 package javaUtilEx; 17.12/9.25 17.12/9.25 /** 17.12/9.25 * An ordered collection (also known as a sequence). The user of this 17.12/9.25 * interface has precise control over where in the list each element is 17.12/9.25 * inserted. The user can access elements by their integer index (position in 17.12/9.25 * the list), and search for elements in the list.

17.12/9.25 * 17.12/9.25 * Unlike sets, lists typically allow duplicate elements. More formally, 17.12/9.25 * lists typically allow pairs of elements e1 and e2 17.12/9.25 * such that e1.equals(e2), and they typically allow multiple 17.12/9.25 * null elements if they allow null elements at all. It is not inconceivable 17.12/9.25 * that someone might wish to implement a list that prohibits duplicates, by 17.12/9.25 * throwing runtime exceptions when the user attempts to insert them, but we 17.12/9.25 * expect this usage to be rare.

17.12/9.25 * 17.12/9.25 * The List interface places additional stipulations, beyond those 17.12/9.25 * specified in the Collection interface, on the contracts of the 17.12/9.25 * iterator, add, remove, equals, and 17.12/9.25 * hashCode methods. Declarations for other inherited methods are 17.12/9.25 * also included here for convenience.

17.12/9.25 * 17.12/9.25 * The List interface provides four methods for positional (indexed) 17.12/9.25 * access to list elements. Lists (like Java arrays) are zero based. Note 17.12/9.25 * that these operations may execute in time proportional to the index value 17.12/9.25 * for some implementations (the LinkedList class, for 17.12/9.25 * example). Thus, iterating over the elements in a list is typically 17.12/9.25 * preferable to indexing through it if the caller does not know the 17.12/9.25 * implementation.

17.12/9.25 * 17.12/9.25 * The List interface provides a special iterator, called a 17.12/9.25 * ListIterator, that allows element insertion and replacement, and 17.12/9.25 * bidirectional access in addition to the normal operations that the 17.12/9.25 * Iterator interface provides. A method is provided to obtain a 17.12/9.25 * list iterator that starts at a specified position in the list.

17.12/9.25 * 17.12/9.25 * The List interface provides two methods to search for a specified 17.12/9.25 * object. From a performance standpoint, these methods should be used with 17.12/9.25 * caution. In many implementations they will perform costly linear 17.12/9.25 * searches.

17.12/9.25 * 17.12/9.25 * The List interface provides two methods to efficiently insert and 17.12/9.25 * remove multiple elements at an arbitrary point in the list.

17.12/9.25 * 17.12/9.25 * Note: While it is permissible for lists to contain themselves as elements, 17.12/9.25 * extreme caution is advised: the equals and hashCode 17.12/9.25 * methods are no longer well defined on such a list. 17.12/9.25 * 17.12/9.25 *

Some list implementations have restrictions on the elements that 17.12/9.25 * they may contain. For example, some implementations prohibit null elements, 17.12/9.25 * and some have restrictions on the types of their elements. Attempting to 17.12/9.25 * add an ineligible element throws an unchecked exception, typically 17.12/9.25 * NullPointerException or ClassCastException. Attempting 17.12/9.25 * to query the presence of an ineligible element may throw an exception, 17.12/9.25 * or it may simply return false; some implementations will exhibit the former 17.12/9.25 * behavior and some will exhibit the latter. More generally, attempting an 17.12/9.25 * operation on an ineligible element whose completion would not result in 17.12/9.25 * the insertion of an ineligible element into the list may throw an 17.12/9.25 * exception or it may succeed, at the option of the implementation. 17.12/9.25 * Such exceptions are marked as "optional" in the specification for this 17.12/9.25 * interface. 17.12/9.25 * 17.12/9.25 *

This interface is a member of the 17.12/9.25 * 17.12/9.25 * Java Collections Framework. 17.12/9.25 * 17.12/9.25 * @author Josh Bloch 17.12/9.25 * @author Neal Gafter 17.12/9.25 * @see Collection 17.12/9.25 * @see Set 17.12/9.25 * @see ArrayList 17.12/9.25 * @see LinkedList 17.12/9.25 * @see Vector 17.12/9.25 * @see Arrays#asList(Object[]) 17.12/9.25 * @see Collections#nCopies(int, Object) 17.12/9.25 * @see Collections#EMPTY_LIST 17.12/9.25 * @see AbstractList 17.12/9.25 * @see AbstractSequentialList 17.12/9.25 * @since 1.2 17.12/9.25 */ 17.12/9.25 17.12/9.25 public interface List extends Collection { 17.12/9.25 // Query Operations 17.12/9.25 17.12/9.25 /** 17.12/9.25 * Returns the number of elements in this list. If this list contains 17.12/9.25 * more than Integer.MAX_VALUE elements, returns 17.12/9.25 * Integer.MAX_VALUE. 17.12/9.25 * 17.12/9.25 * @return the number of elements in this list 17.12/9.25 */ 17.12/9.25 int size(); 17.12/9.25 17.12/9.25 /** 17.12/9.25 * Returns true if this list contains no elements. 17.12/9.25 * 17.12/9.25 * @return true if this list contains no elements 17.12/9.25 */ 17.12/9.25 boolean isEmpty(); 17.12/9.25 17.12/9.25 /** 17.12/9.25 * Returns true if this list contains the specified element. 17.12/9.25 * More formally, returns true if and only if this list contains 17.12/9.25 * at least one element e such that 17.12/9.25 * (o==null ? e==null : o.equals(e)). 17.12/9.25 * 17.12/9.25 * @param o element whose presence in this list is to be tested 17.12/9.25 * @return true if this list contains the specified element 17.12/9.25 * @throws ClassCastException if the type of the specified element 17.12/9.25 * is incompatible with this list (optional) 17.12/9.25 * @throws NullPointerException if the specified element is null and this 17.12/9.25 * list does not permit null elements (optional) 17.12/9.25 */ 17.12/9.25 boolean contains(Object o); 17.12/9.25 17.12/9.25 /** 17.12/9.25 * Returns an iterator over the elements in this list in proper sequence. 17.12/9.25 * 17.12/9.25 * @return an iterator over the elements in this list in proper sequence 17.12/9.25 */ 17.12/9.25 Iterator iterator(); 17.12/9.25 17.12/9.25 // Modification Operations 17.12/9.25 17.12/9.25 /** 17.12/9.25 * Appends the specified element to the end of this list (optional 17.12/9.25 * operation). 17.12/9.25 * 17.12/9.25 *

Lists that support this operation may place limitations on what 17.12/9.25 * elements may be added to this list. In particular, some 17.12/9.25 * lists will refuse to add null elements, and others will impose 17.12/9.25 * restrictions on the type of elements that may be added. List 17.12/9.25 * classes should clearly specify in their documentation any restrictions 17.12/9.25 * on what elements may be added. 17.12/9.25 * 17.12/9.25 * @param e element to be appended to this list 17.12/9.25 * @return true (as specified by {@link Collection#add}) 17.12/9.25 * @throws UnsupportedOperationException if the add operation 17.12/9.25 * is not supported by this list 17.12/9.25 * @throws ClassCastException if the class of the specified element 17.12/9.25 * prevents it from being added to this list 17.12/9.25 * @throws NullPointerException if the specified element is null and this 17.12/9.25 * list does not permit null elements 17.12/9.25 * @throws IllegalArgumentException if some property of this element 17.12/9.25 * prevents it from being added to this list 17.12/9.25 */ 17.12/9.25 boolean add(E e); 17.12/9.25 17.12/9.25 /** 17.12/9.25 * Removes the first occurrence of the specified element from this list, 17.12/9.25 * if it is present (optional operation). If this list does not contain 17.12/9.25 * the element, it is unchanged. More formally, removes the element with 17.12/9.25 * the lowest index i such that 17.12/9.25 * (o==null ? get(i)==null : o.equals(get(i))) 17.12/9.25 * (if such an element exists). Returns true if this list 17.12/9.25 * contained the specified element (or equivalently, if this list changed 17.12/9.25 * as a result of the call). 17.12/9.25 * 17.12/9.25 * @param o element to be removed from this list, if present 17.12/9.25 * @return true if this list contained the specified element 17.12/9.25 * @throws ClassCastException if the type of the specified element 17.12/9.25 * is incompatible with this list (optional) 17.12/9.25 * @throws NullPointerException if the specified element is null and this 17.12/9.25 * list does not permit null elements (optional) 17.12/9.25 * @throws UnsupportedOperationException if the remove operation 17.12/9.25 * is not supported by this list 17.12/9.25 */ 17.12/9.25 boolean remove(Object o); 17.12/9.25 17.12/9.25 17.12/9.25 // Bulk Modification Operations 17.12/9.25 17.12/9.25 /** 17.12/9.25 * Returns true if this list contains all of the elements of the 17.12/9.25 * specified collection. 17.12/9.25 * 17.12/9.25 * @param c collection to be checked for containment in this list 17.12/9.25 * @return true if this list contains all of the elements of the 17.12/9.25 * specified collection 17.12/9.25 * @throws ClassCastException if the types of one or more elements 17.12/9.25 * in the specified collection are incompatible with this 17.12/9.25 * list (optional) 17.12/9.25 * @throws NullPointerException if the specified collection contains one 17.12/9.25 * or more null elements and this list does not permit null 17.12/9.25 * elements (optional), or if the specified collection is null 17.12/9.25 * @see #contains(Object) 17.12/9.25 */ 17.12/9.25 boolean containsAll(Collection c); 17.12/9.25 17.12/9.25 /** 17.12/9.25 * Appends all of the elements in the specified collection to the end of 17.12/9.25 * this list, in the order that they are returned by the specified 17.12/9.25 * collection's iterator (optional operation). The behavior of this 17.12/9.25 * operation is undefined if the specified collection is modified while 17.12/9.25 * the operation is in progress. (Note that this will occur if the 17.12/9.25 * specified collection is this list, and it's nonempty.) 17.12/9.25 * 17.12/9.25 * @param c collection containing elements to be added to this list 17.12/9.25 * @return true if this list changed as a result of the call 17.12/9.25 * @throws UnsupportedOperationException if the addAll operation 17.12/9.25 * is not supported by this list 17.12/9.25 * @throws ClassCastException if the class of an element of the specified 17.12/9.25 * collection prevents it from being added to this list 17.12/9.25 * @throws NullPointerException if the specified collection contains one 17.12/9.25 * or more null elements and this list does not permit null 17.12/9.25 * elements, or if the specified collection is null 17.12/9.25 * @throws IllegalArgumentException if some property of an element of the 17.12/9.25 * specified collection prevents it from being added to this list 17.12/9.25 * @see #add(Object) 17.12/9.25 */ 17.12/9.25 boolean addAll(Collection c); 17.12/9.25 17.12/9.25 /** 17.12/9.25 * Inserts all of the elements in the specified collection into this 17.12/9.25 * list at the specified position (optional operation). Shifts the 17.12/9.25 * element currently at that position (if any) and any subsequent 17.12/9.25 * elements to the right (increases their indices). The new elements 17.12/9.25 * will appear in this list in the order that they are returned by the 17.12/9.25 * specified collection's iterator. The behavior of this operation is 17.12/9.25 * undefined if the specified collection is modified while the 17.12/9.25 * operation is in progress. (Note that this will occur if the specified 17.12/9.25 * collection is this list, and it's nonempty.) 17.12/9.25 * 17.12/9.25 * @param index index at which to insert the first element from the 17.12/9.25 * specified collection 17.12/9.25 * @param c collection containing elements to be added to this list 17.12/9.25 * @return true if this list changed as a result of the call 17.12/9.25 * @throws UnsupportedOperationException if the addAll operation 17.12/9.25 * is not supported by this list 17.12/9.25 * @throws ClassCastException if the class of an element of the specified 17.12/9.25 * collection prevents it from being added to this list 17.12/9.25 * @throws NullPointerException if the specified collection contains one 17.12/9.25 * or more null elements and this list does not permit null 17.12/9.25 * elements, or if the specified collection is null 17.12/9.25 * @throws IllegalArgumentException if some property of an element of the 17.12/9.25 * specified collection prevents it from being added to this list 17.12/9.25 * @throws IndexOutOfBoundsException if the index is out of range 17.12/9.25 * (index < 0 || index > size()) 17.12/9.25 */ 17.12/9.25 boolean addAll(int index, Collection c); 17.12/9.25 17.12/9.25 /** 17.12/9.25 * Removes from this list all of its elements that are contained in the 17.12/9.25 * specified collection (optional operation). 17.12/9.25 * 17.12/9.25 * @param c collection containing elements to be removed from this list 17.12/9.25 * @return true if this list changed as a result of the call 17.12/9.25 * @throws UnsupportedOperationException if the removeAll operation 17.12/9.25 * is not supported by this list 17.12/9.25 * @throws ClassCastException if the class of an element of this list 17.12/9.25 * is incompatible with the specified collection (optional) 17.12/9.25 * @throws NullPointerException if this list contains a null element and the 17.12/9.25 * specified collection does not permit null elements (optional), 17.12/9.25 * or if the specified collection is null 17.12/9.25 * @see #remove(Object) 17.12/9.25 * @see #contains(Object) 17.12/9.25 */ 17.12/9.25 boolean removeAll(Collection c); 17.12/9.25 17.12/9.25 /** 17.12/9.25 * Retains only the elements in this list that are contained in the 17.12/9.25 * specified collection (optional operation). In other words, removes 17.12/9.25 * from this list all of its elements that are not contained in the 17.12/9.25 * specified collection. 17.12/9.25 * 17.12/9.25 * @param c collection containing elements to be retained in this list 17.12/9.25 * @return true if this list changed as a result of the call 17.12/9.25 * @throws UnsupportedOperationException if the retainAll operation 17.12/9.25 * is not supported by this list 17.12/9.25 * @throws ClassCastException if the class of an element of this list 17.12/9.25 * is incompatible with the specified collection (optional) 17.12/9.25 * @throws NullPointerException if this list contains a null element and the 17.12/9.25 * specified collection does not permit null elements (optional), 17.12/9.25 * or if the specified collection is null 17.12/9.25 * @see #remove(Object) 17.12/9.25 * @see #contains(Object) 17.12/9.25 */ 17.12/9.25 boolean retainAll(Collection c); 17.12/9.25 17.12/9.25 /** 17.12/9.25 * Removes all of the elements from this list (optional operation). 17.12/9.25 * The list will be empty after this call returns. 17.12/9.25 * 17.12/9.25 * @throws UnsupportedOperationException if the clear operation 17.12/9.25 * is not supported by this list 17.12/9.25 */ 17.12/9.25 void clear(); 17.12/9.25 17.12/9.25 17.12/9.25 // Comparison and hashing 17.12/9.25 17.12/9.25 /** 17.12/9.25 * Compares the specified object with this list for equality. Returns 17.12/9.25 * true if and only if the specified object is also a list, both 17.12/9.25 * lists have the same size, and all corresponding pairs of elements in 17.12/9.25 * the two lists are equal. (Two elements e1 and 17.12/9.25 * e2 are equal if (e1==null ? e2==null : 17.12/9.25 * e1.equals(e2)).) In other words, two lists are defined to be 17.12/9.25 * equal if they contain the same elements in the same order. This 17.12/9.25 * definition ensures that the equals method works properly across 17.12/9.25 * different implementations of the List interface. 17.12/9.25 * 17.12/9.25 * @param o the object to be compared for equality with this list 17.12/9.25 * @return true if the specified object is equal to this list 17.12/9.25 */ 17.12/9.25 boolean equals(Object o); 17.12/9.25 17.12/9.25 /** 17.12/9.25 * Returns the hash code value for this list. The hash code of a list 17.12/9.25 * is defined to be the result of the following calculation: 17.12/9.25 *

17.12/9.25	     *  int hashCode = 1;
17.12/9.25	     *  for (E e : list)
17.12/9.25	     *      hashCode = 31*hashCode + (e==null ? 0 : e.hashCode());
17.12/9.25	     * 
17.12/9.25 * This ensures that list1.equals(list2) implies that 17.12/9.25 * list1.hashCode()==list2.hashCode() for any two lists, 17.12/9.25 * list1 and list2, as required by the general 17.12/9.25 * contract of {@link Object#hashCode}. 17.12/9.25 * 17.12/9.25 * @return the hash code value for this list 17.12/9.25 * @see Object#equals(Object) 17.12/9.25 * @see #equals(Object) 17.12/9.25 */ 17.12/9.25 int hashCode(); 17.12/9.25 17.12/9.25 17.12/9.25 // Positional Access Operations 17.12/9.25 17.12/9.25 /** 17.12/9.25 * Returns the element at the specified position in this list. 17.12/9.25 * 17.12/9.25 * @param index index of the element to return 17.12/9.25 * @return the element at the specified position in this list 17.12/9.25 * @throws IndexOutOfBoundsException if the index is out of range 17.12/9.25 * (index < 0 || index >= size()) 17.12/9.25 */ 17.12/9.25 E get(int index); 17.12/9.25 17.12/9.25 /** 17.12/9.25 * Replaces the element at the specified position in this list with the 17.12/9.25 * specified element (optional operation). 17.12/9.25 * 17.12/9.25 * @param index index of the element to replace 17.12/9.25 * @param element element to be stored at the specified position 17.12/9.25 * @return the element previously at the specified position 17.12/9.25 * @throws UnsupportedOperationException if the set operation 17.12/9.25 * is not supported by this list 17.12/9.25 * @throws ClassCastException if the class of the specified element 17.12/9.25 * prevents it from being added to this list 17.12/9.25 * @throws NullPointerException if the specified element is null and 17.12/9.25 * this list does not permit null elements 17.12/9.25 * @throws IllegalArgumentException if some property of the specified 17.12/9.25 * element prevents it from being added to this list 17.12/9.25 * @throws IndexOutOfBoundsException if the index is out of range 17.12/9.25 * (index < 0 || index >= size()) 17.12/9.25 */ 17.12/9.25 E set(int index, E element); 17.12/9.25 17.12/9.25 /** 17.12/9.25 * Inserts the specified element at the specified position in this list 17.12/9.25 * (optional operation). Shifts the element currently at that position 17.12/9.25 * (if any) and any subsequent elements to the right (adds one to their 17.12/9.25 * indices). 17.12/9.25 * 17.12/9.25 * @param index index at which the specified element is to be inserted 17.12/9.25 * @param element element to be inserted 17.12/9.25 * @throws UnsupportedOperationException if the add operation 17.12/9.25 * is not supported by this list 17.12/9.25 * @throws ClassCastException if the class of the specified element 17.12/9.25 * prevents it from being added to this list 17.12/9.25 * @throws NullPointerException if the specified element is null and 17.12/9.25 * this list does not permit null elements 17.12/9.25 * @throws IllegalArgumentException if some property of the specified 17.12/9.25 * element prevents it from being added to this list 17.12/9.25 * @throws IndexOutOfBoundsException if the index is out of range 17.12/9.25 * (index < 0 || index > size()) 17.12/9.25 */ 17.12/9.25 void add(int index, E element); 17.12/9.25 17.12/9.25 /** 17.12/9.25 * Removes the element at the specified position in this list (optional 17.12/9.25 * operation). Shifts any subsequent elements to the left (subtracts one 17.12/9.25 * from their indices). Returns the element that was removed from the 17.12/9.25 * list. 17.12/9.25 * 17.12/9.25 * @param index the index of the element to be removed 17.12/9.25 * @return the element previously at the specified position 17.12/9.25 * @throws UnsupportedOperationException if the remove operation 17.12/9.25 * is not supported by this list 17.12/9.25 * @throws IndexOutOfBoundsException if the index is out of range 17.12/9.25 * (index < 0 || index >= size()) 17.12/9.25 */ 17.12/9.25 E remove(int index); 17.12/9.25 17.12/9.25 17.12/9.25 // Search Operations 17.12/9.25 17.12/9.25 /** 17.12/9.25 * Returns the index of the first occurrence of the specified element 17.12/9.25 * in this list, or -1 if this list does not contain the element. 17.12/9.25 * More formally, returns the lowest index i such that 17.12/9.25 * (o==null ? get(i)==null : o.equals(get(i))), 17.12/9.25 * or -1 if there is no such index. 17.12/9.25 * 17.12/9.25 * @param o element to search for 17.12/9.25 * @return the index of the first occurrence of the specified element in 17.12/9.25 * this list, or -1 if this list does not contain the element 17.12/9.26 * @throws ClassCastException if the type of the specified element 17.12/9.26 * is incompatible with this list (optional) 17.12/9.26 * @throws NullPointerException if the specified element is null and this 17.12/9.26 * list does not permit null elements (optional) 17.12/9.26 */ 17.12/9.26 int indexOf(Object o); 17.12/9.26 17.12/9.26 /** 17.12/9.26 * Returns the index of the last occurrence of the specified element 17.12/9.26 * in this list, or -1 if this list does not contain the element. 17.12/9.26 * More formally, returns the highest index i such that 17.12/9.26 * (o==null ? get(i)==null : o.equals(get(i))), 17.12/9.26 * or -1 if there is no such index. 17.12/9.26 * 17.12/9.26 * @param o element to search for 17.12/9.26 * @return the index of the last occurrence of the specified element in 17.12/9.26 * this list, or -1 if this list does not contain the element 17.12/9.26 * @throws ClassCastException if the type of the specified element 17.12/9.26 * is incompatible with this list (optional) 17.12/9.26 * @throws NullPointerException if the specified element is null and this 17.12/9.26 * list does not permit null elements (optional) 17.12/9.26 */ 17.12/9.26 int lastIndexOf(Object o); 17.12/9.26 17.12/9.26 17.12/9.26 // List Iterators 17.12/9.26 17.12/9.26 /** 17.12/9.26 * Returns a list iterator over the elements in this list (in proper 17.12/9.26 * sequence). 17.12/9.26 * 17.12/9.26 * @return a list iterator over the elements in this list (in proper 17.12/9.26 * sequence) 17.12/9.26 */ 17.12/9.26 ListIterator listIterator(); 17.12/9.26 17.12/9.26 /** 17.12/9.26 * Returns a list iterator over the elements in this list (in proper 17.12/9.26 * sequence), starting at the specified position in the list. 17.12/9.26 * The specified index indicates the first element that would be 17.12/9.26 * returned by an initial call to {@link ListIterator#next next}. 17.12/9.26 * An initial call to {@link ListIterator#previous previous} would 17.12/9.26 * return the element with the specified index minus one. 17.12/9.26 * 17.12/9.26 * @param index index of the first element to be returned from the 17.12/9.26 * list iterator (by a call to {@link ListIterator#next next}) 17.12/9.26 * @return a list iterator over the elements in this list (in proper 17.12/9.26 * sequence), starting at the specified position in the list 17.12/9.26 * @throws IndexOutOfBoundsException if the index is out of range 17.12/9.26 * ({@code index < 0 || index > size()}) 17.12/9.26 */ 17.12/9.26 ListIterator listIterator(int index); 17.12/9.26 17.12/9.26 // View 17.12/9.26 17.12/9.26 /** 17.12/9.26 * Returns a view of the portion of this list between the specified 17.12/9.26 * fromIndex, inclusive, and toIndex, exclusive. (If 17.12/9.26 * fromIndex and toIndex are equal, the returned list is 17.12/9.26 * empty.) The returned list is backed by this list, so non-structural 17.12/9.26 * changes in the returned list are reflected in this list, and vice-versa. 17.12/9.26 * The returned list supports all of the optional list operations supported 17.12/9.26 * by this list.

17.12/9.26 * 17.12/9.26 * This method eliminates the need for explicit range operations (of 17.12/9.26 * the sort that commonly exist for arrays). Any operation that expects 17.12/9.26 * a list can be used as a range operation by passing a subList view 17.12/9.26 * instead of a whole list. For example, the following idiom 17.12/9.26 * removes a range of elements from a list: 17.12/9.26 *

17.12/9.26	     *      list.subList(from, to).clear();
17.12/9.26	     * 
17.12/9.26 * Similar idioms may be constructed for indexOf and 17.12/9.26 * lastIndexOf, and all of the algorithms in the 17.12/9.26 * Collections class can be applied to a subList.

17.12/9.26 * 17.12/9.26 * The semantics of the list returned by this method become undefined if 17.12/9.26 * the backing list (i.e., this list) is structurally modified in 17.12/9.26 * any way other than via the returned list. (Structural modifications are 17.12/9.26 * those that change the size of this list, or otherwise perturb it in such 17.12/9.26 * a fashion that iterations in progress may yield incorrect results.) 17.12/9.26 * 17.12/9.26 * @param fromIndex low endpoint (inclusive) of the subList 17.12/9.26 * @param toIndex high endpoint (exclusive) of the subList 17.12/9.26 * @return a view of the specified range within this list 17.12/9.26 * @throws IndexOutOfBoundsException for an illegal endpoint index value 17.12/9.26 * (fromIndex < 0 || toIndex > size || 17.12/9.26 * fromIndex > toIndex) 17.12/9.26 */ 17.12/9.26 List subList(int fromIndex, int toIndex); 17.12/9.26 } 17.12/9.26 17.12/9.26 17.12/9.26 /* 17.12/9.26 * Copyright 1994-1998 Sun Microsystems, Inc. All Rights Reserved. 17.12/9.26 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 17.12/9.26 * 17.12/9.26 * This code is free software; you can redistribute it and/or modify it 17.12/9.26 * under the terms of the GNU General Public License version 2 only, as 17.12/9.26 * published by the Free Software Foundation. Sun designates this 17.12/9.26 * particular file as subject to the "Classpath" exception as provided 17.12/9.26 * by Sun in the LICENSE file that accompanied this code. 17.12/9.26 * 17.12/9.26 * This code is distributed in the hope that it will be useful, but WITHOUT 17.12/9.26 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or 17.12/9.26 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License 17.12/9.26 * version 2 for more details (a copy is included in the LICENSE file that 17.12/9.26 * accompanied this code). 17.12/9.26 * 17.12/9.26 * You should have received a copy of the GNU General Public License version 17.12/9.26 * 2 along with this work; if not, write to the Free Software Foundation, 17.12/9.26 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. 17.12/9.26 * 17.12/9.26 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara, 17.12/9.26 * CA 95054 USA or visit www.sun.com if you need additional information or 17.12/9.26 * have any questions. 17.12/9.26 */ 17.12/9.26 17.12/9.26 package javaUtilEx; 17.12/9.26 17.12/9.26 /** 17.12/9.26 * Thrown by the nextElement method of an 17.12/9.26 * Enumeration to indicate that there are no more 17.12/9.26 * elements in the enumeration. 17.12/9.26 * 17.12/9.26 * @author unascribed 17.12/9.26 * @see java.util.Enumeration 17.12/9.26 * @see java.util.Enumeration#nextElement() 17.12/9.26 * @since JDK1.0 17.12/9.26 */ 17.12/9.26 public 17.12/9.26 class NoSuchElementException extends RuntimeException { 17.12/9.26 /** 17.12/9.26 * Constructs a NoSuchElementException with null 17.12/9.26 * as its error message string. 17.12/9.26 */ 17.12/9.26 public NoSuchElementException() { 17.12/9.26 super(); 17.12/9.26 } 17.12/9.26 17.12/9.26 /** 17.12/9.26 * Constructs a NoSuchElementException, saving a reference 17.12/9.26 * to the error message string s for later retrieval by the 17.12/9.26 * getMessage method. 17.12/9.26 * 17.12/9.26 * @param s the detail message. 17.12/9.26 */ 17.12/9.26 public NoSuchElementException(String s) { 17.12/9.26 super(s); 17.12/9.26 } 17.12/9.26 } 17.12/9.26 17.12/9.26 17.12/9.26 /* 17.12/9.26 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 17.12/9.26 * 17.12/9.26 * This code is free software; you can redistribute it and/or modify it 17.12/9.26 * under the terms of the GNU General Public License version 2 only, as 17.12/9.26 * published by the Free Software Foundation. Sun designates this 17.12/9.26 * particular file as subject to the "Classpath" exception as provided 17.12/9.26 * by Sun in the LICENSE file that accompanied this code. 17.12/9.26 * 17.12/9.26 * This code is distributed in the hope that it will be useful, but WITHOUT 17.12/9.26 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or 17.12/9.26 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License 17.12/9.26 * version 2 for more details (a copy is included in the LICENSE file that 17.12/9.26 * accompanied this code). 17.12/9.26 * 17.12/9.26 * You should have received a copy of the GNU General Public License version 17.12/9.26 * 2 along with this work; if not, write to the Free Software Foundation, 17.12/9.26 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. 17.12/9.26 * 17.12/9.26 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara, 17.12/9.26 * CA 95054 USA or visit www.sun.com if you need additional information or 17.12/9.26 * have any questions. 17.12/9.26 */ 17.12/9.26 17.12/9.26 /* 17.12/9.26 * This file is available under and governed by the GNU General Public 17.12/9.26 * License version 2 only, as published by the Free Software Foundation. 17.12/9.26 * However, the following notice accompanied the original version of this 17.12/9.26 * file: 17.12/9.26 * 17.12/9.26 * Written by Doug Lea with assistance from members of JCP JSR-166 17.12/9.26 * Expert Group and released to the public domain, as explained at 17.12/9.26 * http://creativecommons.org/licenses/publicdomain 17.12/9.26 */ 17.12/9.26 17.12/9.26 package javaUtilEx; 17.12/9.26 17.12/9.26 /** 17.12/9.26 * A collection designed for holding elements prior to processing. 17.12/9.26 * Besides basic {@link java.util.Collection Collection} operations, 17.12/9.26 * queues provide additional insertion, extraction, and inspection 17.12/9.26 * operations. Each of these methods exists in two forms: one throws 17.12/9.26 * an exception if the operation fails, the other returns a special 17.12/9.26 * value (either null or false, depending on the 17.12/9.26 * operation). The latter form of the insert operation is designed 17.12/9.26 * specifically for use with capacity-restricted Queue 17.12/9.26 * implementations; in most implementations, insert operations cannot 17.12/9.26 * fail. 17.12/9.26 * 17.12/9.26 *

17.12/9.26 * 17.12/9.26 * 17.12/9.26 * 17.12/9.26 * 17.12/9.26 * 17.12/9.26 * 17.12/9.26 * 17.12/9.26 * 17.12/9.26 * 17.12/9.26 * 17.12/9.26 * 17.12/9.26 * 17.12/9.26 * 17.12/9.26 * 17.12/9.26 * 17.12/9.26 * 17.12/9.26 * 17.12/9.26 * 17.12/9.26 * 17.12/9.26 * 17.12/9.26 * 17.12/9.26 *
Throws exceptionReturns special value
Insert{@link #add add(e)}{@link #offer offer(e)}
Remove{@link #remove remove()}{@link #poll poll()}
Examine{@link #element element()}{@link #peek peek()}
17.12/9.26 * 17.12/9.26 *

Queues typically, but do not necessarily, order elements in a 17.12/9.26 * FIFO (first-in-first-out) manner. Among the exceptions are 17.12/9.26 * priority queues, which order elements according to a supplied 17.12/9.26 * comparator, or the elements' natural ordering, and LIFO queues (or 17.12/9.26 * stacks) which order the elements LIFO (last-in-first-out). 17.12/9.26 * Whatever the ordering used, the head of the queue is that 17.12/9.26 * element which would be removed by a call to {@link #remove() } or 17.12/9.26 * {@link #poll()}. In a FIFO queue, all new elements are inserted at 17.12/9.26 * the tail of the queue. Other kinds of queues may use 17.12/9.26 * different placement rules. Every Queue implementation 17.12/9.26 * must specify its ordering properties. 17.12/9.26 * 17.12/9.26 *

The {@link #offer offer} method inserts an element if possible, 17.12/9.26 * otherwise returning false. This differs from the {@link 17.12/9.26 * java.util.Collection#add Collection.add} method, which can fail to 17.12/9.26 * add an element only by throwing an unchecked exception. The 17.12/9.26 * offer method is designed for use when failure is a normal, 17.12/9.26 * rather than exceptional occurrence, for example, in fixed-capacity 17.12/9.26 * (or "bounded") queues. 17.12/9.26 * 17.12/9.26 *

The {@link #remove()} and {@link #poll()} methods remove and 17.12/9.26 * return the head of the queue. 17.12/9.26 * Exactly which element is removed from the queue is a 17.12/9.26 * function of the queue's ordering policy, which differs from 17.12/9.26 * implementation to implementation. The remove() and 17.12/9.26 * poll() methods differ only in their behavior when the 17.12/9.26 * queue is empty: the remove() method throws an exception, 17.12/9.26 * while the poll() method returns null. 17.12/9.26 * 17.12/9.26 *

The {@link #element()} and {@link #peek()} methods return, but do 17.12/9.26 * not remove, the head of the queue. 17.12/9.26 * 17.12/9.26 *

The Queue interface does not define the blocking queue 17.12/9.26 * methods, which are common in concurrent programming. These methods, 17.12/9.26 * which wait for elements to appear or for space to become available, are 17.12/9.26 * defined in the {@link java.util.concurrent.BlockingQueue} interface, which 17.12/9.26 * extends this interface. 17.12/9.26 * 17.12/9.26 *

Queue implementations generally do not allow insertion 17.12/9.26 * of null elements, although some implementations, such as 17.12/9.26 * {@link LinkedList}, do not prohibit insertion of null. 17.12/9.26 * Even in the implementations that permit it, null should 17.12/9.26 * not be inserted into a Queue, as null is also 17.12/9.26 * used as a special return value by the poll method to 17.12/9.26 * indicate that the queue contains no elements. 17.12/9.26 * 17.12/9.26 *

Queue implementations generally do not define 17.12/9.26 * element-based versions of methods equals and 17.12/9.26 * hashCode but instead inherit the identity based versions 17.12/9.26 * from class Object, because element-based equality is not 17.12/9.26 * always well-defined for queues with the same elements but different 17.12/9.26 * ordering properties. 17.12/9.26 * 17.12/9.26 * 17.12/9.26 *

This interface is a member of the 17.12/9.26 * 17.12/9.26 * Java Collections Framework. 17.12/9.26 * 17.12/9.26 * @see java.util.Collection 17.12/9.26 * @see LinkedList 17.12/9.26 * @see PriorityQueue 17.12/9.26 * @see java.util.concurrent.LinkedBlockingQueue 17.12/9.26 * @see java.util.concurrent.BlockingQueue 17.12/9.26 * @see java.util.concurrent.ArrayBlockingQueue 17.12/9.26 * @see java.util.concurrent.LinkedBlockingQueue 17.12/9.26 * @see java.util.concurrent.PriorityBlockingQueue 17.12/9.26 * @since 1.5 17.12/9.26 * @author Doug Lea 17.12/9.26 * @param the type of elements held in this collection 17.12/9.26 */ 17.12/9.26 public interface Queue extends Collection { 17.12/9.26 /** 17.12/9.26 * Inserts the specified element into this queue if it is possible to do so 17.12/9.26 * immediately without violating capacity restrictions, returning 17.12/9.26 * true upon success and throwing an IllegalStateException 17.12/9.26 * if no space is currently available. 17.12/9.26 * 17.12/9.26 * @param e the element to add 17.12/9.26 * @return true (as specified by {@link Collection#add}) 17.12/9.26 * @throws IllegalStateException if the element cannot be added at this 17.12/9.26 * time due to capacity restrictions 17.12/9.26 * @throws ClassCastException if the class of the specified element 17.12/9.26 * prevents it from being added to this queue 17.12/9.26 * @throws NullPointerException if the specified element is null and 17.12/9.26 * this queue does not permit null elements 17.12/9.26 * @throws IllegalArgumentException if some property of this element 17.12/9.26 * prevents it from being added to this queue 17.12/9.26 */ 17.12/9.26 boolean add(E e); 17.12/9.26 17.12/9.26 /** 17.12/9.26 * Inserts the specified element into this queue if it is possible to do 17.12/9.26 * so immediately without violating capacity restrictions. 17.12/9.26 * When using a capacity-restricted queue, this method is generally 17.12/9.26 * preferable to {@link #add}, which can fail to insert an element only 17.12/9.26 * by throwing an exception. 17.12/9.26 * 17.12/9.26 * @param e the element to add 17.12/9.26 * @return true if the element was added to this queue, else 17.12/9.26 * false 17.12/9.26 * @throws ClassCastException if the class of the specified element 17.12/9.26 * prevents it from being added to this queue 17.12/9.26 * @throws NullPointerException if the specified element is null and 17.12/9.26 * this queue does not permit null elements 17.12/9.26 * @throws IllegalArgumentException if some property of this element 17.12/9.26 * prevents it from being added to this queue 17.12/9.26 */ 17.12/9.26 boolean offer(E e); 17.12/9.26 17.12/9.26 /** 17.12/9.26 * Retrieves and removes the head of this queue. This method differs 17.12/9.26 * from {@link #poll poll} only in that it throws an exception if this 17.12/9.26 * queue is empty. 17.12/9.26 * 17.12/9.26 * @return the head of this queue 17.12/9.26 * @throws NoSuchElementException if this queue is empty 17.12/9.26 */ 17.12/9.26 E remove(); 17.12/9.26 17.12/9.26 /** 17.12/9.26 * Retrieves and removes the head of this queue, 17.12/9.26 * or returns null if this queue is empty. 17.12/9.26 * 17.12/9.26 * @return the head of this queue, or null if this queue is empty 17.12/9.26 */ 17.12/9.26 E poll(); 17.12/9.26 17.12/9.26 /** 17.12/9.26 * Retrieves, but does not remove, the head of this queue. This method 17.12/9.26 * differs from {@link #peek peek} only in that it throws an exception 17.12/9.26 * if this queue is empty. 17.12/9.26 * 17.12/9.26 * @return the head of this queue 17.12/9.26 * @throws NoSuchElementException if this queue is empty 17.12/9.26 */ 17.12/9.26 E element(); 17.12/9.26 17.12/9.26 /** 17.12/9.26 * Retrieves, but does not remove, the head of this queue, 17.12/9.26 * or returns null if this queue is empty. 17.12/9.26 * 17.12/9.26 * @return the head of this queue, or null if this queue is empty 17.12/9.26 */ 17.12/9.26 E peek(); 17.12/9.26 } 17.12/9.26 17.12/9.26 17.12/9.26 /* 17.12/9.26 * Copyright 2000-2006 Sun Microsystems, Inc. All Rights Reserved. 17.12/9.26 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 17.12/9.26 * 17.12/9.26 * This code is free software; you can redistribute it and/or modify it 17.12/9.26 * under the terms of the GNU General Public License version 2 only, as 17.12/9.26 * published by the Free Software Foundation. Sun designates this 17.12/9.26 * particular file as subject to the "Classpath" exception as provided 17.12/9.26 * by Sun in the LICENSE file that accompanied this code. 17.12/9.26 * 17.12/9.26 * This code is distributed in the hope that it will be useful, but WITHOUT 17.12/9.26 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or 17.12/9.26 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License 17.12/9.26 * version 2 for more details (a copy is included in the LICENSE file that 17.12/9.26 * accompanied this code). 17.12/9.26 * 17.12/9.26 * You should have received a copy of the GNU General Public License version 17.12/9.26 * 2 along with this work; if not, write to the Free Software Foundation, 17.12/9.26 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. 17.12/9.26 * 17.12/9.26 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara, 17.12/9.26 * CA 95054 USA or visit www.sun.com if you need additional information or 17.12/9.26 * have any questions. 17.12/9.26 */ 17.12/9.26 17.12/9.26 package javaUtilEx; 17.12/9.26 17.12/9.26 /** 17.12/9.26 * Marker interface used by List implementations to indicate that 17.12/9.26 * they support fast (generally constant time) random access. The primary 17.12/9.26 * purpose of this interface is to allow generic algorithms to alter their 17.12/9.26 * behavior to provide good performance when applied to either random or 17.12/9.26 * sequential access lists. 17.12/9.26 * 17.12/9.26 *

The best algorithms for manipulating random access lists (such as 17.12/9.26 * ArrayList) can produce quadratic behavior when applied to 17.12/9.26 * sequential access lists (such as LinkedList). Generic list 17.12/9.26 * algorithms are encouraged to check whether the given list is an 17.12/9.26 * instanceof this interface before applying an algorithm that would 17.12/9.26 * provide poor performance if it were applied to a sequential access list, 17.12/9.26 * and to alter their behavior if necessary to guarantee acceptable 17.12/9.26 * performance. 17.12/9.26 * 17.12/9.26 *

It is recognized that the distinction between random and sequential 17.12/9.26 * access is often fuzzy. For example, some List implementations 17.12/9.26 * provide asymptotically linear access times if they get huge, but constant 17.12/9.26 * access times in practice. Such a List implementation 17.12/9.26 * should generally implement this interface. As a rule of thumb, a 17.12/9.26 * List implementation should implement this interface if, 17.12/9.26 * for typical instances of the class, this loop: 17.12/9.26 *

17.12/9.26	 *     for (int i=0, n=list.size(); i < n; i++)
17.12/9.26	 *         list.get(i);
17.12/9.26	 * 
17.12/9.26 * runs faster than this loop: 17.12/9.26 *
17.12/9.26	 *     for (Iterator i=list.iterator(); i.hasNext(); )
17.12/9.26	 *         i.next();
17.12/9.26	 * 
17.12/9.26 * 17.12/9.26 *

This interface is a member of the 17.12/9.26 * 17.12/9.26 * Java Collections Framework. 17.12/9.26 * 17.12/9.26 * @since 1.4 17.12/9.26 */ 17.12/9.26 public interface RandomAccess { 17.12/9.26 } 17.12/9.26 17.12/9.26 17.12/9.26 package javaUtilEx; 17.12/9.26 17.12/9.26 public class Random { 17.12/9.26 static String[] args; 17.12/9.26 static int index = 0; 17.12/9.26 17.12/9.26 public static int random() { 17.12/9.26 String string = args[index]; 17.12/9.26 index++; 17.12/9.26 return string.length(); 17.12/9.26 } 17.12/9.26 } 17.12/9.26 17.12/9.26 17.12/9.26 /* 17.12/9.26 * Copyright 1997-2006 Sun Microsystems, Inc. All Rights Reserved. 17.12/9.26 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 17.12/9.26 * 17.12/9.26 * This code is free software; you can redistribute it and/or modify it 17.12/9.26 * under the terms of the GNU General Public License version 2 only, as 17.12/9.26 * published by the Free Software Foundation. Sun designates this 17.12/9.26 * particular file as subject to the "Classpath" exception as provided 17.12/9.26 * by Sun in the LICENSE file that accompanied this code. 17.12/9.26 * 17.12/9.26 * This code is distributed in the hope that it will be useful, but WITHOUT 17.12/9.26 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or 17.12/9.26 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License 17.12/9.26 * version 2 for more details (a copy is included in the LICENSE file that 17.12/9.26 * accompanied this code). 17.12/9.26 * 17.12/9.26 * You should have received a copy of the GNU General Public License version 17.12/9.26 * 2 along with this work; if not, write to the Free Software Foundation, 17.12/9.26 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. 17.12/9.26 * 17.12/9.26 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara, 17.12/9.26 * CA 95054 USA or visit www.sun.com if you need additional information or 17.12/9.26 * have any questions. 17.12/9.26 */ 17.12/9.26 17.12/9.26 package javaUtilEx; 17.12/9.26 17.12/9.26 /** 17.12/9.26 * Thrown to indicate that the requested operation is not supported.

17.12/9.26 * 17.12/9.26 * This class is a member of the 17.12/9.26 * 17.12/9.26 * Java Collections Framework. 17.12/9.26 * 17.12/9.26 * @author Josh Bloch 17.12/9.26 * @since 1.2 17.12/9.26 */ 17.12/9.26 public class UnsupportedOperationException extends RuntimeException { 17.12/9.26 /** 17.12/9.26 * Constructs an UnsupportedOperationException with no detail message. 17.12/9.26 */ 17.12/9.26 public UnsupportedOperationException() { 17.12/9.26 } 17.12/9.26 17.12/9.26 /** 17.12/9.26 * Constructs an UnsupportedOperationException with the specified 17.12/9.26 * detail message. 17.12/9.26 * 17.12/9.26 * @param message the detail message 17.12/9.26 */ 17.12/9.26 public UnsupportedOperationException(String message) { 17.12/9.26 super(message); 17.12/9.26 } 17.12/9.26 17.12/9.26 /** 17.12/9.26 * Constructs a new exception with the specified detail message and 17.12/9.26 * cause. 17.12/9.26 * 17.12/9.26 *

Note that the detail message associated with cause is 17.12/9.26 * not automatically incorporated in this exception's detail 17.12/9.26 * message. 17.12/9.26 * 17.12/9.26 * @param message the detail message (which is saved for later retrieval 17.12/9.26 * by the {@link Throwable#getMessage()} method). 17.12/9.26 * @param cause the cause (which is saved for later retrieval by the 17.12/9.26 * {@link Throwable#getCause()} method). (A null value 17.12/9.26 * is permitted, and indicates that the cause is nonexistent or 17.12/9.26 * unknown.) 17.12/9.26 * @since 1.5 17.12/9.26 */ 17.12/9.26 public UnsupportedOperationException(String message, Throwable cause) { 17.12/9.26 super(message, cause); 17.12/9.26 } 17.12/9.26 17.12/9.26 /** 17.12/9.26 * Constructs a new exception with the specified cause and a detail 17.12/9.26 * message of (cause==null ? null : cause.toString()) (which 17.12/9.26 * typically contains the class and detail message of cause). 17.12/9.26 * This constructor is useful for exceptions that are little more than 17.12/9.26 * wrappers for other throwables (for example, {@link 17.12/9.26 * java.security.PrivilegedActionException}). 17.12/9.26 * 17.12/9.26 * @param cause the cause (which is saved for later retrieval by the 17.12/9.26 * {@link Throwable#getCause()} method). (A null value is 17.12/9.26 * permitted, and indicates that the cause is nonexistent or 17.12/9.26 * unknown.) 17.12/9.26 * @since 1.5 17.12/9.26 */ 17.12/9.26 public UnsupportedOperationException(Throwable cause) { 17.12/9.26 super(cause); 17.12/9.26 } 17.12/9.26 17.12/9.26 static final long serialVersionUID = -1242599979055084673L; 17.12/9.26 } 17.12/9.26 17.12/9.26 17.12/9.26 17.12/9.26 ---------------------------------------- 17.12/9.26 17.12/9.26 (3) JBCToGraph (EQUIVALENT) 17.12/9.26 Constructed TerminationGraph. 17.12/9.26 ---------------------------------------- 17.12/9.26 17.12/9.26 (4) 17.12/9.26 Obligation: 17.12/9.26 Termination Graph based on JBC Program: 17.12/9.26 javaUtilEx.juLinkedListCreatePoll.main([Ljava/lang/String;)V: Graph of 345 nodes with 0 SCCs. 17.12/9.26 17.12/9.26 17.12/9.26 17.12/9.26 javaUtilEx.juLinkedListCreatePoll.createList(I)LjavaUtilEx/LinkedList;: Graph of 250 nodes with 1 SCC. 17.12/9.26 17.12/9.26 17.12/9.26 17.12/9.26 17.12/9.26 17.12/9.26 ---------------------------------------- 17.12/9.26 17.12/9.26 (5) TerminationGraphToSCCProof (SOUND) 17.12/9.26 Splitted TerminationGraph to 1 SCCs. 17.12/9.26 ---------------------------------------- 17.12/9.26 17.12/9.26 (6) 17.12/9.26 Obligation: 17.12/9.26 SCC of termination graph based on JBC Program. 17.12/9.26 SCC contains nodes from the following methods: javaUtilEx.juLinkedListCreatePoll.createList(I)LjavaUtilEx/LinkedList; 17.12/9.26 SCC calls the following helper methods: 17.12/9.26 Performed SCC analyses: 17.12/9.26 *Used field analysis yielded the following read fields: 17.12/9.26 *java.lang.String: [count] 17.12/9.26 *javaUtilEx.LinkedList: [header, size] 17.12/9.26 *javaUtilEx.LinkedList$Entry: [previous, next] 17.12/9.26 *javaUtilEx.AbstractList: [modCount] 17.12/9.26 *Marker field analysis yielded the following relations that could be markers: 17.12/9.26 17.12/9.26 ---------------------------------------- 17.12/9.26 17.12/9.26 (7) SCCToIRSProof (SOUND) 17.12/9.26 Transformed FIGraph SCCs to intTRSs. Log: 17.12/9.26 Generated rules. Obtained 118 IRulesP rules: 17.12/9.26 f4669_0_createList_LE(EOS(STATIC_4669(java.lang.Object(o4822sub), i1068)), i1083, i1083, o4827[LinkedList$Entry.next]o4826, o4828[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.next]o4827, o4827[LinkedList$Entry.next]o4825, o4826[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4825, o4828[LinkedList$Entry.previous]o4825, o4826[LinkedList$Entry.previous]o4827, o4828[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.previous]o4825, o4827[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.next]o4828, o4827[LinkedList$Entry.previous]o4828, o4826[LinkedList$Entry.previous]o4828, o4828[LinkedList$Entry.previous]o4828) -> f4671_0_createList_LE(EOS(STATIC_4671(java.lang.Object(o4822sub), i1068)), i1083, i1083, o4827[LinkedList$Entry.next]o4826, o4828[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.next]o4827, o4827[LinkedList$Entry.next]o4825, o4826[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4825, o4828[LinkedList$Entry.previous]o4825, o4826[LinkedList$Entry.previous]o4827, o4828[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.previous]o4825, o4827[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.next]o4828, o4827[LinkedList$Entry.previous]o4828, o4826[LinkedList$Entry.previous]o4828, o4828[LinkedList$Entry.previous]o4828) :|: TRUE 17.12/9.26 f4671_0_createList_LE(EOS(STATIC_4671(java.lang.Object(o4822sub), i1068)), i1083, i1083, o4827[LinkedList$Entry.next]o4826, o4828[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.next]o4827, o4827[LinkedList$Entry.next]o4825, o4826[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4825, o4828[LinkedList$Entry.previous]o4825, o4826[LinkedList$Entry.previous]o4827, o4828[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.previous]o4825, o4827[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.next]o4828, o4827[LinkedList$Entry.previous]o4828, o4826[LinkedList$Entry.previous]o4828, o4828[LinkedList$Entry.previous]o4828) -> f4673_0_createList_Load(EOS(STATIC_4673(java.lang.Object(o4822sub), i1068)), i1083, o4827[LinkedList$Entry.next]o4826, o4828[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.next]o4827, o4827[LinkedList$Entry.next]o4825, o4826[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4825, o4828[LinkedList$Entry.previous]o4825, o4826[LinkedList$Entry.previous]o4827, o4828[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.previous]o4825, o4827[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.next]o4828, o4827[LinkedList$Entry.previous]o4828, o4826[LinkedList$Entry.previous]o4828, o4828[LinkedList$Entry.previous]o4828) :|: i1083 > 0 17.12/9.26 f4673_0_createList_Load(EOS(STATIC_4673(java.lang.Object(o4822sub), i1068)), i1083, o4827[LinkedList$Entry.next]o4826, o4828[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.next]o4827, o4827[LinkedList$Entry.next]o4825, o4826[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4825, o4828[LinkedList$Entry.previous]o4825, o4826[LinkedList$Entry.previous]o4827, o4828[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.previous]o4825, o4827[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.next]o4828, o4827[LinkedList$Entry.previous]o4828, o4826[LinkedList$Entry.previous]o4828, o4828[LinkedList$Entry.previous]o4828) -> f4675_0_createList_New(EOS(STATIC_4675(java.lang.Object(o4822sub), i1068)), i1083, o4827[LinkedList$Entry.next]o4826, o4828[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.next]o4827, o4827[LinkedList$Entry.next]o4825, o4826[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4825, o4828[LinkedList$Entry.previous]o4825, o4826[LinkedList$Entry.previous]o4827, o4828[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.previous]o4825, o4827[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.next]o4828, o4827[LinkedList$Entry.previous]o4828, o4826[LinkedList$Entry.previous]o4828, o4828[LinkedList$Entry.previous]o4828) :|: TRUE 17.12/9.26 f4675_0_createList_New(EOS(STATIC_4675(java.lang.Object(o4822sub), i1068)), i1083, o4827[LinkedList$Entry.next]o4826, o4828[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.next]o4827, o4827[LinkedList$Entry.next]o4825, o4826[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4825, o4828[LinkedList$Entry.previous]o4825, o4826[LinkedList$Entry.previous]o4827, o4828[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.previous]o4825, o4827[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.next]o4828, o4827[LinkedList$Entry.previous]o4828, o4826[LinkedList$Entry.previous]o4828, o4828[LinkedList$Entry.previous]o4828) -> f4677_0_createList_Duplicate(EOS(STATIC_4677(java.lang.Object(o4822sub), i1068)), i1083, o4827[LinkedList$Entry.next]o4826, o4828[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.next]o4827, o4827[LinkedList$Entry.next]o4825, o4826[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4825, o4828[LinkedList$Entry.previous]o4825, o4826[LinkedList$Entry.previous]o4827, o4828[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.previous]o4825, o4827[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.next]o4828, o4827[LinkedList$Entry.previous]o4828, o4826[LinkedList$Entry.previous]o4828, o4828[LinkedList$Entry.previous]o4828) :|: TRUE 17.12/9.26 f4677_0_createList_Duplicate(EOS(STATIC_4677(java.lang.Object(o4822sub), i1068)), i1083, o4827[LinkedList$Entry.next]o4826, o4828[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.next]o4827, o4827[LinkedList$Entry.next]o4825, o4826[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4825, o4828[LinkedList$Entry.previous]o4825, o4826[LinkedList$Entry.previous]o4827, o4828[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.previous]o4825, o4827[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.next]o4828, o4827[LinkedList$Entry.previous]o4828, o4826[LinkedList$Entry.previous]o4828, o4828[LinkedList$Entry.previous]o4828) -> f4678_0_createList_InvokeMethod(EOS(STATIC_4678(java.lang.Object(o4822sub), i1068)), i1083, o4827[LinkedList$Entry.next]o4826, o4828[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.next]o4827, o4827[LinkedList$Entry.next]o4825, o4826[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4825, o4828[LinkedList$Entry.previous]o4825, o4826[LinkedList$Entry.previous]o4827, o4828[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.previous]o4825, o4827[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.next]o4828, o4827[LinkedList$Entry.previous]o4828, o4826[LinkedList$Entry.previous]o4828, o4828[LinkedList$Entry.previous]o4828) :|: TRUE 17.12/9.26 f4678_0_createList_InvokeMethod(EOS(STATIC_4678(java.lang.Object(o4822sub), i1068)), i1083, o4827[LinkedList$Entry.next]o4826, o4828[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.next]o4827, o4827[LinkedList$Entry.next]o4825, o4826[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4825, o4828[LinkedList$Entry.previous]o4825, o4826[LinkedList$Entry.previous]o4827, o4828[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.previous]o4825, o4827[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.next]o4828, o4827[LinkedList$Entry.previous]o4828, o4826[LinkedList$Entry.previous]o4828, o4828[LinkedList$Entry.previous]o4828) -> f4680_0_random_FieldAccess(EOS(STATIC_4680(java.lang.Object(o4822sub), i1068)), i1083, o4827[LinkedList$Entry.next]o4826, o4828[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.next]o4827, o4827[LinkedList$Entry.next]o4825, o4826[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4825, o4828[LinkedList$Entry.previous]o4825, o4826[LinkedList$Entry.previous]o4827, o4828[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.previous]o4825, o4827[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.next]o4828, o4827[LinkedList$Entry.previous]o4828, o4826[LinkedList$Entry.previous]o4828, o4828[LinkedList$Entry.previous]o4828) :|: TRUE 17.12/9.26 f4680_0_random_FieldAccess(EOS(STATIC_4680(java.lang.Object(o4822sub), i1068)), i1083, o4827[LinkedList$Entry.next]o4826, o4828[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.next]o4827, o4827[LinkedList$Entry.next]o4825, o4826[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4825, o4828[LinkedList$Entry.previous]o4825, o4826[LinkedList$Entry.previous]o4827, o4828[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.previous]o4825, o4827[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.next]o4828, o4827[LinkedList$Entry.previous]o4828, o4826[LinkedList$Entry.previous]o4828, o4828[LinkedList$Entry.previous]o4828) -> f4681_0_random_FieldAccess(EOS(STATIC_4681(java.lang.Object(o4822sub), i1068)), i1083, java.lang.Object(o4822sub), o4827[LinkedList$Entry.next]o4826, o4828[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.next]o4827, o4827[LinkedList$Entry.next]o4825, o4826[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4825, o4828[LinkedList$Entry.previous]o4825, o4826[LinkedList$Entry.previous]o4827, o4828[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.previous]o4825, o4827[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.next]o4828, o4827[LinkedList$Entry.previous]o4828, o4826[LinkedList$Entry.previous]o4828, o4828[LinkedList$Entry.previous]o4828) :|: TRUE 17.12/9.26 f4681_0_random_FieldAccess(EOS(STATIC_4681(java.lang.Object(o4822sub), i1068)), i1083, java.lang.Object(o4822sub), o4827[LinkedList$Entry.next]o4826, o4828[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.next]o4827, o4827[LinkedList$Entry.next]o4825, o4826[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4825, o4828[LinkedList$Entry.previous]o4825, o4826[LinkedList$Entry.previous]o4827, o4828[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.previous]o4825, o4827[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.next]o4828, o4827[LinkedList$Entry.previous]o4828, o4826[LinkedList$Entry.previous]o4828, o4828[LinkedList$Entry.previous]o4828) -> f4682_0_random_ArrayAccess(EOS(STATIC_4682(java.lang.Object(o4822sub), i1068)), i1083, java.lang.Object(o4822sub), i1068, o4827[LinkedList$Entry.next]o4826, o4828[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.next]o4827, o4827[LinkedList$Entry.next]o4825, o4826[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4825, o4828[LinkedList$Entry.previous]o4825, o4826[LinkedList$Entry.previous]o4827, o4828[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.previous]o4825, o4827[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.next]o4828, o4827[LinkedList$Entry.previous]o4828, o4826[LinkedList$Entry.previous]o4828, o4828[LinkedList$Entry.previous]o4828) :|: TRUE 17.12/9.26 f4682_0_random_ArrayAccess(EOS(STATIC_4682(java.lang.Object(ARRAY(i1094)), i1068)), i1083, java.lang.Object(ARRAY(i1094)), i1068, o4827[LinkedList$Entry.next]o4826, o4828[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.next]o4827, o4827[LinkedList$Entry.next]o4825, o4826[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4825, o4828[LinkedList$Entry.previous]o4825, o4826[LinkedList$Entry.previous]o4827, o4828[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.previous]o4825, o4827[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.next]o4828, o4827[LinkedList$Entry.previous]o4828, o4826[LinkedList$Entry.previous]o4828, o4828[LinkedList$Entry.previous]o4828) -> f4683_0_random_ArrayAccess(EOS(STATIC_4683(java.lang.Object(ARRAY(i1094)), i1068)), i1083, java.lang.Object(ARRAY(i1094)), i1068, o4827[LinkedList$Entry.next]o4826, o4828[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.next]o4827, o4827[LinkedList$Entry.next]o4825, o4826[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4825, o4828[LinkedList$Entry.previous]o4825, o4826[LinkedList$Entry.previous]o4827, o4828[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.previous]o4825, o4827[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.next]o4828, o4827[LinkedList$Entry.previous]o4828, o4826[LinkedList$Entry.previous]o4828, o4828[LinkedList$Entry.previous]o4828) :|: i1094 >= 0 17.12/9.26 f4683_0_random_ArrayAccess(EOS(STATIC_4683(java.lang.Object(ARRAY(i1094)), i1096)), i1083, java.lang.Object(ARRAY(i1094)), i1096, o4827[LinkedList$Entry.next]o4826, o4828[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.next]o4827, o4827[LinkedList$Entry.next]o4825, o4826[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4825, o4828[LinkedList$Entry.previous]o4825, o4826[LinkedList$Entry.previous]o4827, o4828[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.previous]o4825, o4827[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.next]o4828, o4827[LinkedList$Entry.previous]o4828, o4826[LinkedList$Entry.previous]o4828, o4828[LinkedList$Entry.previous]o4828) -> f4685_0_random_ArrayAccess(EOS(STATIC_4685(java.lang.Object(ARRAY(i1094)), i1096)), i1083, java.lang.Object(ARRAY(i1094)), i1096, o4827[LinkedList$Entry.next]o4826, o4828[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.next]o4827, o4827[LinkedList$Entry.next]o4825, o4826[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4825, o4828[LinkedList$Entry.previous]o4825, o4826[LinkedList$Entry.previous]o4827, o4828[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.previous]o4825, o4827[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.next]o4828, o4827[LinkedList$Entry.previous]o4828, o4826[LinkedList$Entry.previous]o4828, o4828[LinkedList$Entry.previous]o4828) :|: TRUE 17.12/9.26 f4685_0_random_ArrayAccess(EOS(STATIC_4685(java.lang.Object(ARRAY(i1094)), i1096)), i1083, java.lang.Object(ARRAY(i1094)), i1096, o4827[LinkedList$Entry.next]o4826, o4828[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.next]o4827, o4827[LinkedList$Entry.next]o4825, o4826[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4825, o4828[LinkedList$Entry.previous]o4825, o4826[LinkedList$Entry.previous]o4827, o4828[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.previous]o4825, o4827[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.next]o4828, o4827[LinkedList$Entry.previous]o4828, o4826[LinkedList$Entry.previous]o4828, o4828[LinkedList$Entry.previous]o4828) -> f4687_0_random_ArrayAccess(EOS(STATIC_4687(java.lang.Object(ARRAY(i1094)), i1096)), i1083, java.lang.Object(ARRAY(i1094)), i1096, o4827[LinkedList$Entry.next]o4826, o4828[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.next]o4827, o4827[LinkedList$Entry.next]o4825, o4826[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4825, o4828[LinkedList$Entry.previous]o4825, o4826[LinkedList$Entry.previous]o4827, o4828[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.previous]o4825, o4827[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.next]o4828, o4827[LinkedList$Entry.previous]o4828, o4826[LinkedList$Entry.previous]o4828, o4828[LinkedList$Entry.previous]o4828) :|: TRUE 17.12/9.26 f4687_0_random_ArrayAccess(EOS(STATIC_4687(java.lang.Object(ARRAY(i1094)), i1096)), i1083, java.lang.Object(ARRAY(i1094)), i1096, o4827[LinkedList$Entry.next]o4826, o4828[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.next]o4827, o4827[LinkedList$Entry.next]o4825, o4826[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4825, o4828[LinkedList$Entry.previous]o4825, o4826[LinkedList$Entry.previous]o4827, o4828[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.previous]o4825, o4827[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.next]o4828, o4827[LinkedList$Entry.previous]o4828, o4826[LinkedList$Entry.previous]o4828, o4828[LinkedList$Entry.previous]o4828) -> f4689_0_random_Store(EOS(STATIC_4689(java.lang.Object(ARRAY(i1094)), i1096)), i1083, o4854, o4827[LinkedList$Entry.next]o4826, o4828[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.next]o4827, o4827[LinkedList$Entry.next]o4825, o4826[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4825, o4828[LinkedList$Entry.previous]o4825, o4826[LinkedList$Entry.previous]o4827, o4828[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.previous]o4825, o4827[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.next]o4828, o4827[LinkedList$Entry.previous]o4828, o4826[LinkedList$Entry.previous]o4828, o4828[LinkedList$Entry.previous]o4828) :|: i1096 < i1094 17.12/9.26 f4689_0_random_Store(EOS(STATIC_4689(java.lang.Object(ARRAY(i1094)), i1096)), i1083, o4854, o4827[LinkedList$Entry.next]o4826, o4828[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.next]o4827, o4827[LinkedList$Entry.next]o4825, o4826[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4825, o4828[LinkedList$Entry.previous]o4825, o4826[LinkedList$Entry.previous]o4827, o4828[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.previous]o4825, o4827[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.next]o4828, o4827[LinkedList$Entry.previous]o4828, o4826[LinkedList$Entry.previous]o4828, o4828[LinkedList$Entry.previous]o4828) -> f4692_0_random_FieldAccess(EOS(STATIC_4692(java.lang.Object(ARRAY(i1094)), i1096)), i1083, o4854, o4827[LinkedList$Entry.next]o4826, o4828[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.next]o4827, o4827[LinkedList$Entry.next]o4825, o4826[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4825, o4828[LinkedList$Entry.previous]o4825, o4826[LinkedList$Entry.previous]o4827, o4828[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.previous]o4825, o4827[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.next]o4828, o4827[LinkedList$Entry.previous]o4828, o4826[LinkedList$Entry.previous]o4828, o4828[LinkedList$Entry.previous]o4828) :|: TRUE 17.12/9.26 f4692_0_random_FieldAccess(EOS(STATIC_4692(java.lang.Object(ARRAY(i1094)), i1096)), i1083, o4854, o4827[LinkedList$Entry.next]o4826, o4828[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.next]o4827, o4827[LinkedList$Entry.next]o4825, o4826[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4825, o4828[LinkedList$Entry.previous]o4825, o4826[LinkedList$Entry.previous]o4827, o4828[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.previous]o4825, o4827[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.next]o4828, o4827[LinkedList$Entry.previous]o4828, o4826[LinkedList$Entry.previous]o4828, o4828[LinkedList$Entry.previous]o4828) -> f4694_0_random_ConstantStackPush(EOS(STATIC_4694(java.lang.Object(ARRAY(i1094)), i1096)), i1083, o4854, i1096, o4827[LinkedList$Entry.next]o4826, o4828[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.next]o4827, o4827[LinkedList$Entry.next]o4825, o4826[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4825, o4828[LinkedList$Entry.previous]o4825, o4826[LinkedList$Entry.previous]o4827, o4828[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.previous]o4825, o4827[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.next]o4828, o4827[LinkedList$Entry.previous]o4828, o4826[LinkedList$Entry.previous]o4828, o4828[LinkedList$Entry.previous]o4828) :|: TRUE 17.12/9.26 f4694_0_random_ConstantStackPush(EOS(STATIC_4694(java.lang.Object(ARRAY(i1094)), i1096)), i1083, o4854, i1096, o4827[LinkedList$Entry.next]o4826, o4828[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.next]o4827, o4827[LinkedList$Entry.next]o4825, o4826[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4825, o4828[LinkedList$Entry.previous]o4825, o4826[LinkedList$Entry.previous]o4827, o4828[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.previous]o4825, o4827[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.next]o4828, o4827[LinkedList$Entry.previous]o4828, o4826[LinkedList$Entry.previous]o4828, o4828[LinkedList$Entry.previous]o4828) -> f4696_0_random_IntArithmetic(EOS(STATIC_4696(java.lang.Object(ARRAY(i1094)), i1096)), i1083, o4854, i1096, 1, o4827[LinkedList$Entry.next]o4826, o4828[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.next]o4827, o4827[LinkedList$Entry.next]o4825, o4826[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4825, o4828[LinkedList$Entry.previous]o4825, o4826[LinkedList$Entry.previous]o4827, o4828[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.previous]o4825, o4827[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.next]o4828, o4827[LinkedList$Entry.previous]o4828, o4826[LinkedList$Entry.previous]o4828, o4828[LinkedList$Entry.previous]o4828) :|: TRUE 17.12/9.26 f4696_0_random_IntArithmetic(EOS(STATIC_4696(java.lang.Object(ARRAY(i1094)), i1096)), i1083, o4854, i1096, matching1, o4827[LinkedList$Entry.next]o4826, o4828[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.next]o4827, o4827[LinkedList$Entry.next]o4825, o4826[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4825, o4828[LinkedList$Entry.previous]o4825, o4826[LinkedList$Entry.previous]o4827, o4828[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.previous]o4825, o4827[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.next]o4828, o4827[LinkedList$Entry.previous]o4828, o4826[LinkedList$Entry.previous]o4828, o4828[LinkedList$Entry.previous]o4828) -> f4699_0_random_FieldAccess(EOS(STATIC_4699(java.lang.Object(ARRAY(i1094)), i1096)), i1083, o4854, i1096 + 1, o4827[LinkedList$Entry.next]o4826, o4828[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.next]o4827, o4827[LinkedList$Entry.next]o4825, o4826[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4825, o4828[LinkedList$Entry.previous]o4825, o4826[LinkedList$Entry.previous]o4827, o4828[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.previous]o4825, o4827[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.next]o4828, o4827[LinkedList$Entry.previous]o4828, o4826[LinkedList$Entry.previous]o4828, o4828[LinkedList$Entry.previous]o4828) :|: i1096 >= 0 && matching1 = 1 17.12/9.26 f4699_0_random_FieldAccess(EOS(STATIC_4699(java.lang.Object(ARRAY(i1094)), i1096)), i1083, o4854, i1097, o4827[LinkedList$Entry.next]o4826, o4828[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.next]o4827, o4827[LinkedList$Entry.next]o4825, o4826[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4825, o4828[LinkedList$Entry.previous]o4825, o4826[LinkedList$Entry.previous]o4827, o4828[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.previous]o4825, o4827[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.next]o4828, o4827[LinkedList$Entry.previous]o4828, o4826[LinkedList$Entry.previous]o4828, o4828[LinkedList$Entry.previous]o4828) -> f4701_0_random_Load(EOS(STATIC_4701(java.lang.Object(ARRAY(i1094)), i1097)), i1083, o4854, o4827[LinkedList$Entry.next]o4826, o4828[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.next]o4827, o4827[LinkedList$Entry.next]o4825, o4826[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4825, o4828[LinkedList$Entry.previous]o4825, o4826[LinkedList$Entry.previous]o4827, o4828[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.previous]o4825, o4827[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.next]o4828, o4827[LinkedList$Entry.previous]o4828, o4826[LinkedList$Entry.previous]o4828, o4828[LinkedList$Entry.previous]o4828) :|: TRUE 17.12/9.26 f4701_0_random_Load(EOS(STATIC_4701(java.lang.Object(ARRAY(i1094)), i1097)), i1083, o4854, o4827[LinkedList$Entry.next]o4826, o4828[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.next]o4827, o4827[LinkedList$Entry.next]o4825, o4826[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4825, o4828[LinkedList$Entry.previous]o4825, o4826[LinkedList$Entry.previous]o4827, o4828[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.previous]o4825, o4827[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.next]o4828, o4827[LinkedList$Entry.previous]o4828, o4826[LinkedList$Entry.previous]o4828, o4828[LinkedList$Entry.previous]o4828) -> f4703_0_random_InvokeMethod(EOS(STATIC_4703(java.lang.Object(ARRAY(i1094)), i1097)), i1083, o4854, o4827[LinkedList$Entry.next]o4826, o4828[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.next]o4827, o4827[LinkedList$Entry.next]o4825, o4826[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4825, o4828[LinkedList$Entry.previous]o4825, o4826[LinkedList$Entry.previous]o4827, o4828[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.previous]o4825, o4827[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.next]o4828, o4827[LinkedList$Entry.previous]o4828, o4826[LinkedList$Entry.previous]o4828, o4828[LinkedList$Entry.previous]o4828) :|: TRUE 17.12/9.26 f4703_0_random_InvokeMethod(EOS(STATIC_4703(java.lang.Object(ARRAY(i1094)), i1097)), i1083, java.lang.Object(o4856sub), o4827[LinkedList$Entry.next]o4826, o4828[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.next]o4827, o4827[LinkedList$Entry.next]o4825, o4826[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4825, o4828[LinkedList$Entry.previous]o4825, o4826[LinkedList$Entry.previous]o4827, o4828[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.previous]o4825, o4827[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.next]o4828, o4827[LinkedList$Entry.previous]o4828, o4826[LinkedList$Entry.previous]o4828, o4828[LinkedList$Entry.previous]o4828) -> f4706_0_random_InvokeMethod(EOS(STATIC_4706(java.lang.Object(ARRAY(i1094)), i1097)), i1083, java.lang.Object(o4856sub), o4827[LinkedList$Entry.next]o4826, o4828[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.next]o4827, o4827[LinkedList$Entry.next]o4825, o4826[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4825, o4828[LinkedList$Entry.previous]o4825, o4826[LinkedList$Entry.previous]o4827, o4828[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.previous]o4825, o4827[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.next]o4828, o4827[LinkedList$Entry.previous]o4828, o4826[LinkedList$Entry.previous]o4828, o4828[LinkedList$Entry.previous]o4828) :|: TRUE 17.12/9.26 f4706_0_random_InvokeMethod(EOS(STATIC_4706(java.lang.Object(ARRAY(i1094)), i1097)), i1083, java.lang.Object(o4857sub), o4827[LinkedList$Entry.next]o4826, o4828[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.next]o4827, o4827[LinkedList$Entry.next]o4825, o4826[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4825, o4828[LinkedList$Entry.previous]o4825, o4826[LinkedList$Entry.previous]o4827, o4828[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.previous]o4825, o4827[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.next]o4828, o4827[LinkedList$Entry.previous]o4828, o4826[LinkedList$Entry.previous]o4828, o4828[LinkedList$Entry.previous]o4828) -> f4709_0_random_InvokeMethod(EOS(STATIC_4709(java.lang.Object(ARRAY(i1094)), i1097)), i1083, java.lang.Object(o4857sub), o4827[LinkedList$Entry.next]o4826, o4828[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.next]o4827, o4827[LinkedList$Entry.next]o4825, o4826[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4825, o4828[LinkedList$Entry.previous]o4825, o4826[LinkedList$Entry.previous]o4827, o4828[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.previous]o4825, o4827[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.next]o4828, o4827[LinkedList$Entry.previous]o4828, o4826[LinkedList$Entry.previous]o4828, o4828[LinkedList$Entry.previous]o4828) :|: TRUE 17.12/9.26 f4709_0_random_InvokeMethod(EOS(STATIC_4709(java.lang.Object(ARRAY(i1094)), i1097)), i1083, java.lang.Object(o4857sub), o4827[LinkedList$Entry.next]o4826, o4828[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.next]o4827, o4827[LinkedList$Entry.next]o4825, o4826[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4825, o4828[LinkedList$Entry.previous]o4825, o4826[LinkedList$Entry.previous]o4827, o4828[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.previous]o4825, o4827[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.next]o4828, o4827[LinkedList$Entry.previous]o4828, o4826[LinkedList$Entry.previous]o4828, o4828[LinkedList$Entry.previous]o4828) -> f4712_0_length_Load(EOS(STATIC_4712(java.lang.Object(ARRAY(i1094)), i1097)), i1083, java.lang.Object(o4857sub), o4827[LinkedList$Entry.next]o4826, o4828[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.next]o4827, o4827[LinkedList$Entry.next]o4825, o4826[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4825, o4828[LinkedList$Entry.previous]o4825, o4826[LinkedList$Entry.previous]o4827, o4828[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.previous]o4825, o4827[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.next]o4828, o4827[LinkedList$Entry.previous]o4828, o4826[LinkedList$Entry.previous]o4828, o4828[LinkedList$Entry.previous]o4828) :|: TRUE 17.12/9.26 f4712_0_length_Load(EOS(STATIC_4712(java.lang.Object(ARRAY(i1094)), i1097)), i1083, java.lang.Object(o4857sub), o4827[LinkedList$Entry.next]o4826, o4828[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.next]o4827, o4827[LinkedList$Entry.next]o4825, o4826[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4825, o4828[LinkedList$Entry.previous]o4825, o4826[LinkedList$Entry.previous]o4827, o4828[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.previous]o4825, o4827[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.next]o4828, o4827[LinkedList$Entry.previous]o4828, o4826[LinkedList$Entry.previous]o4828, o4828[LinkedList$Entry.previous]o4828) -> f4717_0_length_FieldAccess(EOS(STATIC_4717(java.lang.Object(ARRAY(i1094)), i1097)), i1083, java.lang.Object(o4857sub), o4827[LinkedList$Entry.next]o4826, o4828[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.next]o4827, o4827[LinkedList$Entry.next]o4825, o4826[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4825, o4828[LinkedList$Entry.previous]o4825, o4826[LinkedList$Entry.previous]o4827, o4828[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.previous]o4825, o4827[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.next]o4828, o4827[LinkedList$Entry.previous]o4828, o4826[LinkedList$Entry.previous]o4828, o4828[LinkedList$Entry.previous]o4828) :|: TRUE 17.12/9.26 f4717_0_length_FieldAccess(EOS(STATIC_4717(java.lang.Object(ARRAY(i1094)), i1097)), i1083, java.lang.Object(java.lang.String(EOC, i1101)), o4827[LinkedList$Entry.next]o4826, o4828[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.next]o4827, o4827[LinkedList$Entry.next]o4825, o4826[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4825, o4828[LinkedList$Entry.previous]o4825, o4826[LinkedList$Entry.previous]o4827, o4828[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.previous]o4825, o4827[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.next]o4828, o4827[LinkedList$Entry.previous]o4828, o4826[LinkedList$Entry.previous]o4828, o4828[LinkedList$Entry.previous]o4828) -> f4720_0_length_FieldAccess(EOS(STATIC_4720(java.lang.Object(ARRAY(i1094)), i1097)), i1083, java.lang.Object(java.lang.String(EOC, i1101)), o4827[LinkedList$Entry.next]o4826, o4828[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.next]o4827, o4827[LinkedList$Entry.next]o4825, o4826[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4825, o4828[LinkedList$Entry.previous]o4825, o4826[LinkedList$Entry.previous]o4827, o4828[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.previous]o4825, o4827[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.next]o4828, o4827[LinkedList$Entry.previous]o4828, o4826[LinkedList$Entry.previous]o4828, o4828[LinkedList$Entry.previous]o4828) :|: TRUE 17.12/9.26 f4720_0_length_FieldAccess(EOS(STATIC_4720(java.lang.Object(ARRAY(i1094)), i1097)), i1083, java.lang.Object(java.lang.String(EOC, i1101)), o4827[LinkedList$Entry.next]o4826, o4828[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.next]o4827, o4827[LinkedList$Entry.next]o4825, o4826[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4825, o4828[LinkedList$Entry.previous]o4825, o4826[LinkedList$Entry.previous]o4827, o4828[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.previous]o4825, o4827[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.next]o4828, o4827[LinkedList$Entry.previous]o4828, o4826[LinkedList$Entry.previous]o4828, o4828[LinkedList$Entry.previous]o4828) -> f4723_0_length_Return(EOS(STATIC_4723(java.lang.Object(ARRAY(i1094)), i1097)), i1083, o4827[LinkedList$Entry.next]o4826, o4828[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.next]o4827, o4827[LinkedList$Entry.next]o4825, o4826[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4825, o4828[LinkedList$Entry.previous]o4825, o4826[LinkedList$Entry.previous]o4827, o4828[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.previous]o4825, o4827[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.next]o4828, o4827[LinkedList$Entry.previous]o4828, o4826[LinkedList$Entry.previous]o4828, o4828[LinkedList$Entry.previous]o4828) :|: TRUE 17.12/9.26 f4723_0_length_Return(EOS(STATIC_4723(java.lang.Object(ARRAY(i1094)), i1097)), i1083, o4827[LinkedList$Entry.next]o4826, o4828[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.next]o4827, o4827[LinkedList$Entry.next]o4825, o4826[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4825, o4828[LinkedList$Entry.previous]o4825, o4826[LinkedList$Entry.previous]o4827, o4828[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.previous]o4825, o4827[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.next]o4828, o4827[LinkedList$Entry.previous]o4828, o4826[LinkedList$Entry.previous]o4828, o4828[LinkedList$Entry.previous]o4828) -> f4726_0_random_Return(EOS(STATIC_4726(java.lang.Object(ARRAY(i1094)), i1097)), i1083, o4827[LinkedList$Entry.next]o4826, o4828[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.next]o4827, o4827[LinkedList$Entry.next]o4825, o4826[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4825, o4828[LinkedList$Entry.previous]o4825, o4826[LinkedList$Entry.previous]o4827, o4828[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.previous]o4825, o4827[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.next]o4828, o4827[LinkedList$Entry.previous]o4828, o4826[LinkedList$Entry.previous]o4828, o4828[LinkedList$Entry.previous]o4828) :|: TRUE 17.12/9.26 f4726_0_random_Return(EOS(STATIC_4726(java.lang.Object(ARRAY(i1094)), i1097)), i1083, o4827[LinkedList$Entry.next]o4826, o4828[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.next]o4827, o4827[LinkedList$Entry.next]o4825, o4826[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4825, o4828[LinkedList$Entry.previous]o4825, o4826[LinkedList$Entry.previous]o4827, o4828[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.previous]o4825, o4827[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.next]o4828, o4827[LinkedList$Entry.previous]o4828, o4826[LinkedList$Entry.previous]o4828, o4828[LinkedList$Entry.previous]o4828) -> f4730_0_createList_InvokeMethod(EOS(STATIC_4730(java.lang.Object(ARRAY(i1094)), i1097)), i1083, o4827[LinkedList$Entry.next]o4826, o4828[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.next]o4827, o4827[LinkedList$Entry.next]o4825, o4826[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4825, o4828[LinkedList$Entry.previous]o4825, o4826[LinkedList$Entry.previous]o4827, o4828[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.previous]o4825, o4827[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.next]o4828, o4827[LinkedList$Entry.previous]o4828, o4826[LinkedList$Entry.previous]o4828, o4828[LinkedList$Entry.previous]o4828) :|: TRUE 17.12/9.26 f4730_0_createList_InvokeMethod(EOS(STATIC_4730(java.lang.Object(ARRAY(i1094)), i1097)), i1083, o4827[LinkedList$Entry.next]o4826, o4828[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.next]o4827, o4827[LinkedList$Entry.next]o4825, o4826[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4825, o4828[LinkedList$Entry.previous]o4825, o4826[LinkedList$Entry.previous]o4827, o4828[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.previous]o4825, o4827[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.next]o4828, o4827[LinkedList$Entry.previous]o4828, o4826[LinkedList$Entry.previous]o4828, o4828[LinkedList$Entry.previous]o4828) -> f4733_0__init__Load(EOS(STATIC_4733(java.lang.Object(ARRAY(i1094)), i1097)), i1083, o4827[LinkedList$Entry.next]o4826, o4828[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.next]o4827, o4827[LinkedList$Entry.next]o4825, o4826[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4825, o4828[LinkedList$Entry.previous]o4825, o4826[LinkedList$Entry.previous]o4827, o4828[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.previous]o4825, o4827[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.next]o4828, o4827[LinkedList$Entry.previous]o4828, o4826[LinkedList$Entry.previous]o4828, o4828[LinkedList$Entry.previous]o4828) :|: TRUE 17.12/9.26 f4733_0__init__Load(EOS(STATIC_4733(java.lang.Object(ARRAY(i1094)), i1097)), i1083, o4827[LinkedList$Entry.next]o4826, o4828[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.next]o4827, o4827[LinkedList$Entry.next]o4825, o4826[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4825, o4828[LinkedList$Entry.previous]o4825, o4826[LinkedList$Entry.previous]o4827, o4828[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.previous]o4825, o4827[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.next]o4828, o4827[LinkedList$Entry.previous]o4828, o4826[LinkedList$Entry.previous]o4828, o4828[LinkedList$Entry.previous]o4828) -> f4740_0__init__InvokeMethod(EOS(STATIC_4740(java.lang.Object(ARRAY(i1094)), i1097)), i1083, o4827[LinkedList$Entry.next]o4826, o4828[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.next]o4827, o4827[LinkedList$Entry.next]o4825, o4826[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4825, o4828[LinkedList$Entry.previous]o4825, o4826[LinkedList$Entry.previous]o4827, o4828[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.previous]o4825, o4827[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.next]o4828, o4827[LinkedList$Entry.previous]o4828, o4826[LinkedList$Entry.previous]o4828, o4828[LinkedList$Entry.previous]o4828) :|: TRUE 17.12/9.26 f4740_0__init__InvokeMethod(EOS(STATIC_4740(java.lang.Object(ARRAY(i1094)), i1097)), i1083, o4827[LinkedList$Entry.next]o4826, o4828[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.next]o4827, o4827[LinkedList$Entry.next]o4825, o4826[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4825, o4828[LinkedList$Entry.previous]o4825, o4826[LinkedList$Entry.previous]o4827, o4828[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.previous]o4825, o4827[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.next]o4828, o4827[LinkedList$Entry.previous]o4828, o4826[LinkedList$Entry.previous]o4828, o4828[LinkedList$Entry.previous]o4828) -> f4743_0__init__Load(EOS(STATIC_4743(java.lang.Object(ARRAY(i1094)), i1097)), i1083, o4827[LinkedList$Entry.next]o4826, o4828[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.next]o4827, o4827[LinkedList$Entry.next]o4825, o4826[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4825, o4828[LinkedList$Entry.previous]o4825, o4826[LinkedList$Entry.previous]o4827, o4828[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.previous]o4825, o4827[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.next]o4828, o4827[LinkedList$Entry.previous]o4828, o4826[LinkedList$Entry.previous]o4828, o4828[LinkedList$Entry.previous]o4828) :|: TRUE 17.12/9.26 f4743_0__init__Load(EOS(STATIC_4743(java.lang.Object(ARRAY(i1094)), i1097)), i1083, o4827[LinkedList$Entry.next]o4826, o4828[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.next]o4827, o4827[LinkedList$Entry.next]o4825, o4826[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4825, o4828[LinkedList$Entry.previous]o4825, o4826[LinkedList$Entry.previous]o4827, o4828[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.previous]o4825, o4827[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.next]o4828, o4827[LinkedList$Entry.previous]o4828, o4826[LinkedList$Entry.previous]o4828, o4828[LinkedList$Entry.previous]o4828) -> f4747_0__init__Load(EOS(STATIC_4747(java.lang.Object(ARRAY(i1094)), i1097)), i1083, o4827[LinkedList$Entry.next]o4826, o4828[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.next]o4827, o4827[LinkedList$Entry.next]o4825, o4826[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4825, o4828[LinkedList$Entry.previous]o4825, o4826[LinkedList$Entry.previous]o4827, o4828[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.previous]o4825, o4827[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.next]o4828, o4827[LinkedList$Entry.previous]o4828, o4826[LinkedList$Entry.previous]o4828, o4828[LinkedList$Entry.previous]o4828) :|: TRUE 17.12/9.26 f4747_0__init__Load(EOS(STATIC_4747(java.lang.Object(ARRAY(i1094)), i1097)), i1083, o4827[LinkedList$Entry.next]o4826, o4828[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.next]o4827, o4827[LinkedList$Entry.next]o4825, o4826[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4825, o4828[LinkedList$Entry.previous]o4825, o4826[LinkedList$Entry.previous]o4827, o4828[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.previous]o4825, o4827[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.next]o4828, o4827[LinkedList$Entry.previous]o4828, o4826[LinkedList$Entry.previous]o4828, o4828[LinkedList$Entry.previous]o4828) -> f4751_0__init__FieldAccess(EOS(STATIC_4751(java.lang.Object(ARRAY(i1094)), i1097)), i1083, o4827[LinkedList$Entry.next]o4826, o4828[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.next]o4827, o4827[LinkedList$Entry.next]o4825, o4826[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4825, o4828[LinkedList$Entry.previous]o4825, o4826[LinkedList$Entry.previous]o4827, o4828[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.previous]o4825, o4827[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.next]o4828, o4827[LinkedList$Entry.previous]o4828, o4826[LinkedList$Entry.previous]o4828, o4828[LinkedList$Entry.previous]o4828) :|: TRUE 17.12/9.26 f4751_0__init__FieldAccess(EOS(STATIC_4751(java.lang.Object(ARRAY(i1094)), i1097)), i1083, o4827[LinkedList$Entry.next]o4826, o4828[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.next]o4827, o4827[LinkedList$Entry.next]o4825, o4826[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4825, o4828[LinkedList$Entry.previous]o4825, o4826[LinkedList$Entry.previous]o4827, o4828[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.previous]o4825, o4827[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.next]o4828, o4827[LinkedList$Entry.previous]o4828, o4826[LinkedList$Entry.previous]o4828, o4828[LinkedList$Entry.previous]o4828) -> f4755_0__init__Return(EOS(STATIC_4755(java.lang.Object(ARRAY(i1094)), i1097)), i1083, o4827[LinkedList$Entry.next]o4826, o4828[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.next]o4827, o4827[LinkedList$Entry.next]o4825, o4826[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4825, o4828[LinkedList$Entry.previous]o4825, o4826[LinkedList$Entry.previous]o4827, o4828[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.previous]o4825, o4827[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.next]o4828, o4827[LinkedList$Entry.previous]o4828, o4826[LinkedList$Entry.previous]o4828, o4828[LinkedList$Entry.previous]o4828) :|: TRUE 17.12/9.26 f4755_0__init__Return(EOS(STATIC_4755(java.lang.Object(ARRAY(i1094)), i1097)), i1083, o4827[LinkedList$Entry.next]o4826, o4828[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.next]o4827, o4827[LinkedList$Entry.next]o4825, o4826[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4825, o4828[LinkedList$Entry.previous]o4825, o4826[LinkedList$Entry.previous]o4827, o4828[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.previous]o4825, o4827[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.next]o4828, o4827[LinkedList$Entry.previous]o4828, o4826[LinkedList$Entry.previous]o4828, o4828[LinkedList$Entry.previous]o4828) -> f4759_0_createList_InvokeMethod(EOS(STATIC_4759(java.lang.Object(ARRAY(i1094)), i1097)), i1083, o4827[LinkedList$Entry.next]o4826, o4828[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.next]o4827, o4827[LinkedList$Entry.next]o4825, o4826[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4825, o4828[LinkedList$Entry.previous]o4825, o4826[LinkedList$Entry.previous]o4827, o4828[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.previous]o4825, o4827[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.next]o4828, o4827[LinkedList$Entry.previous]o4828, o4826[LinkedList$Entry.previous]o4828, o4828[LinkedList$Entry.previous]o4828) :|: TRUE 17.12/9.26 f4759_0_createList_InvokeMethod(EOS(STATIC_4759(java.lang.Object(ARRAY(i1094)), i1097)), i1083, o4827[LinkedList$Entry.next]o4826, o4828[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.next]o4827, o4827[LinkedList$Entry.next]o4825, o4826[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4825, o4828[LinkedList$Entry.previous]o4825, o4826[LinkedList$Entry.previous]o4827, o4828[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.previous]o4825, o4827[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.next]o4828, o4827[LinkedList$Entry.previous]o4828, o4826[LinkedList$Entry.previous]o4828, o4828[LinkedList$Entry.previous]o4828) -> f4763_0_addLast_Load(EOS(STATIC_4763(java.lang.Object(ARRAY(i1094)), i1097)), i1083, o4827[LinkedList$Entry.next]o4826, o4828[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.next]o4827, o4827[LinkedList$Entry.next]o4825, o4826[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4825, o4828[LinkedList$Entry.previous]o4825, o4826[LinkedList$Entry.previous]o4827, o4828[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.previous]o4825, o4827[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.next]o4828, o4827[LinkedList$Entry.previous]o4828, o4826[LinkedList$Entry.previous]o4828, o4828[LinkedList$Entry.previous]o4828) :|: TRUE 17.12/9.26 f4763_0_addLast_Load(EOS(STATIC_4763(java.lang.Object(ARRAY(i1094)), i1097)), i1083, o4827[LinkedList$Entry.next]o4826, o4828[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.next]o4827, o4827[LinkedList$Entry.next]o4825, o4826[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4825, o4828[LinkedList$Entry.previous]o4825, o4826[LinkedList$Entry.previous]o4827, o4828[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.previous]o4825, o4827[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.next]o4828, o4827[LinkedList$Entry.previous]o4828, o4826[LinkedList$Entry.previous]o4828, o4828[LinkedList$Entry.previous]o4828) -> f4770_0_addLast_Load(EOS(STATIC_4770(java.lang.Object(ARRAY(i1094)), i1097)), i1083, o4827[LinkedList$Entry.next]o4826, o4828[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.next]o4827, o4827[LinkedList$Entry.next]o4825, o4826[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4825, o4828[LinkedList$Entry.previous]o4825, o4826[LinkedList$Entry.previous]o4827, o4828[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.previous]o4825, o4827[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.next]o4828, o4827[LinkedList$Entry.previous]o4828, o4826[LinkedList$Entry.previous]o4828, o4828[LinkedList$Entry.previous]o4828) :|: TRUE 17.12/9.26 f4770_0_addLast_Load(EOS(STATIC_4770(java.lang.Object(ARRAY(i1094)), i1097)), i1083, o4827[LinkedList$Entry.next]o4826, o4828[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.next]o4827, o4827[LinkedList$Entry.next]o4825, o4826[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4825, o4828[LinkedList$Entry.previous]o4825, o4826[LinkedList$Entry.previous]o4827, o4828[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.previous]o4825, o4827[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.next]o4828, o4827[LinkedList$Entry.previous]o4828, o4826[LinkedList$Entry.previous]o4828, o4828[LinkedList$Entry.previous]o4828) -> f4774_0_addLast_Load(EOS(STATIC_4774(java.lang.Object(ARRAY(i1094)), i1097)), i1083, o4827[LinkedList$Entry.next]o4826, o4828[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.next]o4827, o4827[LinkedList$Entry.next]o4825, o4826[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4825, o4828[LinkedList$Entry.previous]o4825, o4826[LinkedList$Entry.previous]o4827, o4828[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.previous]o4825, o4827[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.next]o4828, o4827[LinkedList$Entry.previous]o4828, o4826[LinkedList$Entry.previous]o4828, o4828[LinkedList$Entry.previous]o4828) :|: TRUE 17.12/9.26 f4774_0_addLast_Load(EOS(STATIC_4774(java.lang.Object(ARRAY(i1094)), i1097)), i1083, o4827[LinkedList$Entry.next]o4826, o4828[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.next]o4827, o4827[LinkedList$Entry.next]o4825, o4826[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4825, o4828[LinkedList$Entry.previous]o4825, o4826[LinkedList$Entry.previous]o4827, o4828[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.previous]o4825, o4827[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.next]o4828, o4827[LinkedList$Entry.previous]o4828, o4826[LinkedList$Entry.previous]o4828, o4828[LinkedList$Entry.previous]o4828) -> f4777_0_addLast_FieldAccess(EOS(STATIC_4777(java.lang.Object(ARRAY(i1094)), i1097)), i1083, o4827[LinkedList$Entry.next]o4826, o4828[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.next]o4827, o4827[LinkedList$Entry.next]o4825, o4826[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4825, o4828[LinkedList$Entry.previous]o4825, o4826[LinkedList$Entry.previous]o4827, o4828[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.previous]o4825, o4827[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.next]o4828, o4827[LinkedList$Entry.previous]o4828, o4826[LinkedList$Entry.previous]o4828, o4828[LinkedList$Entry.previous]o4828) :|: TRUE 17.12/9.26 f4777_0_addLast_FieldAccess(EOS(STATIC_4777(java.lang.Object(ARRAY(i1094)), i1097)), i1083, o4827[LinkedList$Entry.next]o4826, o4828[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.next]o4827, o4827[LinkedList$Entry.next]o4825, o4826[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4825, o4828[LinkedList$Entry.previous]o4825, o4826[LinkedList$Entry.previous]o4827, o4828[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.previous]o4825, o4827[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.next]o4828, o4827[LinkedList$Entry.previous]o4828, o4826[LinkedList$Entry.previous]o4828, o4828[LinkedList$Entry.previous]o4828) -> f4781_0_addLast_InvokeMethod(EOS(STATIC_4781(java.lang.Object(ARRAY(i1094)), i1097)), i1083, o4827[LinkedList$Entry.next]o4826, o4828[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.next]o4827, o4827[LinkedList$Entry.next]o4825, o4826[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4825, o4828[LinkedList$Entry.previous]o4825, o4826[LinkedList$Entry.previous]o4827, o4828[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.previous]o4825, o4827[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.next]o4828, o4827[LinkedList$Entry.previous]o4828, o4826[LinkedList$Entry.previous]o4828, o4828[LinkedList$Entry.previous]o4828) :|: TRUE 17.12/9.26 f4781_0_addLast_InvokeMethod(EOS(STATIC_4781(java.lang.Object(ARRAY(i1094)), i1097)), i1083, o4827[LinkedList$Entry.next]o4826, o4828[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.next]o4827, o4827[LinkedList$Entry.next]o4825, o4826[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4825, o4828[LinkedList$Entry.previous]o4825, o4826[LinkedList$Entry.previous]o4827, o4828[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.previous]o4825, o4827[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.next]o4828, o4827[LinkedList$Entry.previous]o4828, o4826[LinkedList$Entry.previous]o4828, o4828[LinkedList$Entry.previous]o4828) -> f4783_0_addBefore_New(EOS(STATIC_4783(java.lang.Object(ARRAY(i1094)), i1097)), i1083, o4827[LinkedList$Entry.next]o4826, o4828[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.next]o4827, o4827[LinkedList$Entry.next]o4825, o4826[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4825, o4828[LinkedList$Entry.previous]o4825, o4826[LinkedList$Entry.previous]o4827, o4828[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.previous]o4825, o4827[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.next]o4828, o4827[LinkedList$Entry.previous]o4828, o4826[LinkedList$Entry.previous]o4828, o4828[LinkedList$Entry.previous]o4828) :|: TRUE 17.12/9.26 f4783_0_addBefore_New(EOS(STATIC_4783(java.lang.Object(ARRAY(i1094)), i1097)), i1083, o4827[LinkedList$Entry.next]o4826, o4828[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.next]o4827, o4827[LinkedList$Entry.next]o4825, o4826[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4825, o4828[LinkedList$Entry.previous]o4825, o4826[LinkedList$Entry.previous]o4827, o4828[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.previous]o4825, o4827[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.next]o4828, o4827[LinkedList$Entry.previous]o4828, o4826[LinkedList$Entry.previous]o4828, o4828[LinkedList$Entry.previous]o4828) -> f4787_0_addBefore_Duplicate(EOS(STATIC_4787(java.lang.Object(ARRAY(i1094)), i1097)), i1083, o4827[LinkedList$Entry.next]o4826, o4828[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.next]o4827, o4827[LinkedList$Entry.next]o4825, o4826[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4825, o4828[LinkedList$Entry.previous]o4825, o4826[LinkedList$Entry.previous]o4827, o4828[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.previous]o4825, o4827[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.next]o4828, o4827[LinkedList$Entry.previous]o4828, o4826[LinkedList$Entry.previous]o4828, o4828[LinkedList$Entry.previous]o4828) :|: TRUE 17.12/9.26 f4787_0_addBefore_Duplicate(EOS(STATIC_4787(java.lang.Object(ARRAY(i1094)), i1097)), i1083, o4827[LinkedList$Entry.next]o4826, o4828[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.next]o4827, o4827[LinkedList$Entry.next]o4825, o4826[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4825, o4828[LinkedList$Entry.previous]o4825, o4826[LinkedList$Entry.previous]o4827, o4828[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.previous]o4825, o4827[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.next]o4828, o4827[LinkedList$Entry.previous]o4828, o4826[LinkedList$Entry.previous]o4828, o4828[LinkedList$Entry.previous]o4828) -> f4789_0_addBefore_Load(EOS(STATIC_4789(java.lang.Object(ARRAY(i1094)), i1097)), i1083, o4827[LinkedList$Entry.next]o4826, o4828[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.next]o4827, o4827[LinkedList$Entry.next]o4825, o4826[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4825, o4828[LinkedList$Entry.previous]o4825, o4826[LinkedList$Entry.previous]o4827, o4828[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.previous]o4825, o4827[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.next]o4828, o4827[LinkedList$Entry.previous]o4828, o4826[LinkedList$Entry.previous]o4828, o4828[LinkedList$Entry.previous]o4828) :|: TRUE 17.12/9.26 f4789_0_addBefore_Load(EOS(STATIC_4789(java.lang.Object(ARRAY(i1094)), i1097)), i1083, o4827[LinkedList$Entry.next]o4826, o4828[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.next]o4827, o4827[LinkedList$Entry.next]o4825, o4826[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4825, o4828[LinkedList$Entry.previous]o4825, o4826[LinkedList$Entry.previous]o4827, o4828[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.previous]o4825, o4827[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.next]o4828, o4827[LinkedList$Entry.previous]o4828, o4826[LinkedList$Entry.previous]o4828, o4828[LinkedList$Entry.previous]o4828) -> f4790_0_addBefore_Load(EOS(STATIC_4790(java.lang.Object(ARRAY(i1094)), i1097)), i1083, o4827[LinkedList$Entry.next]o4826, o4828[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.next]o4827, o4827[LinkedList$Entry.next]o4825, o4826[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4825, o4828[LinkedList$Entry.previous]o4825, o4826[LinkedList$Entry.previous]o4827, o4828[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.previous]o4825, o4827[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.next]o4828, o4827[LinkedList$Entry.previous]o4828, o4826[LinkedList$Entry.previous]o4828, o4828[LinkedList$Entry.previous]o4828) :|: TRUE 17.12/9.26 f4790_0_addBefore_Load(EOS(STATIC_4790(java.lang.Object(ARRAY(i1094)), i1097)), i1083, o4827[LinkedList$Entry.next]o4826, o4828[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.next]o4827, o4827[LinkedList$Entry.next]o4825, o4826[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4825, o4828[LinkedList$Entry.previous]o4825, o4826[LinkedList$Entry.previous]o4827, o4828[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.previous]o4825, o4827[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.next]o4828, o4827[LinkedList$Entry.previous]o4828, o4826[LinkedList$Entry.previous]o4828, o4828[LinkedList$Entry.previous]o4828) -> f4792_0_addBefore_Load(EOS(STATIC_4792(java.lang.Object(ARRAY(i1094)), i1097)), i1083, o4827[LinkedList$Entry.next]o4826, o4828[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.next]o4827, o4827[LinkedList$Entry.next]o4825, o4826[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4825, o4828[LinkedList$Entry.previous]o4825, o4826[LinkedList$Entry.previous]o4827, o4828[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.previous]o4825, o4827[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.next]o4828, o4827[LinkedList$Entry.previous]o4828, o4826[LinkedList$Entry.previous]o4828, o4828[LinkedList$Entry.previous]o4828) :|: TRUE 17.12/9.26 f4792_0_addBefore_Load(EOS(STATIC_4792(java.lang.Object(ARRAY(i1094)), i1097)), i1083, o4827[LinkedList$Entry.next]o4826, o4828[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.next]o4827, o4827[LinkedList$Entry.next]o4825, o4826[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4825, o4828[LinkedList$Entry.previous]o4825, o4826[LinkedList$Entry.previous]o4827, o4828[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.previous]o4825, o4827[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.next]o4828, o4827[LinkedList$Entry.previous]o4828, o4826[LinkedList$Entry.previous]o4828, o4828[LinkedList$Entry.previous]o4828) -> f4793_0_addBefore_FieldAccess(EOS(STATIC_4793(java.lang.Object(ARRAY(i1094)), i1097)), i1083, o4827[LinkedList$Entry.next]o4826, o4828[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.next]o4827, o4827[LinkedList$Entry.next]o4825, o4826[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4825, o4828[LinkedList$Entry.previous]o4825, o4826[LinkedList$Entry.previous]o4827, o4828[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.previous]o4825, o4827[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.next]o4828, o4827[LinkedList$Entry.previous]o4828, o4826[LinkedList$Entry.previous]o4828, o4828[LinkedList$Entry.previous]o4828) :|: TRUE 17.12/9.26 f4793_0_addBefore_FieldAccess(EOS(STATIC_4793(java.lang.Object(ARRAY(i1094)), i1097)), i1083, o4827[LinkedList$Entry.next]o4826, o4828[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.next]o4827, o4827[LinkedList$Entry.next]o4825, o4826[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4825, o4828[LinkedList$Entry.previous]o4825, o4826[LinkedList$Entry.previous]o4827, o4828[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.previous]o4825, o4827[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.next]o4828, o4827[LinkedList$Entry.previous]o4828, o4826[LinkedList$Entry.previous]o4828, o4828[LinkedList$Entry.previous]o4828) -> f4794_0_addBefore_FieldAccess(EOS(STATIC_4794(java.lang.Object(ARRAY(i1094)), i1097)), i1083, o4827[LinkedList$Entry.next]o4826, o4828[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.next]o4827, o4827[LinkedList$Entry.next]o4825, o4826[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4825, o4828[LinkedList$Entry.previous]o4825, o4826[LinkedList$Entry.previous]o4827, o4828[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.previous]o4825, o4827[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.next]o4828, o4827[LinkedList$Entry.previous]o4828, o4826[LinkedList$Entry.previous]o4828, o4828[LinkedList$Entry.previous]o4828) :|: o4827[LinkedList$Entry.next]o4827 > 0 && o4827[LinkedList$Entry.next]o4825 > 0 && o4827[LinkedList$Entry.previous]o4825 > 0 && o4827[LinkedList$Entry.previous]o4827 > 0 17.12/9.26 f4794_0_addBefore_FieldAccess(EOS(STATIC_4794(java.lang.Object(ARRAY(i1094)), i1097)), i1083, o4827[LinkedList$Entry.next]o4826, o4828[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.next]o4827, o4827[LinkedList$Entry.next]o4825, o4826[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4825, o4828[LinkedList$Entry.previous]o4825, o4826[LinkedList$Entry.previous]o4827, o4828[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.previous]o4825, o4827[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.next]o4828, o4827[LinkedList$Entry.previous]o4828, o4826[LinkedList$Entry.previous]o4828, o4828[LinkedList$Entry.previous]o4828) -> f4796_0_addBefore_FieldAccess(EOS(STATIC_4796(java.lang.Object(ARRAY(i1094)), i1097)), i1083, o4827[LinkedList$Entry.next]o4826, o4828[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.next]o4827, o4827[LinkedList$Entry.next]o4825, o4826[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4825, o4828[LinkedList$Entry.previous]o4825, o4826[LinkedList$Entry.previous]o4827, o4828[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.previous]o4825, o4827[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.next]o4828, o4827[LinkedList$Entry.previous]o4828, o4826[LinkedList$Entry.previous]o4828, o4828[LinkedList$Entry.previous]o4828) :|: o4826[LinkedList$Entry.previous]o4826 > 0 && o4826[LinkedList$Entry.previous]o4825 > 0 17.12/9.26 f4796_0_addBefore_FieldAccess(EOS(STATIC_4796(java.lang.Object(ARRAY(i1094)), i1097)), i1083, o4827[LinkedList$Entry.next]o4826, o4828[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.next]o4827, o4827[LinkedList$Entry.next]o4825, o4826[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4825, o4828[LinkedList$Entry.previous]o4825, o4826[LinkedList$Entry.previous]o4827, o4828[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.previous]o4825, o4827[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.next]o4828, o4827[LinkedList$Entry.previous]o4828, o4826[LinkedList$Entry.previous]o4828, o4828[LinkedList$Entry.previous]o4828) -> f4798_0_addBefore_FieldAccess(EOS(STATIC_4798(java.lang.Object(ARRAY(i1094)), i1097)), i1083, o4827[LinkedList$Entry.next]o4826, o4828[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.next]o4827, o4827[LinkedList$Entry.next]o4825, o4826[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4825, o4828[LinkedList$Entry.previous]o4825, o4826[LinkedList$Entry.previous]o4827, o4828[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.previous]o4825, o4827[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.next]o4828, o4827[LinkedList$Entry.previous]o4828, o4826[LinkedList$Entry.previous]o4828, o4828[LinkedList$Entry.previous]o4828) :|: o4828[LinkedList$Entry.previous]o4825 > 0 && o4828[LinkedList$Entry.previous]o4828 > 0 17.12/9.26 f4798_0_addBefore_FieldAccess(EOS(STATIC_4798(java.lang.Object(ARRAY(i1094)), i1097)), i1083, o4827[LinkedList$Entry.next]o4826, o4828[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.next]o4827, o4827[LinkedList$Entry.next]o4825, o4826[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4825, o4828[LinkedList$Entry.previous]o4825, o4826[LinkedList$Entry.previous]o4827, o4828[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.previous]o4825, o4827[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.next]o4828, o4827[LinkedList$Entry.previous]o4828, o4826[LinkedList$Entry.previous]o4828, o4828[LinkedList$Entry.previous]o4828) -> f4800_0_addBefore_InvokeMethod(EOS(STATIC_4800(java.lang.Object(ARRAY(i1094)), i1097)), i1083, o4827[LinkedList$Entry.next]o4826, o4828[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.next]o4827, o4827[LinkedList$Entry.next]o4825, o4826[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4825, o4828[LinkedList$Entry.previous]o4825, o4826[LinkedList$Entry.previous]o4827, o4828[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.previous]o4825, o4827[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.next]o4828, o4827[LinkedList$Entry.previous]o4828, o4826[LinkedList$Entry.previous]o4828, o4828[LinkedList$Entry.previous]o4828) :|: TRUE 17.12/9.26 f4800_0_addBefore_InvokeMethod(EOS(STATIC_4800(java.lang.Object(ARRAY(i1094)), i1097)), i1083, o4827[LinkedList$Entry.next]o4826, o4828[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.next]o4827, o4827[LinkedList$Entry.next]o4825, o4826[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4825, o4828[LinkedList$Entry.previous]o4825, o4826[LinkedList$Entry.previous]o4827, o4828[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.previous]o4825, o4827[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.next]o4828, o4827[LinkedList$Entry.previous]o4828, o4826[LinkedList$Entry.previous]o4828, o4828[LinkedList$Entry.previous]o4828) -> f4801_0__init__Load(EOS(STATIC_4801(java.lang.Object(ARRAY(i1094)), i1097)), i1083, o4827[LinkedList$Entry.next]o4826, o4828[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.next]o4827, o4827[LinkedList$Entry.next]o4825, o4826[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4825, o4828[LinkedList$Entry.previous]o4825, o4826[LinkedList$Entry.previous]o4827, o4828[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.previous]o4825, o4827[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.next]o4828, o4827[LinkedList$Entry.previous]o4828, o4826[LinkedList$Entry.previous]o4828, o4828[LinkedList$Entry.previous]o4828) :|: TRUE 17.12/9.26 f4801_0__init__Load(EOS(STATIC_4801(java.lang.Object(ARRAY(i1094)), i1097)), i1083, o4827[LinkedList$Entry.next]o4826, o4828[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.next]o4827, o4827[LinkedList$Entry.next]o4825, o4826[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4825, o4828[LinkedList$Entry.previous]o4825, o4826[LinkedList$Entry.previous]o4827, o4828[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.previous]o4825, o4827[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.next]o4828, o4827[LinkedList$Entry.previous]o4828, o4826[LinkedList$Entry.previous]o4828, o4828[LinkedList$Entry.previous]o4828) -> f4802_0__init__InvokeMethod(EOS(STATIC_4802(java.lang.Object(ARRAY(i1094)), i1097)), i1083, o4827[LinkedList$Entry.next]o4826, o4828[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.next]o4827, o4827[LinkedList$Entry.next]o4825, o4826[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4825, o4828[LinkedList$Entry.previous]o4825, o4826[LinkedList$Entry.previous]o4827, o4828[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.previous]o4825, o4827[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.next]o4828, o4827[LinkedList$Entry.previous]o4828, o4826[LinkedList$Entry.previous]o4828, o4828[LinkedList$Entry.previous]o4828) :|: TRUE 17.12/9.26 f4802_0__init__InvokeMethod(EOS(STATIC_4802(java.lang.Object(ARRAY(i1094)), i1097)), i1083, o4827[LinkedList$Entry.next]o4826, o4828[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.next]o4827, o4827[LinkedList$Entry.next]o4825, o4826[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4825, o4828[LinkedList$Entry.previous]o4825, o4826[LinkedList$Entry.previous]o4827, o4828[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.previous]o4825, o4827[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.next]o4828, o4827[LinkedList$Entry.previous]o4828, o4826[LinkedList$Entry.previous]o4828, o4828[LinkedList$Entry.previous]o4828) -> f4803_0__init__Load(EOS(STATIC_4803(java.lang.Object(ARRAY(i1094)), i1097)), i1083, o4827[LinkedList$Entry.next]o4826, o4828[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.next]o4827, o4827[LinkedList$Entry.next]o4825, o4826[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4825, o4828[LinkedList$Entry.previous]o4825, o4826[LinkedList$Entry.previous]o4827, o4828[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.previous]o4825, o4827[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.next]o4828, o4827[LinkedList$Entry.previous]o4828, o4826[LinkedList$Entry.previous]o4828, o4828[LinkedList$Entry.previous]o4828) :|: TRUE 17.12/9.26 f4803_0__init__Load(EOS(STATIC_4803(java.lang.Object(ARRAY(i1094)), i1097)), i1083, o4827[LinkedList$Entry.next]o4826, o4828[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.next]o4827, o4827[LinkedList$Entry.next]o4825, o4826[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4825, o4828[LinkedList$Entry.previous]o4825, o4826[LinkedList$Entry.previous]o4827, o4828[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.previous]o4825, o4827[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.next]o4828, o4827[LinkedList$Entry.previous]o4828, o4826[LinkedList$Entry.previous]o4828, o4828[LinkedList$Entry.previous]o4828) -> f4804_0__init__Load(EOS(STATIC_4804(java.lang.Object(ARRAY(i1094)), i1097)), i1083, o4827[LinkedList$Entry.next]o4826, o4828[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.next]o4827, o4827[LinkedList$Entry.next]o4825, o4826[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4825, o4828[LinkedList$Entry.previous]o4825, o4826[LinkedList$Entry.previous]o4827, o4828[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.previous]o4825, o4827[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.next]o4828, o4827[LinkedList$Entry.previous]o4828, o4826[LinkedList$Entry.previous]o4828, o4828[LinkedList$Entry.previous]o4828) :|: TRUE 17.12/9.26 f4804_0__init__Load(EOS(STATIC_4804(java.lang.Object(ARRAY(i1094)), i1097)), i1083, o4827[LinkedList$Entry.next]o4826, o4828[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.next]o4827, o4827[LinkedList$Entry.next]o4825, o4826[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4825, o4828[LinkedList$Entry.previous]o4825, o4826[LinkedList$Entry.previous]o4827, o4828[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.previous]o4825, o4827[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.next]o4828, o4827[LinkedList$Entry.previous]o4828, o4826[LinkedList$Entry.previous]o4828, o4828[LinkedList$Entry.previous]o4828) -> f4805_0__init__FieldAccess(EOS(STATIC_4805(java.lang.Object(ARRAY(i1094)), i1097)), i1083, o4827[LinkedList$Entry.next]o4826, o4828[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.next]o4827, o4827[LinkedList$Entry.next]o4825, o4826[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4825, o4828[LinkedList$Entry.previous]o4825, o4826[LinkedList$Entry.previous]o4827, o4828[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.previous]o4825, o4827[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.next]o4828, o4827[LinkedList$Entry.previous]o4828, o4826[LinkedList$Entry.previous]o4828, o4828[LinkedList$Entry.previous]o4828) :|: TRUE 17.12/9.26 f4805_0__init__FieldAccess(EOS(STATIC_4805(java.lang.Object(ARRAY(i1094)), i1097)), i1083, o4827[LinkedList$Entry.next]o4826, o4828[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.next]o4827, o4827[LinkedList$Entry.next]o4825, o4826[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4825, o4828[LinkedList$Entry.previous]o4825, o4826[LinkedList$Entry.previous]o4827, o4828[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.previous]o4825, o4827[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.next]o4828, o4827[LinkedList$Entry.previous]o4828, o4826[LinkedList$Entry.previous]o4828, o4828[LinkedList$Entry.previous]o4828) -> f4806_0__init__Load(EOS(STATIC_4806(java.lang.Object(ARRAY(i1094)), i1097)), i1083, o4827[LinkedList$Entry.next]o4826, o4828[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.next]o4827, o4827[LinkedList$Entry.next]o4825, o4826[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4825, o4828[LinkedList$Entry.previous]o4825, o4826[LinkedList$Entry.previous]o4827, o4828[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.previous]o4825, o4827[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.next]o4828, o4827[LinkedList$Entry.previous]o4828, o4826[LinkedList$Entry.previous]o4828, o4828[LinkedList$Entry.previous]o4828) :|: TRUE 17.12/9.26 f4806_0__init__Load(EOS(STATIC_4806(java.lang.Object(ARRAY(i1094)), i1097)), i1083, o4827[LinkedList$Entry.next]o4826, o4828[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.next]o4827, o4827[LinkedList$Entry.next]o4825, o4826[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4825, o4828[LinkedList$Entry.previous]o4825, o4826[LinkedList$Entry.previous]o4827, o4828[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.previous]o4825, o4827[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.next]o4828, o4827[LinkedList$Entry.previous]o4828, o4826[LinkedList$Entry.previous]o4828, o4828[LinkedList$Entry.previous]o4828) -> f4807_0__init__Load(EOS(STATIC_4807(java.lang.Object(ARRAY(i1094)), i1097)), i1083, o4827[LinkedList$Entry.next]o4826, o4828[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.next]o4827, o4827[LinkedList$Entry.next]o4825, o4826[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4825, o4828[LinkedList$Entry.previous]o4825, o4826[LinkedList$Entry.previous]o4827, o4828[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.previous]o4825, o4827[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.next]o4828, o4827[LinkedList$Entry.previous]o4828, o4826[LinkedList$Entry.previous]o4828, o4828[LinkedList$Entry.previous]o4828) :|: TRUE 17.12/9.26 f4807_0__init__Load(EOS(STATIC_4807(java.lang.Object(ARRAY(i1094)), i1097)), i1083, o4827[LinkedList$Entry.next]o4826, o4828[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.next]o4827, o4827[LinkedList$Entry.next]o4825, o4826[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4825, o4828[LinkedList$Entry.previous]o4825, o4826[LinkedList$Entry.previous]o4827, o4828[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.previous]o4825, o4827[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.next]o4828, o4827[LinkedList$Entry.previous]o4828, o4826[LinkedList$Entry.previous]o4828, o4828[LinkedList$Entry.previous]o4828) -> f4808_0__init__FieldAccess(EOS(STATIC_4808(java.lang.Object(ARRAY(i1094)), i1097)), i1083, o4827[LinkedList$Entry.next]o4826, o4828[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.next]o4827, o4827[LinkedList$Entry.next]o4825, o4826[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4825, o4828[LinkedList$Entry.previous]o4825, o4826[LinkedList$Entry.previous]o4827, o4828[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.previous]o4825, o4827[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.next]o4828, o4827[LinkedList$Entry.previous]o4828, o4826[LinkedList$Entry.previous]o4828, o4828[LinkedList$Entry.previous]o4828) :|: TRUE 17.12/9.26 f4808_0__init__FieldAccess(EOS(STATIC_4808(java.lang.Object(ARRAY(i1094)), i1097)), i1083, o4827[LinkedList$Entry.next]o4826, o4828[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.next]o4827, o4827[LinkedList$Entry.next]o4825, o4826[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4825, o4828[LinkedList$Entry.previous]o4825, o4826[LinkedList$Entry.previous]o4827, o4828[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.previous]o4825, o4827[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.next]o4828, o4827[LinkedList$Entry.previous]o4828, o4826[LinkedList$Entry.previous]o4828, o4828[LinkedList$Entry.previous]o4828) -> f4809_0__init__Load(EOS(STATIC_4809(java.lang.Object(ARRAY(i1094)), i1097)), i1083, o4827[LinkedList$Entry.next]o4826, o4828[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.next]o4827, o4827[LinkedList$Entry.next]o4825, o4826[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4825, o4828[LinkedList$Entry.previous]o4825, o4826[LinkedList$Entry.previous]o4827, o4828[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.previous]o4825, o4827[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.next]o4828, o4827[LinkedList$Entry.previous]o4828, o4826[LinkedList$Entry.previous]o4828, o4828[LinkedList$Entry.previous]o4828) :|: TRUE 17.12/9.26 f4809_0__init__Load(EOS(STATIC_4809(java.lang.Object(ARRAY(i1094)), i1097)), i1083, o4827[LinkedList$Entry.next]o4826, o4828[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.next]o4827, o4827[LinkedList$Entry.next]o4825, o4826[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4825, o4828[LinkedList$Entry.previous]o4825, o4826[LinkedList$Entry.previous]o4827, o4828[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.previous]o4825, o4827[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.next]o4828, o4827[LinkedList$Entry.previous]o4828, o4826[LinkedList$Entry.previous]o4828, o4828[LinkedList$Entry.previous]o4828) -> f4810_0__init__Load(EOS(STATIC_4810(java.lang.Object(ARRAY(i1094)), i1097)), i1083, o4827[LinkedList$Entry.next]o4826, o4828[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.next]o4827, o4827[LinkedList$Entry.next]o4825, o4826[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4825, o4828[LinkedList$Entry.previous]o4825, o4826[LinkedList$Entry.previous]o4827, o4828[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.previous]o4825, o4827[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.next]o4828, o4827[LinkedList$Entry.previous]o4828, o4826[LinkedList$Entry.previous]o4828, o4828[LinkedList$Entry.previous]o4828) :|: TRUE 17.12/9.26 f4810_0__init__Load(EOS(STATIC_4810(java.lang.Object(ARRAY(i1094)), i1097)), i1083, o4827[LinkedList$Entry.next]o4826, o4828[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.next]o4827, o4827[LinkedList$Entry.next]o4825, o4826[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4825, o4828[LinkedList$Entry.previous]o4825, o4826[LinkedList$Entry.previous]o4827, o4828[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.previous]o4825, o4827[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.next]o4828, o4827[LinkedList$Entry.previous]o4828, o4826[LinkedList$Entry.previous]o4828, o4828[LinkedList$Entry.previous]o4828) -> f4811_0__init__FieldAccess(EOS(STATIC_4811(java.lang.Object(ARRAY(i1094)), i1097)), i1083, o4827[LinkedList$Entry.next]o4826, o4828[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.next]o4827, o4827[LinkedList$Entry.next]o4825, o4826[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4825, o4828[LinkedList$Entry.previous]o4825, o4826[LinkedList$Entry.previous]o4827, o4828[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.previous]o4825, o4827[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.next]o4828, o4827[LinkedList$Entry.previous]o4828, o4826[LinkedList$Entry.previous]o4828, o4828[LinkedList$Entry.previous]o4828) :|: TRUE 17.12/9.26 f4811_0__init__FieldAccess(EOS(STATIC_4811(java.lang.Object(ARRAY(i1094)), i1097)), i1083, o4827[LinkedList$Entry.next]o4826, o4828[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.next]o4827, o4827[LinkedList$Entry.next]o4825, o4826[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4825, o4828[LinkedList$Entry.previous]o4825, o4826[LinkedList$Entry.previous]o4827, o4828[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.previous]o4825, o4827[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.next]o4828, o4827[LinkedList$Entry.previous]o4828, o4826[LinkedList$Entry.previous]o4828, o4828[LinkedList$Entry.previous]o4828) -> f4812_0__init__Return(EOS(STATIC_4812(java.lang.Object(ARRAY(i1094)), i1097)), i1083, o4827[LinkedList$Entry.next]o4826, o4828[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.next]o4827, o4827[LinkedList$Entry.next]o4825, o4826[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4825, o4828[LinkedList$Entry.previous]o4825, o4826[LinkedList$Entry.previous]o4827, o4828[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.previous]o4825, o4827[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.next]o4828, o4827[LinkedList$Entry.previous]o4828, o4826[LinkedList$Entry.previous]o4828, o4828[LinkedList$Entry.previous]o4828) :|: TRUE 17.12/9.26 f4812_0__init__Return(EOS(STATIC_4812(java.lang.Object(ARRAY(i1094)), i1097)), i1083, o4827[LinkedList$Entry.next]o4826, o4828[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.next]o4827, o4827[LinkedList$Entry.next]o4825, o4826[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4825, o4828[LinkedList$Entry.previous]o4825, o4826[LinkedList$Entry.previous]o4827, o4828[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.previous]o4825, o4827[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.next]o4828, o4827[LinkedList$Entry.previous]o4828, o4826[LinkedList$Entry.previous]o4828, o4828[LinkedList$Entry.previous]o4828) -> f4813_0_addBefore_Store(EOS(STATIC_4813(java.lang.Object(ARRAY(i1094)), i1097)), i1083, o4827[LinkedList$Entry.next]o4826, o4828[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.next]o4827, o4827[LinkedList$Entry.next]o4825, o4826[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4825, o4828[LinkedList$Entry.previous]o4825, o4826[LinkedList$Entry.previous]o4827, o4828[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.previous]o4825, o4827[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.next]o4828, o4827[LinkedList$Entry.previous]o4828, o4826[LinkedList$Entry.previous]o4828, o4828[LinkedList$Entry.previous]o4828) :|: TRUE 17.12/9.26 f4813_0_addBefore_Store(EOS(STATIC_4813(java.lang.Object(ARRAY(i1094)), i1097)), i1083, o4827[LinkedList$Entry.next]o4826, o4828[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.next]o4827, o4827[LinkedList$Entry.next]o4825, o4826[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4825, o4828[LinkedList$Entry.previous]o4825, o4826[LinkedList$Entry.previous]o4827, o4828[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.previous]o4825, o4827[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.next]o4828, o4827[LinkedList$Entry.previous]o4828, o4826[LinkedList$Entry.previous]o4828, o4828[LinkedList$Entry.previous]o4828) -> f4814_0_addBefore_Load(EOS(STATIC_4814(java.lang.Object(ARRAY(i1094)), i1097)), i1083, o4827[LinkedList$Entry.next]o4826, o4828[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.next]o4827, o4827[LinkedList$Entry.next]o4825, o4826[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4825, o4828[LinkedList$Entry.previous]o4825, o4826[LinkedList$Entry.previous]o4827, o4828[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.previous]o4825, o4827[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.next]o4828, o4827[LinkedList$Entry.previous]o4828, o4826[LinkedList$Entry.previous]o4828, o4828[LinkedList$Entry.previous]o4828) :|: TRUE 17.12/9.26 f4814_0_addBefore_Load(EOS(STATIC_4814(java.lang.Object(ARRAY(i1094)), i1097)), i1083, o4827[LinkedList$Entry.next]o4826, o4828[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.next]o4827, o4827[LinkedList$Entry.next]o4825, o4826[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4825, o4828[LinkedList$Entry.previous]o4825, o4826[LinkedList$Entry.previous]o4827, o4828[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.previous]o4825, o4827[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.next]o4828, o4827[LinkedList$Entry.previous]o4828, o4826[LinkedList$Entry.previous]o4828, o4828[LinkedList$Entry.previous]o4828) -> f4815_0_addBefore_FieldAccess(EOS(STATIC_4815(java.lang.Object(ARRAY(i1094)), i1097)), i1083, o4827[LinkedList$Entry.next]o4826, o4828[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.next]o4827, o4827[LinkedList$Entry.next]o4825, o4826[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4825, o4828[LinkedList$Entry.previous]o4825, o4826[LinkedList$Entry.previous]o4827, o4828[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.previous]o4825, o4827[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.next]o4828, o4827[LinkedList$Entry.previous]o4828, o4826[LinkedList$Entry.previous]o4828, o4828[LinkedList$Entry.previous]o4828) :|: TRUE 17.12/9.26 f4815_0_addBefore_FieldAccess(EOS(STATIC_4815(java.lang.Object(ARRAY(i1094)), i1097)), i1083, o4827[LinkedList$Entry.next]o4826, o4828[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.next]o4827, o4827[LinkedList$Entry.next]o4825, o4826[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4825, o4828[LinkedList$Entry.previous]o4825, o4826[LinkedList$Entry.previous]o4827, o4828[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.previous]o4825, o4827[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.next]o4828, o4827[LinkedList$Entry.previous]o4828, o4826[LinkedList$Entry.previous]o4828, o4828[LinkedList$Entry.previous]o4828) -> f4816_0_addBefore_Load(EOS(STATIC_4816(java.lang.Object(ARRAY(i1094)), i1097)), i1083, o4827[LinkedList$Entry.next]o4826, o4828[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.next]o4827, o4827[LinkedList$Entry.next]o4825, o4826[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4825, o4828[LinkedList$Entry.previous]o4825, o4826[LinkedList$Entry.previous]o4827, o4828[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.previous]o4825, o4827[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.next]o4828, o4827[LinkedList$Entry.previous]o4828, o4826[LinkedList$Entry.previous]o4828, o4828[LinkedList$Entry.previous]o4828) :|: TRUE 17.12/9.26 f4816_0_addBefore_Load(EOS(STATIC_4816(java.lang.Object(ARRAY(i1094)), i1097)), i1083, o4827[LinkedList$Entry.next]o4826, o4828[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.next]o4827, o4827[LinkedList$Entry.next]o4825, o4826[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4825, o4828[LinkedList$Entry.previous]o4825, o4826[LinkedList$Entry.previous]o4827, o4828[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.previous]o4825, o4827[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.next]o4828, o4827[LinkedList$Entry.previous]o4828, o4826[LinkedList$Entry.previous]o4828, o4828[LinkedList$Entry.previous]o4828) -> f4817_0_addBefore_FieldAccess(EOS(STATIC_4817(java.lang.Object(ARRAY(i1094)), i1097)), i1083, o4827[LinkedList$Entry.next]o4826, o4828[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.next]o4827, o4827[LinkedList$Entry.next]o4825, o4826[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4825, o4828[LinkedList$Entry.previous]o4825, o4826[LinkedList$Entry.previous]o4827, o4828[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.previous]o4825, o4827[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.next]o4828, o4827[LinkedList$Entry.previous]o4828, o4826[LinkedList$Entry.previous]o4828, o4828[LinkedList$Entry.previous]o4828) :|: TRUE 17.12/9.26 f4817_0_addBefore_FieldAccess(EOS(STATIC_4817(java.lang.Object(ARRAY(i1094)), i1097)), i1083, o4827[LinkedList$Entry.next]o4826, o4828[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.next]o4827, o4827[LinkedList$Entry.next]o4825, o4826[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4825, o4828[LinkedList$Entry.previous]o4825, o4826[LinkedList$Entry.previous]o4827, o4828[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.previous]o4825, o4827[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.next]o4828, o4827[LinkedList$Entry.previous]o4828, o4826[LinkedList$Entry.previous]o4828, o4828[LinkedList$Entry.previous]o4828) -> f4818_0_addBefore_FieldAccess(EOS(STATIC_4818(java.lang.Object(ARRAY(i1094)), i1097)), i1083, o4827[LinkedList$Entry.next]o4826, o4828[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.next]o4827, o4827[LinkedList$Entry.next]o4825, o4826[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4825, o4828[LinkedList$Entry.previous]o4825, o4826[LinkedList$Entry.previous]o4827, o4828[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.previous]o4825, o4827[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.next]o4828, o4826[LinkedList$Entry.previous]o4828, o4828[LinkedList$Entry.previous]o4828, o4827[LinkedList$Entry.previous]o4828) :|: o4827[LinkedList$Entry.next]o4827 > 0 && o4828[LinkedList$Entry.previous]o4827 > 0 && o4827[LinkedList$Entry.previous]o4827 > 0 && o4827[LinkedList$Entry.next]o4828 > 0 && o4827[LinkedList$Entry.previous]o4828 > 0 && o4828[LinkedList$Entry.previous]o4828 > 0 17.12/9.26 f4817_0_addBefore_FieldAccess(EOS(STATIC_4817(java.lang.Object(ARRAY(i1094)), i1097)), i1083, o4903[LinkedList$Entry.next]o4826, o4903[LinkedList$Entry.previous]o4826, o4903[LinkedList$Entry.previous]o4826, o4903[LinkedList$Entry.next]o4903, o4903[LinkedList$Entry.next]o4825, o4826[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4825, o4903[LinkedList$Entry.previous]o4825, o4826[LinkedList$Entry.previous]o4903, o4903[LinkedList$Entry.previous]o4903, o4903[LinkedList$Entry.previous]o4825, o4903[LinkedList$Entry.previous]o4903, o4903[LinkedList$Entry.next]o4903, o4903[LinkedList$Entry.previous]o4903, o4826[LinkedList$Entry.previous]o4903, o4903[LinkedList$Entry.previous]o4903) -> f4819_0_addBefore_FieldAccess(EOS(STATIC_4819(java.lang.Object(ARRAY(i1094)), i1097)), i1083, o4903[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4825, o4903[LinkedList$Entry.previous]o4825, o4826[LinkedList$Entry.previous]o4903, o4903[LinkedList$Entry.previous]o4903) :|: TRUE 17.12/9.26 f4818_0_addBefore_FieldAccess(EOS(STATIC_4818(java.lang.Object(ARRAY(i1094)), i1097)), i1083, o4827[LinkedList$Entry.next]o4826, o4828[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.next]o4827, o4827[LinkedList$Entry.next]o4825, o4826[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4825, o4828[LinkedList$Entry.previous]o4825, o4826[LinkedList$Entry.previous]o4827, o4828[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.previous]o4825, o4827[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.next]o4828, o4826[LinkedList$Entry.previous]o4828, o4828[LinkedList$Entry.previous]o4828, o4827[LinkedList$Entry.previous]o4828) -> f4820_0_addBefore_FieldAccess(EOS(STATIC_4820(java.lang.Object(ARRAY(i1094)), i1097)), i1083, o4827[LinkedList$Entry.next]o4826, o4828[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.next]o4827, o4827[LinkedList$Entry.next]o4825, o4826[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4825, o4828[LinkedList$Entry.previous]o4825, o4826[LinkedList$Entry.previous]o4827, o4828[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.previous]o4825, o4827[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.next]o4828, o4826[LinkedList$Entry.previous]o4828, o4828[LinkedList$Entry.previous]o4828, o4827[LinkedList$Entry.previous]o4828) :|: o4828[LinkedList$Entry.previous]o4826 > 0 && o4826[LinkedList$Entry.previous]o4826 > 0 && o4826[LinkedList$Entry.previous]o4828 > 0 && o4828[LinkedList$Entry.previous]o4828 > 0 17.12/9.26 f4820_0_addBefore_FieldAccess(EOS(STATIC_4820(java.lang.Object(ARRAY(i1094)), i1097)), i1083, o4827[LinkedList$Entry.next]o4826, o4828[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.next]o4827, o4827[LinkedList$Entry.next]o4825, o4826[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4825, o4828[LinkedList$Entry.previous]o4825, o4826[LinkedList$Entry.previous]o4827, o4828[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.previous]o4825, o4827[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.next]o4828, o4826[LinkedList$Entry.previous]o4828, o4828[LinkedList$Entry.previous]o4828, o4827[LinkedList$Entry.previous]o4828) -> f4824_0_addBefore_Load(EOS(STATIC_4824(java.lang.Object(ARRAY(i1094)), i1097)), i1083, o4827[LinkedList$Entry.next]o4826, o4828[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.next]o4827, o4827[LinkedList$Entry.next]o4825, o4826[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4825, o4828[LinkedList$Entry.previous]o4825, o4826[LinkedList$Entry.previous]o4827, o4828[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.previous]o4825, o4827[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.next]o4828, o4826[LinkedList$Entry.previous]o4828, o4828[LinkedList$Entry.previous]o4828, o4827[LinkedList$Entry.previous]o4828) :|: TRUE 17.12/9.26 f4824_0_addBefore_Load(EOS(STATIC_4824(java.lang.Object(ARRAY(i1094)), i1097)), i1083, o4827[LinkedList$Entry.next]o4826, o4828[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.next]o4827, o4827[LinkedList$Entry.next]o4825, o4826[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4825, o4828[LinkedList$Entry.previous]o4825, o4826[LinkedList$Entry.previous]o4827, o4828[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.previous]o4825, o4827[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.next]o4828, o4826[LinkedList$Entry.previous]o4828, o4828[LinkedList$Entry.previous]o4828, o4827[LinkedList$Entry.previous]o4828) -> f4826_0_addBefore_FieldAccess(EOS(STATIC_4826(java.lang.Object(ARRAY(i1094)), i1097)), i1083, o4827[LinkedList$Entry.next]o4826, o4828[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.next]o4827, o4827[LinkedList$Entry.next]o4825, o4826[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4825, o4828[LinkedList$Entry.previous]o4825, o4826[LinkedList$Entry.previous]o4827, o4828[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.previous]o4825, o4827[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.next]o4828, o4826[LinkedList$Entry.previous]o4828, o4828[LinkedList$Entry.previous]o4828, o4827[LinkedList$Entry.previous]o4828) :|: TRUE 17.12/9.26 f4826_0_addBefore_FieldAccess(EOS(STATIC_4826(java.lang.Object(ARRAY(i1094)), i1097)), i1083, o4827[LinkedList$Entry.next]o4826, o4828[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.next]o4827, o4827[LinkedList$Entry.next]o4825, o4826[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4825, o4828[LinkedList$Entry.previous]o4825, o4826[LinkedList$Entry.previous]o4827, o4828[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.previous]o4825, o4827[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.next]o4828, o4826[LinkedList$Entry.previous]o4828, o4828[LinkedList$Entry.previous]o4828, o4827[LinkedList$Entry.previous]o4828) -> f4828_0_addBefore_Load(EOS(STATIC_4828(java.lang.Object(ARRAY(i1094)), i1097)), i1083, o4827[LinkedList$Entry.next]o4826, o4828[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.next]o4827, o4827[LinkedList$Entry.next]o4825, o4826[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4825, o4828[LinkedList$Entry.previous]o4825, o4826[LinkedList$Entry.previous]o4827, o4828[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.previous]o4825, o4827[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.next]o4828, o4826[LinkedList$Entry.previous]o4828, o4828[LinkedList$Entry.previous]o4828, o4827[LinkedList$Entry.previous]o4828) :|: TRUE 17.12/9.26 f4828_0_addBefore_Load(EOS(STATIC_4828(java.lang.Object(ARRAY(i1094)), i1097)), i1083, o4827[LinkedList$Entry.next]o4826, o4828[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.next]o4827, o4827[LinkedList$Entry.next]o4825, o4826[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4825, o4828[LinkedList$Entry.previous]o4825, o4826[LinkedList$Entry.previous]o4827, o4828[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.previous]o4825, o4827[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.next]o4828, o4826[LinkedList$Entry.previous]o4828, o4828[LinkedList$Entry.previous]o4828, o4827[LinkedList$Entry.previous]o4828) -> f4830_0_addBefore_FieldAccess(EOS(STATIC_4830(java.lang.Object(ARRAY(i1094)), i1097)), i1083, o4827[LinkedList$Entry.next]o4826, o4828[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.next]o4827, o4827[LinkedList$Entry.next]o4825, o4826[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4825, o4828[LinkedList$Entry.previous]o4825, o4826[LinkedList$Entry.previous]o4827, o4828[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.previous]o4825, o4827[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.next]o4828, o4826[LinkedList$Entry.previous]o4828, o4828[LinkedList$Entry.previous]o4828, o4827[LinkedList$Entry.previous]o4828) :|: TRUE 17.12/9.26 f4830_0_addBefore_FieldAccess(EOS(STATIC_4830(java.lang.Object(ARRAY(i1094)), i1097)), i1083, o4827[LinkedList$Entry.next]o4826, o4828[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.next]o4827, o4827[LinkedList$Entry.next]o4825, o4826[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4825, o4828[LinkedList$Entry.previous]o4825, o4826[LinkedList$Entry.previous]o4827, o4828[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.previous]o4825, o4827[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.next]o4828, o4826[LinkedList$Entry.previous]o4828, o4828[LinkedList$Entry.previous]o4828, o4827[LinkedList$Entry.previous]o4828) -> f4832_0_addBefore_Load(EOS(STATIC_4832(java.lang.Object(ARRAY(i1094)), i1097)), i1083, o4827[LinkedList$Entry.next]o4826, o4828[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.next]o4827, o4827[LinkedList$Entry.next]o4825, o4826[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4825, o4828[LinkedList$Entry.previous]o4825, o4826[LinkedList$Entry.previous]o4827, o4828[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.previous]o4825, o4827[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.next]o4828, o4826[LinkedList$Entry.previous]o4828, o4828[LinkedList$Entry.previous]o4828, o4827[LinkedList$Entry.previous]o4828) :|: TRUE 17.12/9.26 f4832_0_addBefore_Load(EOS(STATIC_4832(java.lang.Object(ARRAY(i1094)), i1097)), i1083, o4827[LinkedList$Entry.next]o4826, o4828[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.next]o4827, o4827[LinkedList$Entry.next]o4825, o4826[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4825, o4828[LinkedList$Entry.previous]o4825, o4826[LinkedList$Entry.previous]o4827, o4828[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.previous]o4825, o4827[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.next]o4828, o4826[LinkedList$Entry.previous]o4828, o4828[LinkedList$Entry.previous]o4828, o4827[LinkedList$Entry.previous]o4828) -> f4834_0_addBefore_Duplicate(EOS(STATIC_4834(java.lang.Object(ARRAY(i1094)), i1097)), i1083, o4827[LinkedList$Entry.next]o4826, o4828[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.next]o4827, o4827[LinkedList$Entry.next]o4825, o4826[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4825, o4828[LinkedList$Entry.previous]o4825, o4826[LinkedList$Entry.previous]o4827, o4828[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.previous]o4825, o4827[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.next]o4828, o4826[LinkedList$Entry.previous]o4828, o4828[LinkedList$Entry.previous]o4828, o4827[LinkedList$Entry.previous]o4828) :|: TRUE 17.12/9.26 f4834_0_addBefore_Duplicate(EOS(STATIC_4834(java.lang.Object(ARRAY(i1094)), i1097)), i1083, o4827[LinkedList$Entry.next]o4826, o4828[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.next]o4827, o4827[LinkedList$Entry.next]o4825, o4826[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4825, o4828[LinkedList$Entry.previous]o4825, o4826[LinkedList$Entry.previous]o4827, o4828[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.previous]o4825, o4827[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.next]o4828, o4826[LinkedList$Entry.previous]o4828, o4828[LinkedList$Entry.previous]o4828, o4827[LinkedList$Entry.previous]o4828) -> f4836_0_addBefore_FieldAccess(EOS(STATIC_4836(java.lang.Object(ARRAY(i1094)), i1097)), i1083, o4827[LinkedList$Entry.next]o4826, o4828[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.next]o4827, o4827[LinkedList$Entry.next]o4825, o4826[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4825, o4828[LinkedList$Entry.previous]o4825, o4826[LinkedList$Entry.previous]o4827, o4828[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.previous]o4825, o4827[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.next]o4828, o4826[LinkedList$Entry.previous]o4828, o4828[LinkedList$Entry.previous]o4828, o4827[LinkedList$Entry.previous]o4828) :|: TRUE 17.12/9.26 f4836_0_addBefore_FieldAccess(EOS(STATIC_4836(java.lang.Object(ARRAY(i1094)), i1097)), i1083, o4827[LinkedList$Entry.next]o4826, o4828[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.next]o4827, o4827[LinkedList$Entry.next]o4825, o4826[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4825, o4828[LinkedList$Entry.previous]o4825, o4826[LinkedList$Entry.previous]o4827, o4828[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.previous]o4825, o4827[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.next]o4828, o4826[LinkedList$Entry.previous]o4828, o4828[LinkedList$Entry.previous]o4828, o4827[LinkedList$Entry.previous]o4828) -> f4838_0_addBefore_ConstantStackPush(EOS(STATIC_4838(java.lang.Object(ARRAY(i1094)), i1097)), i1083, o4827[LinkedList$Entry.next]o4826, o4828[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.next]o4827, o4827[LinkedList$Entry.next]o4825, o4826[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4825, o4828[LinkedList$Entry.previous]o4825, o4826[LinkedList$Entry.previous]o4827, o4828[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.previous]o4825, o4827[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.next]o4828, o4826[LinkedList$Entry.previous]o4828, o4828[LinkedList$Entry.previous]o4828, o4827[LinkedList$Entry.previous]o4828) :|: TRUE 17.12/9.26 f4838_0_addBefore_ConstantStackPush(EOS(STATIC_4838(java.lang.Object(ARRAY(i1094)), i1097)), i1083, o4827[LinkedList$Entry.next]o4826, o4828[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.next]o4827, o4827[LinkedList$Entry.next]o4825, o4826[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4825, o4828[LinkedList$Entry.previous]o4825, o4826[LinkedList$Entry.previous]o4827, o4828[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.previous]o4825, o4827[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.next]o4828, o4826[LinkedList$Entry.previous]o4828, o4828[LinkedList$Entry.previous]o4828, o4827[LinkedList$Entry.previous]o4828) -> f4840_0_addBefore_IntArithmetic(EOS(STATIC_4840(java.lang.Object(ARRAY(i1094)), i1097)), i1083, o4827[LinkedList$Entry.next]o4826, o4828[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.next]o4827, o4827[LinkedList$Entry.next]o4825, o4826[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4825, o4828[LinkedList$Entry.previous]o4825, o4826[LinkedList$Entry.previous]o4827, o4828[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.previous]o4825, o4827[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.next]o4828, o4826[LinkedList$Entry.previous]o4828, o4828[LinkedList$Entry.previous]o4828, o4827[LinkedList$Entry.previous]o4828) :|: TRUE 17.12/9.26 f4840_0_addBefore_IntArithmetic(EOS(STATIC_4840(java.lang.Object(ARRAY(i1094)), i1097)), i1083, o4827[LinkedList$Entry.next]o4826, o4828[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.next]o4827, o4827[LinkedList$Entry.next]o4825, o4826[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4825, o4828[LinkedList$Entry.previous]o4825, o4826[LinkedList$Entry.previous]o4827, o4828[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.previous]o4825, o4827[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.next]o4828, o4826[LinkedList$Entry.previous]o4828, o4828[LinkedList$Entry.previous]o4828, o4827[LinkedList$Entry.previous]o4828) -> f4842_0_addBefore_FieldAccess(EOS(STATIC_4842(java.lang.Object(ARRAY(i1094)), i1097)), i1083, o4827[LinkedList$Entry.next]o4826, o4828[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.next]o4827, o4827[LinkedList$Entry.next]o4825, o4826[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4825, o4828[LinkedList$Entry.previous]o4825, o4826[LinkedList$Entry.previous]o4827, o4828[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.previous]o4825, o4827[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.next]o4828, o4826[LinkedList$Entry.previous]o4828, o4828[LinkedList$Entry.previous]o4828, o4827[LinkedList$Entry.previous]o4828) :|: TRUE 17.12/9.26 f4842_0_addBefore_FieldAccess(EOS(STATIC_4842(java.lang.Object(ARRAY(i1094)), i1097)), i1083, o4827[LinkedList$Entry.next]o4826, o4828[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.next]o4827, o4827[LinkedList$Entry.next]o4825, o4826[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4825, o4828[LinkedList$Entry.previous]o4825, o4826[LinkedList$Entry.previous]o4827, o4828[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.previous]o4825, o4827[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.next]o4828, o4826[LinkedList$Entry.previous]o4828, o4828[LinkedList$Entry.previous]o4828, o4827[LinkedList$Entry.previous]o4828) -> f4844_0_addBefore_Load(EOS(STATIC_4844(java.lang.Object(ARRAY(i1094)), i1097)), i1083, o4827[LinkedList$Entry.next]o4826, o4828[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.next]o4827, o4827[LinkedList$Entry.next]o4825, o4826[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4825, o4828[LinkedList$Entry.previous]o4825, o4826[LinkedList$Entry.previous]o4827, o4828[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.previous]o4825, o4827[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.next]o4828, o4826[LinkedList$Entry.previous]o4828, o4828[LinkedList$Entry.previous]o4828, o4827[LinkedList$Entry.previous]o4828) :|: TRUE 17.12/9.26 f4844_0_addBefore_Load(EOS(STATIC_4844(java.lang.Object(ARRAY(i1094)), i1097)), i1083, o4827[LinkedList$Entry.next]o4826, o4828[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.next]o4827, o4827[LinkedList$Entry.next]o4825, o4826[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4825, o4828[LinkedList$Entry.previous]o4825, o4826[LinkedList$Entry.previous]o4827, o4828[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.previous]o4825, o4827[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.next]o4828, o4826[LinkedList$Entry.previous]o4828, o4828[LinkedList$Entry.previous]o4828, o4827[LinkedList$Entry.previous]o4828) -> f4846_0_addBefore_Duplicate(EOS(STATIC_4846(java.lang.Object(ARRAY(i1094)), i1097)), i1083, o4827[LinkedList$Entry.next]o4826, o4828[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.next]o4827, o4827[LinkedList$Entry.next]o4825, o4826[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4825, o4828[LinkedList$Entry.previous]o4825, o4826[LinkedList$Entry.previous]o4827, o4828[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.previous]o4825, o4827[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.next]o4828, o4826[LinkedList$Entry.previous]o4828, o4828[LinkedList$Entry.previous]o4828, o4827[LinkedList$Entry.previous]o4828) :|: TRUE 17.12/9.26 f4846_0_addBefore_Duplicate(EOS(STATIC_4846(java.lang.Object(ARRAY(i1094)), i1097)), i1083, o4827[LinkedList$Entry.next]o4826, o4828[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.next]o4827, o4827[LinkedList$Entry.next]o4825, o4826[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4825, o4828[LinkedList$Entry.previous]o4825, o4826[LinkedList$Entry.previous]o4827, o4828[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.previous]o4825, o4827[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.next]o4828, o4826[LinkedList$Entry.previous]o4828, o4828[LinkedList$Entry.previous]o4828, o4827[LinkedList$Entry.previous]o4828) -> f4848_0_addBefore_FieldAccess(EOS(STATIC_4848(java.lang.Object(ARRAY(i1094)), i1097)), i1083, o4827[LinkedList$Entry.next]o4826, o4828[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.next]o4827, o4827[LinkedList$Entry.next]o4825, o4826[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4825, o4828[LinkedList$Entry.previous]o4825, o4826[LinkedList$Entry.previous]o4827, o4828[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.previous]o4825, o4827[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.next]o4828, o4826[LinkedList$Entry.previous]o4828, o4828[LinkedList$Entry.previous]o4828, o4827[LinkedList$Entry.previous]o4828) :|: TRUE 17.12/9.26 f4848_0_addBefore_FieldAccess(EOS(STATIC_4848(java.lang.Object(ARRAY(i1094)), i1097)), i1083, o4827[LinkedList$Entry.next]o4826, o4828[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.next]o4827, o4827[LinkedList$Entry.next]o4825, o4826[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4825, o4828[LinkedList$Entry.previous]o4825, o4826[LinkedList$Entry.previous]o4827, o4828[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.previous]o4825, o4827[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.next]o4828, o4826[LinkedList$Entry.previous]o4828, o4828[LinkedList$Entry.previous]o4828, o4827[LinkedList$Entry.previous]o4828) -> f4850_0_addBefore_ConstantStackPush(EOS(STATIC_4850(java.lang.Object(ARRAY(i1094)), i1097)), i1083, o4827[LinkedList$Entry.next]o4826, o4828[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.next]o4827, o4827[LinkedList$Entry.next]o4825, o4826[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4825, o4828[LinkedList$Entry.previous]o4825, o4826[LinkedList$Entry.previous]o4827, o4828[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.previous]o4825, o4827[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.next]o4828, o4826[LinkedList$Entry.previous]o4828, o4828[LinkedList$Entry.previous]o4828, o4827[LinkedList$Entry.previous]o4828) :|: TRUE 17.12/9.26 f4850_0_addBefore_ConstantStackPush(EOS(STATIC_4850(java.lang.Object(ARRAY(i1094)), i1097)), i1083, o4827[LinkedList$Entry.next]o4826, o4828[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.next]o4827, o4827[LinkedList$Entry.next]o4825, o4826[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4825, o4828[LinkedList$Entry.previous]o4825, o4826[LinkedList$Entry.previous]o4827, o4828[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.previous]o4825, o4827[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.next]o4828, o4826[LinkedList$Entry.previous]o4828, o4828[LinkedList$Entry.previous]o4828, o4827[LinkedList$Entry.previous]o4828) -> f4852_0_addBefore_IntArithmetic(EOS(STATIC_4852(java.lang.Object(ARRAY(i1094)), i1097)), i1083, o4827[LinkedList$Entry.next]o4826, o4828[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.next]o4827, o4827[LinkedList$Entry.next]o4825, o4826[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4825, o4828[LinkedList$Entry.previous]o4825, o4826[LinkedList$Entry.previous]o4827, o4828[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.previous]o4825, o4827[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.next]o4828, o4826[LinkedList$Entry.previous]o4828, o4828[LinkedList$Entry.previous]o4828, o4827[LinkedList$Entry.previous]o4828) :|: TRUE 17.12/9.26 f4852_0_addBefore_IntArithmetic(EOS(STATIC_4852(java.lang.Object(ARRAY(i1094)), i1097)), i1083, o4827[LinkedList$Entry.next]o4826, o4828[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.next]o4827, o4827[LinkedList$Entry.next]o4825, o4826[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4825, o4828[LinkedList$Entry.previous]o4825, o4826[LinkedList$Entry.previous]o4827, o4828[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.previous]o4825, o4827[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.next]o4828, o4826[LinkedList$Entry.previous]o4828, o4828[LinkedList$Entry.previous]o4828, o4827[LinkedList$Entry.previous]o4828) -> f4854_0_addBefore_FieldAccess(EOS(STATIC_4854(java.lang.Object(ARRAY(i1094)), i1097)), i1083, o4827[LinkedList$Entry.next]o4826, o4828[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.next]o4827, o4827[LinkedList$Entry.next]o4825, o4826[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4825, o4828[LinkedList$Entry.previous]o4825, o4826[LinkedList$Entry.previous]o4827, o4828[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.previous]o4825, o4827[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.next]o4828, o4826[LinkedList$Entry.previous]o4828, o4828[LinkedList$Entry.previous]o4828, o4827[LinkedList$Entry.previous]o4828) :|: TRUE 17.12/9.26 f4854_0_addBefore_FieldAccess(EOS(STATIC_4854(java.lang.Object(ARRAY(i1094)), i1097)), i1083, o4827[LinkedList$Entry.next]o4826, o4828[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.next]o4827, o4827[LinkedList$Entry.next]o4825, o4826[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4825, o4828[LinkedList$Entry.previous]o4825, o4826[LinkedList$Entry.previous]o4827, o4828[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.previous]o4825, o4827[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.next]o4828, o4826[LinkedList$Entry.previous]o4828, o4828[LinkedList$Entry.previous]o4828, o4827[LinkedList$Entry.previous]o4828) -> f4856_0_addBefore_Load(EOS(STATIC_4856(java.lang.Object(ARRAY(i1094)), i1097)), i1083, o4827[LinkedList$Entry.next]o4826, o4828[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.next]o4827, o4827[LinkedList$Entry.next]o4825, o4826[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4825, o4828[LinkedList$Entry.previous]o4825, o4826[LinkedList$Entry.previous]o4827, o4828[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.previous]o4825, o4827[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.next]o4828, o4826[LinkedList$Entry.previous]o4828, o4828[LinkedList$Entry.previous]o4828, o4827[LinkedList$Entry.previous]o4828) :|: TRUE 17.12/9.26 f4856_0_addBefore_Load(EOS(STATIC_4856(java.lang.Object(ARRAY(i1094)), i1097)), i1083, o4827[LinkedList$Entry.next]o4826, o4828[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.next]o4827, o4827[LinkedList$Entry.next]o4825, o4826[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4825, o4828[LinkedList$Entry.previous]o4825, o4826[LinkedList$Entry.previous]o4827, o4828[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.previous]o4825, o4827[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.next]o4828, o4826[LinkedList$Entry.previous]o4828, o4828[LinkedList$Entry.previous]o4828, o4827[LinkedList$Entry.previous]o4828) -> f4858_0_addBefore_Return(EOS(STATIC_4858(java.lang.Object(ARRAY(i1094)), i1097)), i1083, o4827[LinkedList$Entry.next]o4826, o4828[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.next]o4827, o4827[LinkedList$Entry.next]o4825, o4826[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4825, o4828[LinkedList$Entry.previous]o4825, o4826[LinkedList$Entry.previous]o4827, o4828[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.previous]o4825, o4827[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.next]o4828, o4826[LinkedList$Entry.previous]o4828, o4828[LinkedList$Entry.previous]o4828, o4827[LinkedList$Entry.previous]o4828) :|: TRUE 17.12/9.26 f4858_0_addBefore_Return(EOS(STATIC_4858(java.lang.Object(ARRAY(i1094)), i1097)), i1083, o4827[LinkedList$Entry.next]o4826, o4828[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.next]o4827, o4827[LinkedList$Entry.next]o4825, o4826[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4825, o4828[LinkedList$Entry.previous]o4825, o4826[LinkedList$Entry.previous]o4827, o4828[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.previous]o4825, o4827[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.next]o4828, o4826[LinkedList$Entry.previous]o4828, o4828[LinkedList$Entry.previous]o4828, o4827[LinkedList$Entry.previous]o4828) -> f4860_0_addLast_StackPop(EOS(STATIC_4860(java.lang.Object(ARRAY(i1094)), i1097)), i1083, o4827[LinkedList$Entry.next]o4826, o4828[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.next]o4827, o4827[LinkedList$Entry.next]o4825, o4826[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4825, o4828[LinkedList$Entry.previous]o4825, o4826[LinkedList$Entry.previous]o4827, o4828[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.previous]o4825, o4827[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.next]o4828, o4826[LinkedList$Entry.previous]o4828, o4828[LinkedList$Entry.previous]o4828, o4827[LinkedList$Entry.previous]o4828) :|: TRUE 17.12/9.26 f4860_0_addLast_StackPop(EOS(STATIC_4860(java.lang.Object(ARRAY(i1094)), i1097)), i1083, o4827[LinkedList$Entry.next]o4826, o4828[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.next]o4827, o4827[LinkedList$Entry.next]o4825, o4826[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4825, o4828[LinkedList$Entry.previous]o4825, o4826[LinkedList$Entry.previous]o4827, o4828[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.previous]o4825, o4827[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.next]o4828, o4826[LinkedList$Entry.previous]o4828, o4828[LinkedList$Entry.previous]o4828, o4827[LinkedList$Entry.previous]o4828) -> f4862_0_addLast_Return(EOS(STATIC_4862(java.lang.Object(ARRAY(i1094)), i1097)), i1083, o4827[LinkedList$Entry.next]o4826, o4828[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.next]o4827, o4827[LinkedList$Entry.next]o4825, o4826[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4825, o4828[LinkedList$Entry.previous]o4825, o4826[LinkedList$Entry.previous]o4827, o4828[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.previous]o4825, o4827[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.next]o4828, o4826[LinkedList$Entry.previous]o4828, o4828[LinkedList$Entry.previous]o4828, o4827[LinkedList$Entry.previous]o4828) :|: TRUE 17.12/9.26 f4862_0_addLast_Return(EOS(STATIC_4862(java.lang.Object(ARRAY(i1094)), i1097)), i1083, o4827[LinkedList$Entry.next]o4826, o4828[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.next]o4827, o4827[LinkedList$Entry.next]o4825, o4826[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4825, o4828[LinkedList$Entry.previous]o4825, o4826[LinkedList$Entry.previous]o4827, o4828[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.previous]o4825, o4827[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.next]o4828, o4826[LinkedList$Entry.previous]o4828, o4828[LinkedList$Entry.previous]o4828, o4827[LinkedList$Entry.previous]o4828) -> f4864_0_createList_Inc(EOS(STATIC_4864(java.lang.Object(ARRAY(i1094)), i1097)), i1083, o4827[LinkedList$Entry.next]o4826, o4828[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.next]o4827, o4827[LinkedList$Entry.next]o4825, o4826[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4825, o4828[LinkedList$Entry.previous]o4825, o4826[LinkedList$Entry.previous]o4827, o4828[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.previous]o4825, o4827[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.next]o4828, o4826[LinkedList$Entry.previous]o4828, o4828[LinkedList$Entry.previous]o4828, o4827[LinkedList$Entry.previous]o4828) :|: TRUE 17.12/9.26 f4864_0_createList_Inc(EOS(STATIC_4864(java.lang.Object(ARRAY(i1094)), i1097)), i1083, o4827[LinkedList$Entry.next]o4826, o4828[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.next]o4827, o4827[LinkedList$Entry.next]o4825, o4826[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4825, o4828[LinkedList$Entry.previous]o4825, o4826[LinkedList$Entry.previous]o4827, o4828[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.previous]o4825, o4827[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.next]o4828, o4826[LinkedList$Entry.previous]o4828, o4828[LinkedList$Entry.previous]o4828, o4827[LinkedList$Entry.previous]o4828) -> f4866_0_createList_JMP(EOS(STATIC_4866(java.lang.Object(ARRAY(i1094)), i1097)), i1083 + -1, o4827[LinkedList$Entry.next]o4826, o4828[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.next]o4827, o4827[LinkedList$Entry.next]o4825, o4826[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4825, o4828[LinkedList$Entry.previous]o4825, o4826[LinkedList$Entry.previous]o4827, o4828[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.previous]o4825, o4827[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.next]o4828, o4826[LinkedList$Entry.previous]o4828, o4828[LinkedList$Entry.previous]o4828, o4827[LinkedList$Entry.previous]o4828) :|: TRUE 17.12/9.26 f4866_0_createList_JMP(EOS(STATIC_4866(java.lang.Object(ARRAY(i1094)), i1097)), i1152, o4827[LinkedList$Entry.next]o4826, o4828[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.next]o4827, o4827[LinkedList$Entry.next]o4825, o4826[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4825, o4828[LinkedList$Entry.previous]o4825, o4826[LinkedList$Entry.previous]o4827, o4828[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.previous]o4825, o4827[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.next]o4828, o4826[LinkedList$Entry.previous]o4828, o4828[LinkedList$Entry.previous]o4828, o4827[LinkedList$Entry.previous]o4828) -> f4868_0_createList_Load(EOS(STATIC_4868(java.lang.Object(ARRAY(i1094)), i1097)), i1152, o4827[LinkedList$Entry.next]o4826, o4828[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.next]o4827, o4827[LinkedList$Entry.next]o4825, o4826[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4825, o4828[LinkedList$Entry.previous]o4825, o4826[LinkedList$Entry.previous]o4827, o4828[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.previous]o4825, o4827[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.next]o4828, o4826[LinkedList$Entry.previous]o4828, o4828[LinkedList$Entry.previous]o4828, o4827[LinkedList$Entry.previous]o4828) :|: TRUE 17.12/9.26 f4868_0_createList_Load(EOS(STATIC_4868(java.lang.Object(ARRAY(i1094)), i1097)), i1152, o4827[LinkedList$Entry.next]o4826, o4828[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.next]o4827, o4827[LinkedList$Entry.next]o4825, o4826[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4825, o4828[LinkedList$Entry.previous]o4825, o4826[LinkedList$Entry.previous]o4827, o4828[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.previous]o4825, o4827[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.next]o4828, o4826[LinkedList$Entry.previous]o4828, o4828[LinkedList$Entry.previous]o4828, o4827[LinkedList$Entry.previous]o4828) -> f4668_0_createList_Load(EOS(STATIC_4668(java.lang.Object(ARRAY(i1094)), i1097)), i1152, o4827[LinkedList$Entry.next]o4826, o4881[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.next]o4827, o4827[LinkedList$Entry.next]o4825, o4826[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4825, o4881[LinkedList$Entry.previous]o4825, o4826[LinkedList$Entry.previous]o4827, o4881[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.previous]o4825, o4827[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.next]o4881, o4827[LinkedList$Entry.previous]o4881, o4826[LinkedList$Entry.previous]o4881, o4881[LinkedList$Entry.previous]o4881) :|: TRUE 17.12/9.26 f4668_0_createList_Load(EOS(STATIC_4668(java.lang.Object(o4822sub), i1068)), i1070, o4827[LinkedList$Entry.next]o4826, o4828[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.next]o4827, o4827[LinkedList$Entry.next]o4825, o4826[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4825, o4828[LinkedList$Entry.previous]o4825, o4826[LinkedList$Entry.previous]o4827, o4828[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.previous]o4825, o4827[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.next]o4828, o4827[LinkedList$Entry.previous]o4828, o4826[LinkedList$Entry.previous]o4828, o4828[LinkedList$Entry.previous]o4828) -> f4669_0_createList_LE(EOS(STATIC_4669(java.lang.Object(o4822sub), i1068)), i1070, i1070, o4827[LinkedList$Entry.next]o4826, o4828[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.previous]o4826, o4827[LinkedList$Entry.next]o4827, o4827[LinkedList$Entry.next]o4825, o4826[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4825, o4828[LinkedList$Entry.previous]o4825, o4826[LinkedList$Entry.previous]o4827, o4828[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.previous]o4825, o4827[LinkedList$Entry.previous]o4827, o4827[LinkedList$Entry.next]o4828, o4827[LinkedList$Entry.previous]o4828, o4826[LinkedList$Entry.previous]o4828, o4828[LinkedList$Entry.previous]o4828) :|: TRUE 17.12/9.26 f4819_0_addBefore_FieldAccess(EOS(STATIC_4819(java.lang.Object(ARRAY(i1094)), i1097)), i1083, o4903[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4825, o4903[LinkedList$Entry.previous]o4825, o4826[LinkedList$Entry.previous]o4903, o4903[LinkedList$Entry.previous]o4903) -> f4822_0_addBefore_FieldAccess(EOS(STATIC_4822(java.lang.Object(ARRAY(i1094)), i1097)), i1083, o4903[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4825, o4903[LinkedList$Entry.previous]o4825, o4826[LinkedList$Entry.previous]o4903, o4903[LinkedList$Entry.previous]o4903) :|: o4903[LinkedList$Entry.previous]o4826 > 0 && o4826[LinkedList$Entry.previous]o4826 > 0 && o4826[LinkedList$Entry.previous]o4903 > 0 && o4903[LinkedList$Entry.previous]o4903 > 0 17.12/9.26 f4822_0_addBefore_FieldAccess(EOS(STATIC_4822(java.lang.Object(ARRAY(i1094)), i1097)), i1083, o4903[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4825, o4903[LinkedList$Entry.previous]o4825, o4826[LinkedList$Entry.previous]o4903, o4903[LinkedList$Entry.previous]o4903) -> f4825_0_addBefore_Load(EOS(STATIC_4825(java.lang.Object(ARRAY(i1094)), i1097)), i1083, o4903[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4825, o4903[LinkedList$Entry.previous]o4825, o4826[LinkedList$Entry.previous]o4903, o4903[LinkedList$Entry.previous]o4903) :|: TRUE 17.12/9.26 f4825_0_addBefore_Load(EOS(STATIC_4825(java.lang.Object(ARRAY(i1094)), i1097)), i1083, o4903[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4825, o4903[LinkedList$Entry.previous]o4825, o4826[LinkedList$Entry.previous]o4903, o4903[LinkedList$Entry.previous]o4903) -> f4827_0_addBefore_FieldAccess(EOS(STATIC_4827(java.lang.Object(ARRAY(i1094)), i1097)), i1083, o4903[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4825, o4903[LinkedList$Entry.previous]o4825, o4826[LinkedList$Entry.previous]o4903, o4903[LinkedList$Entry.previous]o4903) :|: TRUE 17.12/9.26 f4827_0_addBefore_FieldAccess(EOS(STATIC_4827(java.lang.Object(ARRAY(i1094)), i1097)), i1083, o4903[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4825, o4903[LinkedList$Entry.previous]o4825, o4826[LinkedList$Entry.previous]o4903, o4903[LinkedList$Entry.previous]o4903) -> f4829_0_addBefore_Load(EOS(STATIC_4829(java.lang.Object(ARRAY(i1094)), i1097)), i1083, o4903[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4825, o4903[LinkedList$Entry.previous]o4825, o4826[LinkedList$Entry.previous]o4903, o4903[LinkedList$Entry.previous]o4903) :|: TRUE 17.12/9.26 f4829_0_addBefore_Load(EOS(STATIC_4829(java.lang.Object(ARRAY(i1094)), i1097)), i1083, o4903[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4825, o4903[LinkedList$Entry.previous]o4825, o4826[LinkedList$Entry.previous]o4903, o4903[LinkedList$Entry.previous]o4903) -> f4831_0_addBefore_FieldAccess(EOS(STATIC_4831(java.lang.Object(ARRAY(i1094)), i1097)), i1083, o4903[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4825, o4903[LinkedList$Entry.previous]o4825, o4826[LinkedList$Entry.previous]o4903, o4903[LinkedList$Entry.previous]o4903) :|: TRUE 17.12/9.26 f4831_0_addBefore_FieldAccess(EOS(STATIC_4831(java.lang.Object(ARRAY(i1094)), i1097)), i1083, o4903[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4825, o4903[LinkedList$Entry.previous]o4825, o4826[LinkedList$Entry.previous]o4903, o4903[LinkedList$Entry.previous]o4903) -> f4833_0_addBefore_Load(EOS(STATIC_4833(java.lang.Object(ARRAY(i1094)), i1097)), i1083, o4903[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4825, o4903[LinkedList$Entry.previous]o4825, o4826[LinkedList$Entry.previous]o4903, o4903[LinkedList$Entry.previous]o4903) :|: TRUE 17.12/9.26 f4833_0_addBefore_Load(EOS(STATIC_4833(java.lang.Object(ARRAY(i1094)), i1097)), i1083, o4903[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4825, o4903[LinkedList$Entry.previous]o4825, o4826[LinkedList$Entry.previous]o4903, o4903[LinkedList$Entry.previous]o4903) -> f4835_0_addBefore_Duplicate(EOS(STATIC_4835(java.lang.Object(ARRAY(i1094)), i1097)), i1083, o4903[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4825, o4903[LinkedList$Entry.previous]o4825, o4826[LinkedList$Entry.previous]o4903, o4903[LinkedList$Entry.previous]o4903) :|: TRUE 17.12/9.26 f4835_0_addBefore_Duplicate(EOS(STATIC_4835(java.lang.Object(ARRAY(i1094)), i1097)), i1083, o4903[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4825, o4903[LinkedList$Entry.previous]o4825, o4826[LinkedList$Entry.previous]o4903, o4903[LinkedList$Entry.previous]o4903) -> f4837_0_addBefore_FieldAccess(EOS(STATIC_4837(java.lang.Object(ARRAY(i1094)), i1097)), i1083, o4903[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4825, o4903[LinkedList$Entry.previous]o4825, o4826[LinkedList$Entry.previous]o4903, o4903[LinkedList$Entry.previous]o4903) :|: TRUE 17.12/9.26 f4837_0_addBefore_FieldAccess(EOS(STATIC_4837(java.lang.Object(ARRAY(i1094)), i1097)), i1083, o4903[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4825, o4903[LinkedList$Entry.previous]o4825, o4826[LinkedList$Entry.previous]o4903, o4903[LinkedList$Entry.previous]o4903) -> f4839_0_addBefore_ConstantStackPush(EOS(STATIC_4839(java.lang.Object(ARRAY(i1094)), i1097)), i1083, o4903[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4825, o4903[LinkedList$Entry.previous]o4825, o4826[LinkedList$Entry.previous]o4903, o4903[LinkedList$Entry.previous]o4903) :|: TRUE 17.12/9.26 f4839_0_addBefore_ConstantStackPush(EOS(STATIC_4839(java.lang.Object(ARRAY(i1094)), i1097)), i1083, o4903[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4825, o4903[LinkedList$Entry.previous]o4825, o4826[LinkedList$Entry.previous]o4903, o4903[LinkedList$Entry.previous]o4903) -> f4841_0_addBefore_IntArithmetic(EOS(STATIC_4841(java.lang.Object(ARRAY(i1094)), i1097)), i1083, o4903[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4825, o4903[LinkedList$Entry.previous]o4825, o4826[LinkedList$Entry.previous]o4903, o4903[LinkedList$Entry.previous]o4903) :|: TRUE 17.12/9.26 f4841_0_addBefore_IntArithmetic(EOS(STATIC_4841(java.lang.Object(ARRAY(i1094)), i1097)), i1083, o4903[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4825, o4903[LinkedList$Entry.previous]o4825, o4826[LinkedList$Entry.previous]o4903, o4903[LinkedList$Entry.previous]o4903) -> f4843_0_addBefore_FieldAccess(EOS(STATIC_4843(java.lang.Object(ARRAY(i1094)), i1097)), i1083, o4903[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4825, o4903[LinkedList$Entry.previous]o4825, o4826[LinkedList$Entry.previous]o4903, o4903[LinkedList$Entry.previous]o4903) :|: TRUE 17.12/9.26 f4843_0_addBefore_FieldAccess(EOS(STATIC_4843(java.lang.Object(ARRAY(i1094)), i1097)), i1083, o4903[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4825, o4903[LinkedList$Entry.previous]o4825, o4826[LinkedList$Entry.previous]o4903, o4903[LinkedList$Entry.previous]o4903) -> f4845_0_addBefore_Load(EOS(STATIC_4845(java.lang.Object(ARRAY(i1094)), i1097)), i1083, o4903[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4825, o4903[LinkedList$Entry.previous]o4825, o4826[LinkedList$Entry.previous]o4903, o4903[LinkedList$Entry.previous]o4903) :|: TRUE 17.12/9.26 f4845_0_addBefore_Load(EOS(STATIC_4845(java.lang.Object(ARRAY(i1094)), i1097)), i1083, o4903[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4825, o4903[LinkedList$Entry.previous]o4825, o4826[LinkedList$Entry.previous]o4903, o4903[LinkedList$Entry.previous]o4903) -> f4847_0_addBefore_Duplicate(EOS(STATIC_4847(java.lang.Object(ARRAY(i1094)), i1097)), i1083, o4903[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4825, o4903[LinkedList$Entry.previous]o4825, o4826[LinkedList$Entry.previous]o4903, o4903[LinkedList$Entry.previous]o4903) :|: TRUE 17.12/9.26 f4847_0_addBefore_Duplicate(EOS(STATIC_4847(java.lang.Object(ARRAY(i1094)), i1097)), i1083, o4903[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4825, o4903[LinkedList$Entry.previous]o4825, o4826[LinkedList$Entry.previous]o4903, o4903[LinkedList$Entry.previous]o4903) -> f4849_0_addBefore_FieldAccess(EOS(STATIC_4849(java.lang.Object(ARRAY(i1094)), i1097)), i1083, o4903[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4825, o4903[LinkedList$Entry.previous]o4825, o4826[LinkedList$Entry.previous]o4903, o4903[LinkedList$Entry.previous]o4903) :|: TRUE 17.12/9.26 f4849_0_addBefore_FieldAccess(EOS(STATIC_4849(java.lang.Object(ARRAY(i1094)), i1097)), i1083, o4903[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4825, o4903[LinkedList$Entry.previous]o4825, o4826[LinkedList$Entry.previous]o4903, o4903[LinkedList$Entry.previous]o4903) -> f4851_0_addBefore_ConstantStackPush(EOS(STATIC_4851(java.lang.Object(ARRAY(i1094)), i1097)), i1083, o4903[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4825, o4903[LinkedList$Entry.previous]o4825, o4826[LinkedList$Entry.previous]o4903, o4903[LinkedList$Entry.previous]o4903) :|: TRUE 17.12/9.26 f4851_0_addBefore_ConstantStackPush(EOS(STATIC_4851(java.lang.Object(ARRAY(i1094)), i1097)), i1083, o4903[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4825, o4903[LinkedList$Entry.previous]o4825, o4826[LinkedList$Entry.previous]o4903, o4903[LinkedList$Entry.previous]o4903) -> f4853_0_addBefore_IntArithmetic(EOS(STATIC_4853(java.lang.Object(ARRAY(i1094)), i1097)), i1083, o4903[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4825, o4903[LinkedList$Entry.previous]o4825, o4826[LinkedList$Entry.previous]o4903, o4903[LinkedList$Entry.previous]o4903) :|: TRUE 17.12/9.26 f4853_0_addBefore_IntArithmetic(EOS(STATIC_4853(java.lang.Object(ARRAY(i1094)), i1097)), i1083, o4903[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4825, o4903[LinkedList$Entry.previous]o4825, o4826[LinkedList$Entry.previous]o4903, o4903[LinkedList$Entry.previous]o4903) -> f4855_0_addBefore_FieldAccess(EOS(STATIC_4855(java.lang.Object(ARRAY(i1094)), i1097)), i1083, o4903[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4825, o4903[LinkedList$Entry.previous]o4825, o4826[LinkedList$Entry.previous]o4903, o4903[LinkedList$Entry.previous]o4903) :|: TRUE 17.12/9.26 f4855_0_addBefore_FieldAccess(EOS(STATIC_4855(java.lang.Object(ARRAY(i1094)), i1097)), i1083, o4903[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4825, o4903[LinkedList$Entry.previous]o4825, o4826[LinkedList$Entry.previous]o4903, o4903[LinkedList$Entry.previous]o4903) -> f4857_0_addBefore_Load(EOS(STATIC_4857(java.lang.Object(ARRAY(i1094)), i1097)), i1083, o4903[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4825, o4903[LinkedList$Entry.previous]o4825, o4826[LinkedList$Entry.previous]o4903, o4903[LinkedList$Entry.previous]o4903) :|: TRUE 17.12/9.26 f4857_0_addBefore_Load(EOS(STATIC_4857(java.lang.Object(ARRAY(i1094)), i1097)), i1083, o4903[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4825, o4903[LinkedList$Entry.previous]o4825, o4826[LinkedList$Entry.previous]o4903, o4903[LinkedList$Entry.previous]o4903) -> f4859_0_addBefore_Return(EOS(STATIC_4859(java.lang.Object(ARRAY(i1094)), i1097)), i1083, o4903[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4825, o4903[LinkedList$Entry.previous]o4825, o4826[LinkedList$Entry.previous]o4903, o4903[LinkedList$Entry.previous]o4903) :|: TRUE 17.12/9.26 f4859_0_addBefore_Return(EOS(STATIC_4859(java.lang.Object(ARRAY(i1094)), i1097)), i1083, o4903[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4825, o4903[LinkedList$Entry.previous]o4825, o4826[LinkedList$Entry.previous]o4903, o4903[LinkedList$Entry.previous]o4903) -> f4861_0_addLast_StackPop(EOS(STATIC_4861(java.lang.Object(ARRAY(i1094)), i1097)), i1083, o4903[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4825, o4903[LinkedList$Entry.previous]o4825, o4826[LinkedList$Entry.previous]o4903, o4903[LinkedList$Entry.previous]o4903) :|: TRUE 17.12/9.26 f4861_0_addLast_StackPop(EOS(STATIC_4861(java.lang.Object(ARRAY(i1094)), i1097)), i1083, o4903[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4825, o4903[LinkedList$Entry.previous]o4825, o4826[LinkedList$Entry.previous]o4903, o4903[LinkedList$Entry.previous]o4903) -> f4863_0_addLast_Return(EOS(STATIC_4863(java.lang.Object(ARRAY(i1094)), i1097)), i1083, o4903[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4825, o4903[LinkedList$Entry.previous]o4825, o4826[LinkedList$Entry.previous]o4903, o4903[LinkedList$Entry.previous]o4903) :|: TRUE 17.12/9.26 f4863_0_addLast_Return(EOS(STATIC_4863(java.lang.Object(ARRAY(i1094)), i1097)), i1083, o4903[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4825, o4903[LinkedList$Entry.previous]o4825, o4826[LinkedList$Entry.previous]o4903, o4903[LinkedList$Entry.previous]o4903) -> f4865_0_createList_Inc(EOS(STATIC_4865(java.lang.Object(ARRAY(i1094)), i1097)), i1083, o4903[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4825, o4903[LinkedList$Entry.previous]o4825, o4826[LinkedList$Entry.previous]o4903, o4903[LinkedList$Entry.previous]o4903) :|: TRUE 17.12/9.26 f4865_0_createList_Inc(EOS(STATIC_4865(java.lang.Object(ARRAY(i1094)), i1097)), i1083, o4903[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4825, o4903[LinkedList$Entry.previous]o4825, o4826[LinkedList$Entry.previous]o4903, o4903[LinkedList$Entry.previous]o4903) -> f4867_0_createList_JMP(EOS(STATIC_4867(java.lang.Object(ARRAY(i1094)), i1097)), i1083 + -1, o4903[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4825, o4903[LinkedList$Entry.previous]o4825, o4826[LinkedList$Entry.previous]o4903, o4903[LinkedList$Entry.previous]o4903) :|: TRUE 17.12/9.26 f4867_0_createList_JMP(EOS(STATIC_4867(java.lang.Object(ARRAY(i1094)), i1097)), i1153, o4903[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4825, o4903[LinkedList$Entry.previous]o4825, o4826[LinkedList$Entry.previous]o4903, o4903[LinkedList$Entry.previous]o4903) -> f4869_0_createList_Load(EOS(STATIC_4869(java.lang.Object(ARRAY(i1094)), i1097)), i1153, o4903[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4825, o4903[LinkedList$Entry.previous]o4825, o4826[LinkedList$Entry.previous]o4903, o4903[LinkedList$Entry.previous]o4903) :|: TRUE 17.12/9.26 f4869_0_createList_Load(EOS(STATIC_4869(java.lang.Object(ARRAY(i1094)), i1097)), i1153, o4903[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4825, o4903[LinkedList$Entry.previous]o4825, o4826[LinkedList$Entry.previous]o4903, o4903[LinkedList$Entry.previous]o4903) -> f4668_0_createList_Load(EOS(STATIC_4668(java.lang.Object(ARRAY(i1094)), i1097)), i1153, o4903[LinkedList$Entry.next]o4826, o4881[LinkedList$Entry.previous]o4826, o4903[LinkedList$Entry.previous]o4826, o4903[LinkedList$Entry.next]o4903, o4903[LinkedList$Entry.next]o4825, o4826[LinkedList$Entry.previous]o4826, o4826[LinkedList$Entry.previous]o4825, o4881[LinkedList$Entry.previous]o4825, o4826[LinkedList$Entry.previous]o4903, o4881[LinkedList$Entry.previous]o4903, o4903[LinkedList$Entry.previous]o4825, o4903[LinkedList$Entry.previous]o4903, o4903[LinkedList$Entry.next]o4881, o4903[LinkedList$Entry.previous]o4881, o4826[LinkedList$Entry.previous]o4881, o4881[LinkedList$Entry.previous]o4881) :|: o4903[LinkedList$Entry.next]o4903 = 4 && o4881[LinkedList$Entry.previous]o4903 = 1 && o4903[LinkedList$Entry.next]o4881 = 1 17.12/9.26 Combined rules. Obtained 2 IRulesP rules: 17.12/9.26 f4669_0_createList_LE(EOS(STATIC_4669(java.lang.Object(ARRAY(i1094:0)), i1068:0)), i1083:0, i1083:0, o4827[LinkedList$Entry.next]o4826:0, o4828[LinkedList$Entry.previous]o4826:0, o4828[LinkedList$Entry.previous]o4826:0, o4827[LinkedList$Entry.next]o4827:0, o4827[LinkedList$Entry.next]o4825:0, o4826[LinkedList$Entry.previous]o4826:0, o4826[LinkedList$Entry.previous]o4825:0, o4828[LinkedList$Entry.previous]o4825:0, o4826[LinkedList$Entry.previous]o4827:0, o4828[LinkedList$Entry.previous]o4827:0, o4828[LinkedList$Entry.previous]o4825:0, o4828[LinkedList$Entry.previous]o4827:0, o4827[LinkedList$Entry.next]o4827:0, o4828[LinkedList$Entry.previous]o4827:0, o4826[LinkedList$Entry.previous]o4827:0, o4828[LinkedList$Entry.previous]o4827:0) -> f4669_0_createList_LE(EOS(STATIC_4669(java.lang.Object(ARRAY(i1094:0)), i1068:0 + 1)), i1083:0 - 1, i1083:0 - 1, o4903[LinkedList$Entry.next]o4826:0, o4881[LinkedList$Entry.previous]o4826:0, o4828[LinkedList$Entry.previous]o4826:0, 4, o4903[LinkedList$Entry.next]o4825:0, o4826[LinkedList$Entry.previous]o4826:0, o4826[LinkedList$Entry.previous]o4825:0, o4881[LinkedList$Entry.previous]o4825:0, o4826[LinkedList$Entry.previous]o4827:0, 1, o4828[LinkedList$Entry.previous]o4825:0, o4828[LinkedList$Entry.previous]o4827:0, 1, o4903[LinkedList$Entry.previous]o4881:0, o4826[LinkedList$Entry.previous]o4881:0, o4881[LinkedList$Entry.previous]o4881:0) :|: i1083:0 > 0 && i1094:0 > -1 && i1094:0 > i1068:0 && i1068:0 > -1 && o4827[LinkedList$Entry.next]o4825:0 > 0 && o4827[LinkedList$Entry.next]o4827:0 > 0 && o4828[LinkedList$Entry.previous]o4825:0 > 0 && o4828[LinkedList$Entry.previous]o4827:0 > 0 && o4826[LinkedList$Entry.previous]o4825:0 > 0 && o4826[LinkedList$Entry.previous]o4826:0 > 0 && o4828[LinkedList$Entry.previous]o4826:0 > 0 && o4826[LinkedList$Entry.previous]o4827:0 > 0 17.12/9.26 f4669_0_createList_LE(EOS(STATIC_4669(java.lang.Object(ARRAY(i1094:0)), i1068:0)), i1083:0, i1083:0, o4827[LinkedList$Entry.next]o4826:0, o4828[LinkedList$Entry.previous]o4826:0, o4827[LinkedList$Entry.previous]o4826:0, o4827[LinkedList$Entry.next]o4827:0, o4827[LinkedList$Entry.next]o4825:0, o4826[LinkedList$Entry.previous]o4826:0, o4826[LinkedList$Entry.previous]o4825:0, o4828[LinkedList$Entry.previous]o4825:0, o4826[LinkedList$Entry.previous]o4827:0, o4828[LinkedList$Entry.previous]o4827:0, o4827[LinkedList$Entry.previous]o4825:0, o4827[LinkedList$Entry.previous]o4827:0, o4827[LinkedList$Entry.next]o4828:0, o4827[LinkedList$Entry.previous]o4828:0, o4826[LinkedList$Entry.previous]o4828:0, o4828[LinkedList$Entry.previous]o4828:0) -> f4669_0_createList_LE(EOS(STATIC_4669(java.lang.Object(ARRAY(i1094:0)), i1068:0 + 1)), i1083:0 - 1, i1083:0 - 1, o4827[LinkedList$Entry.next]o4826:0, o4881[LinkedList$Entry.previous]o4826:0, o4827[LinkedList$Entry.previous]o4826:0, o4827[LinkedList$Entry.next]o4827:0, o4827[LinkedList$Entry.next]o4825:0, o4826[LinkedList$Entry.previous]o4826:0, o4826[LinkedList$Entry.previous]o4825:0, o4881[LinkedList$Entry.previous]o4825:0, o4826[LinkedList$Entry.previous]o4827:0, o4881[LinkedList$Entry.previous]o4827:0, o4827[LinkedList$Entry.previous]o4825:0, o4827[LinkedList$Entry.previous]o4827:0, o4827[LinkedList$Entry.next]o4881:0, o4827[LinkedList$Entry.previous]o4881:0, o4826[LinkedList$Entry.previous]o4881:0, o4881[LinkedList$Entry.previous]o4881:0) :|: i1083:0 > 0 && i1094:0 > -1 && i1094:0 > i1068:0 && i1068:0 > -1 && o4827[LinkedList$Entry.next]o4825:0 > 0 && o4827[LinkedList$Entry.next]o4827:0 > 0 && o4827[LinkedList$Entry.previous]o4825:0 > 0 && o4827[LinkedList$Entry.previous]o4827:0 > 0 && o4826[LinkedList$Entry.previous]o4825:0 > 0 && o4826[LinkedList$Entry.previous]o4826:0 > 0 && o4828[LinkedList$Entry.previous]o4828:0 > 0 && o4828[LinkedList$Entry.previous]o4825:0 > 0 && o4828[LinkedList$Entry.previous]o4827:0 > 0 && o4827[LinkedList$Entry.next]o4828:0 > 0 && o4828[LinkedList$Entry.previous]o4826:0 > 0 && o4827[LinkedList$Entry.previous]o4828:0 > 0 && o4826[LinkedList$Entry.previous]o4828:0 > 0 17.12/9.26 Filtered duplicate arguments: 17.12/9.26 f4669_0_createList_LE(x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12, x13, x14, x15, x16, x17, x18, x19) -> f4669_0_createList_LE(x1, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12, x13, x14, x15, x16, x17, x18, x19) 17.12/9.26 Filtered unneeded arguments: 17.12/9.26 f4669_0_createList_LE(x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12, x13, x14, x15, x16, x17, x18) -> f4669_0_createList_LE(x1, x2, x4, x5, x6, x7, x8, x9, x10, x11, x12, x13, x14, x15, x16, x17, x18) 17.12/9.26 Finished conversion. Obtained 2 rules.P rules: 17.12/9.26 f4669_0_createList_LE(i1083:0, o4828[LinkedList$Entry.previous]o4826:0, o4828[LinkedList$Entry.previous]o4826:0, o4827[LinkedList$Entry.next]o4827:0, o4827[LinkedList$Entry.next]o4825:0, o4826[LinkedList$Entry.previous]o4826:0, o4826[LinkedList$Entry.previous]o4825:0, o4828[LinkedList$Entry.previous]o4825:0, o4826[LinkedList$Entry.previous]o4827:0, o4828[LinkedList$Entry.previous]o4827:0, o4828[LinkedList$Entry.previous]o4825:0, o4828[LinkedList$Entry.previous]o4827:0, o4827[LinkedList$Entry.next]o4827:0, o4828[LinkedList$Entry.previous]o4827:0, o4826[LinkedList$Entry.previous]o4827:0, o4828[LinkedList$Entry.previous]o4827:0, i1094:0, i1068:0) -> f4669_0_createList_LE(i1083:0 - 1, o4881[LinkedList$Entry.previous]o4826:0, o4828[LinkedList$Entry.previous]o4826:0, 4, o4903[LinkedList$Entry.next]o4825:0, o4826[LinkedList$Entry.previous]o4826:0, o4826[LinkedList$Entry.previous]o4825:0, o4881[LinkedList$Entry.previous]o4825:0, o4826[LinkedList$Entry.previous]o4827:0, 1, o4828[LinkedList$Entry.previous]o4825:0, o4828[LinkedList$Entry.previous]o4827:0, 1, o4903[LinkedList$Entry.previous]o4881:0, o4826[LinkedList$Entry.previous]o4881:0, o4881[LinkedList$Entry.previous]o4881:0, i1094:0, i1068:0 + 1) :|: i1094:0 > -1 && i1083:0 > 0 && i1094:0 > i1068:0 && i1068:0 > -1 && o4827[LinkedList$Entry.next]o4825:0 > 0 && o4827[LinkedList$Entry.next]o4827:0 > 0 && o4828[LinkedList$Entry.previous]o4825:0 > 0 && o4828[LinkedList$Entry.previous]o4827:0 > 0 && o4826[LinkedList$Entry.previous]o4825:0 > 0 && o4826[LinkedList$Entry.previous]o4826:0 > 0 && o4826[LinkedList$Entry.previous]o4827:0 > 0 && o4828[LinkedList$Entry.previous]o4826:0 > 0 17.12/9.26 f4669_0_createList_LE(i1083:0, o4828[LinkedList$Entry.previous]o4826:0, o4827[LinkedList$Entry.previous]o4826:0, o4827[LinkedList$Entry.next]o4827:0, o4827[LinkedList$Entry.next]o4825:0, o4826[LinkedList$Entry.previous]o4826:0, o4826[LinkedList$Entry.previous]o4825:0, o4828[LinkedList$Entry.previous]o4825:0, o4826[LinkedList$Entry.previous]o4827:0, o4828[LinkedList$Entry.previous]o4827:0, o4827[LinkedList$Entry.previous]o4825:0, o4827[LinkedList$Entry.previous]o4827:0, o4827[LinkedList$Entry.next]o4828:0, o4827[LinkedList$Entry.previous]o4828:0, o4826[LinkedList$Entry.previous]o4828:0, o4828[LinkedList$Entry.previous]o4828:0, i1094:0, i1068:0) -> f4669_0_createList_LE(i1083:0 - 1, o4881[LinkedList$Entry.previous]o4826:0, o4827[LinkedList$Entry.previous]o4826:0, o4827[LinkedList$Entry.next]o4827:0, o4827[LinkedList$Entry.next]o4825:0, o4826[LinkedList$Entry.previous]o4826:0, o4826[LinkedList$Entry.previous]o4825:0, o4881[LinkedList$Entry.previous]o4825:0, o4826[LinkedList$Entry.previous]o4827:0, o4881[LinkedList$Entry.previous]o4827:0, o4827[LinkedList$Entry.previous]o4825:0, o4827[LinkedList$Entry.previous]o4827:0, o4827[LinkedList$Entry.next]o4881:0, o4827[LinkedList$Entry.previous]o4881:0, o4826[LinkedList$Entry.previous]o4881:0, o4881[LinkedList$Entry.previous]o4881:0, i1094:0, i1068:0 + 1) :|: i1094:0 > -1 && i1083:0 > 0 && i1094:0 > i1068:0 && i1068:0 > -1 && o4827[LinkedList$Entry.next]o4825:0 > 0 && o4827[LinkedList$Entry.next]o4827:0 > 0 && o4827[LinkedList$Entry.previous]o4825:0 > 0 && o4827[LinkedList$Entry.previous]o4827:0 > 0 && o4826[LinkedList$Entry.previous]o4825:0 > 0 && o4826[LinkedList$Entry.previous]o4826:0 > 0 && o4828[LinkedList$Entry.previous]o4828:0 > 0 && o4828[LinkedList$Entry.previous]o4825:0 > 0 && o4828[LinkedList$Entry.previous]o4827:0 > 0 && o4827[LinkedList$Entry.next]o4828:0 > 0 && o4828[LinkedList$Entry.previous]o4826:0 > 0 && o4826[LinkedList$Entry.previous]o4828:0 > 0 && o4827[LinkedList$Entry.previous]o4828:0 > 0 17.12/9.26 17.12/9.26 ---------------------------------------- 17.12/9.26 17.12/9.26 (8) 17.12/9.26 Obligation: 17.12/9.26 Rules: 17.12/9.26 f4669_0_createList_LE(i1083:0, o4828[LinkedList$Entry.previous]o4826:0, o4828[LinkedList$Entry.previous]o4826:0, o4827[LinkedList$Entry.next]o4827:0, o4827[LinkedList$Entry.next]o4825:0, o4826[LinkedList$Entry.previous]o4826:0, o4826[LinkedList$Entry.previous]o4825:0, o4828[LinkedList$Entry.previous]o4825:0, o4826[LinkedList$Entry.previous]o4827:0, o4828[LinkedList$Entry.previous]o4827:0, o4828[LinkedList$Entry.previous]o4825:0, o4828[LinkedList$Entry.previous]o4827:0, o4827[LinkedList$Entry.next]o4827:0, o4828[LinkedList$Entry.previous]o4827:0, o4826[LinkedList$Entry.previous]o4827:0, o4828[LinkedList$Entry.previous]o4827:0, i1094:0, i1068:0) -> f4669_0_createList_LE(i1083:0 - 1, o4881[LinkedList$Entry.previous]o4826:0, o4828[LinkedList$Entry.previous]o4826:0, 4, o4903[LinkedList$Entry.next]o4825:0, o4826[LinkedList$Entry.previous]o4826:0, o4826[LinkedList$Entry.previous]o4825:0, o4881[LinkedList$Entry.previous]o4825:0, o4826[LinkedList$Entry.previous]o4827:0, 1, o4828[LinkedList$Entry.previous]o4825:0, o4828[LinkedList$Entry.previous]o4827:0, 1, o4903[LinkedList$Entry.previous]o4881:0, o4826[LinkedList$Entry.previous]o4881:0, o4881[LinkedList$Entry.previous]o4881:0, i1094:0, i1068:0 + 1) :|: i1094:0 > -1 && i1083:0 > 0 && i1094:0 > i1068:0 && i1068:0 > -1 && o4827[LinkedList$Entry.next]o4825:0 > 0 && o4827[LinkedList$Entry.next]o4827:0 > 0 && o4828[LinkedList$Entry.previous]o4825:0 > 0 && o4828[LinkedList$Entry.previous]o4827:0 > 0 && o4826[LinkedList$Entry.previous]o4825:0 > 0 && o4826[LinkedList$Entry.previous]o4826:0 > 0 && o4826[LinkedList$Entry.previous]o4827:0 > 0 && o4828[LinkedList$Entry.previous]o4826:0 > 0 17.12/9.26 f4669_0_createList_LE(x, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12, x13, x14, x15, x16, x17) -> f4669_0_createList_LE(x - 1, x18, x2, x3, x4, x5, x6, x19, x8, x20, x10, x11, x21, x22, x23, x24, x16, x17 + 1) :|: x16 > -1 && x > 0 && x16 > x17 && x17 > -1 && x4 > 0 && x3 > 0 && x10 > 0 && x11 > 0 && x6 > 0 && x5 > 0 && x15 > 0 && x7 > 0 && x9 > 0 && x12 > 0 && x1 > 0 && x14 > 0 && x13 > 0 17.12/9.26 17.12/9.26 ---------------------------------------- 17.12/9.26 17.12/9.26 (9) IRSFormatTransformerProof (EQUIVALENT) 17.12/9.26 Reformatted IRS to match normalized format (transformed away non-linear left-hand sides, !=, / and %). 17.12/9.26 ---------------------------------------- 17.12/9.26 17.12/9.26 (10) 17.12/9.26 Obligation: 17.12/9.26 Rules: 17.12/9.26 f4669_0_createList_LE(i1083:0, o4828[LinkedList$Entry.previous]o4826:0, o4828[LinkedList$Entry.previous]o4826:0, o4827[LinkedList$Entry.next]o4827:0, o4827[LinkedList$Entry.next]o4825:0, o4826[LinkedList$Entry.previous]o4826:0, o4826[LinkedList$Entry.previous]o4825:0, o4828[LinkedList$Entry.previous]o4825:0, o4826[LinkedList$Entry.previous]o4827:0, o4828[LinkedList$Entry.previous]o4827:0, o4828[LinkedList$Entry.previous]o4825:0, o4828[LinkedList$Entry.previous]o4827:0, o4827[LinkedList$Entry.next]o4827:0, o4828[LinkedList$Entry.previous]o4827:0, o4826[LinkedList$Entry.previous]o4827:0, o4828[LinkedList$Entry.previous]o4827:0, i1094:0, i1068:0) -> f4669_0_createList_LE(arith, o4881[LinkedList$Entry.previous]o4826:0, o4828[LinkedList$Entry.previous]o4826:0, 4, o4903[LinkedList$Entry.next]o4825:0, o4826[LinkedList$Entry.previous]o4826:0, o4826[LinkedList$Entry.previous]o4825:0, o4881[LinkedList$Entry.previous]o4825:0, o4826[LinkedList$Entry.previous]o4827:0, 1, o4828[LinkedList$Entry.previous]o4825:0, o4828[LinkedList$Entry.previous]o4827:0, 1, o4903[LinkedList$Entry.previous]o4881:0, o4826[LinkedList$Entry.previous]o4881:0, o4881[LinkedList$Entry.previous]o4881:0, i1094:0, arith1) :|: i1094:0 > -1 && i1083:0 > 0 && i1094:0 > i1068:0 && i1068:0 > -1 && o4827[LinkedList$Entry.next]o4825:0 > 0 && o4827[LinkedList$Entry.next]o4827:0 > 0 && o4828[LinkedList$Entry.previous]o4825:0 > 0 && o4828[LinkedList$Entry.previous]o4827:0 > 0 && o4826[LinkedList$Entry.previous]o4825:0 > 0 && o4826[LinkedList$Entry.previous]o4826:0 > 0 && o4826[LinkedList$Entry.previous]o4827:0 > 0 && o4828[LinkedList$Entry.previous]o4826:0 > 0 && arith = i1083:0 - 1 && arith1 = i1068:0 + 1 17.12/9.26 f4669_0_createList_LE(x25, x26, x27, x28, x29, x30, x31, x32, x33, x34, x35, x36, x37, x38, x39, x40, x41, x42) -> f4669_0_createList_LE(x43, x44, x27, x28, x29, x30, x31, x45, x33, x46, x35, x36, x47, x48, x49, x50, x41, x51) :|: x41 > -1 && x25 > 0 && x41 > x42 && x42 > -1 && x29 > 0 && x28 > 0 && x35 > 0 && x36 > 0 && x31 > 0 && x30 > 0 && x40 > 0 && x32 > 0 && x34 > 0 && x37 > 0 && x26 > 0 && x39 > 0 && x38 > 0 && x43 = x25 - 1 && x51 = x42 + 1 17.12/9.26 17.12/9.26 ---------------------------------------- 17.12/9.26 17.12/9.26 (11) IRSwTTerminationDigraphProof (EQUIVALENT) 17.12/9.26 Constructed termination digraph! 17.12/9.26 Nodes: 17.12/9.26 (1) f4669_0_createList_LE(i1083:0, o4828[LinkedList$Entry.previous]o4826:0, o4828[LinkedList$Entry.previous]o4826:0, o4827[LinkedList$Entry.next]o4827:0, o4827[LinkedList$Entry.next]o4825:0, o4826[LinkedList$Entry.previous]o4826:0, o4826[LinkedList$Entry.previous]o4825:0, o4828[LinkedList$Entry.previous]o4825:0, o4826[LinkedList$Entry.previous]o4827:0, o4828[LinkedList$Entry.previous]o4827:0, o4828[LinkedList$Entry.previous]o4825:0, o4828[LinkedList$Entry.previous]o4827:0, o4827[LinkedList$Entry.next]o4827:0, o4828[LinkedList$Entry.previous]o4827:0, o4826[LinkedList$Entry.previous]o4827:0, o4828[LinkedList$Entry.previous]o4827:0, i1094:0, i1068:0) -> f4669_0_createList_LE(arith, o4881[LinkedList$Entry.previous]o4826:0, o4828[LinkedList$Entry.previous]o4826:0, 4, o4903[LinkedList$Entry.next]o4825:0, o4826[LinkedList$Entry.previous]o4826:0, o4826[LinkedList$Entry.previous]o4825:0, o4881[LinkedList$Entry.previous]o4825:0, o4826[LinkedList$Entry.previous]o4827:0, 1, o4828[LinkedList$Entry.previous]o4825:0, o4828[LinkedList$Entry.previous]o4827:0, 1, o4903[LinkedList$Entry.previous]o4881:0, o4826[LinkedList$Entry.previous]o4881:0, o4881[LinkedList$Entry.previous]o4881:0, i1094:0, arith1) :|: i1094:0 > -1 && i1083:0 > 0 && i1094:0 > i1068:0 && i1068:0 > -1 && o4827[LinkedList$Entry.next]o4825:0 > 0 && o4827[LinkedList$Entry.next]o4827:0 > 0 && o4828[LinkedList$Entry.previous]o4825:0 > 0 && o4828[LinkedList$Entry.previous]o4827:0 > 0 && o4826[LinkedList$Entry.previous]o4825:0 > 0 && o4826[LinkedList$Entry.previous]o4826:0 > 0 && o4826[LinkedList$Entry.previous]o4827:0 > 0 && o4828[LinkedList$Entry.previous]o4826:0 > 0 && arith = i1083:0 - 1 && arith1 = i1068:0 + 1 17.12/9.26 (2) f4669_0_createList_LE(x25, x26, x27, x28, x29, x30, x31, x32, x33, x34, x35, x36, x37, x38, x39, x40, x41, x42) -> f4669_0_createList_LE(x43, x44, x27, x28, x29, x30, x31, x45, x33, x46, x35, x36, x47, x48, x49, x50, x41, x51) :|: x41 > -1 && x25 > 0 && x41 > x42 && x42 > -1 && x29 > 0 && x28 > 0 && x35 > 0 && x36 > 0 && x31 > 0 && x30 > 0 && x40 > 0 && x32 > 0 && x34 > 0 && x37 > 0 && x26 > 0 && x39 > 0 && x38 > 0 && x43 = x25 - 1 && x51 = x42 + 1 17.12/9.26 17.12/9.26 Arcs: 17.12/9.26 (1) -> (2) 17.12/9.26 (2) -> (1), (2) 17.12/9.26 17.12/9.26 This digraph is fully evaluated! 17.12/9.26 ---------------------------------------- 17.12/9.26 17.12/9.26 (12) 17.12/9.26 Obligation: 17.12/9.26 17.12/9.26 Termination digraph: 17.12/9.26 Nodes: 17.12/9.26 (1) f4669_0_createList_LE(i1083:0, o4828[LinkedList$Entry.previous]o4826:0, o4828[LinkedList$Entry.previous]o4826:0, o4827[LinkedList$Entry.next]o4827:0, o4827[LinkedList$Entry.next]o4825:0, o4826[LinkedList$Entry.previous]o4826:0, o4826[LinkedList$Entry.previous]o4825:0, o4828[LinkedList$Entry.previous]o4825:0, o4826[LinkedList$Entry.previous]o4827:0, o4828[LinkedList$Entry.previous]o4827:0, o4828[LinkedList$Entry.previous]o4825:0, o4828[LinkedList$Entry.previous]o4827:0, o4827[LinkedList$Entry.next]o4827:0, o4828[LinkedList$Entry.previous]o4827:0, o4826[LinkedList$Entry.previous]o4827:0, o4828[LinkedList$Entry.previous]o4827:0, i1094:0, i1068:0) -> f4669_0_createList_LE(arith, o4881[LinkedList$Entry.previous]o4826:0, o4828[LinkedList$Entry.previous]o4826:0, 4, o4903[LinkedList$Entry.next]o4825:0, o4826[LinkedList$Entry.previous]o4826:0, o4826[LinkedList$Entry.previous]o4825:0, o4881[LinkedList$Entry.previous]o4825:0, o4826[LinkedList$Entry.previous]o4827:0, 1, o4828[LinkedList$Entry.previous]o4825:0, o4828[LinkedList$Entry.previous]o4827:0, 1, o4903[LinkedList$Entry.previous]o4881:0, o4826[LinkedList$Entry.previous]o4881:0, o4881[LinkedList$Entry.previous]o4881:0, i1094:0, arith1) :|: i1094:0 > -1 && i1083:0 > 0 && i1094:0 > i1068:0 && i1068:0 > -1 && o4827[LinkedList$Entry.next]o4825:0 > 0 && o4827[LinkedList$Entry.next]o4827:0 > 0 && o4828[LinkedList$Entry.previous]o4825:0 > 0 && o4828[LinkedList$Entry.previous]o4827:0 > 0 && o4826[LinkedList$Entry.previous]o4825:0 > 0 && o4826[LinkedList$Entry.previous]o4826:0 > 0 && o4826[LinkedList$Entry.previous]o4827:0 > 0 && o4828[LinkedList$Entry.previous]o4826:0 > 0 && arith = i1083:0 - 1 && arith1 = i1068:0 + 1 17.12/9.26 (2) f4669_0_createList_LE(x25, x26, x27, x28, x29, x30, x31, x32, x33, x34, x35, x36, x37, x38, x39, x40, x41, x42) -> f4669_0_createList_LE(x43, x44, x27, x28, x29, x30, x31, x45, x33, x46, x35, x36, x47, x48, x49, x50, x41, x51) :|: x41 > -1 && x25 > 0 && x41 > x42 && x42 > -1 && x29 > 0 && x28 > 0 && x35 > 0 && x36 > 0 && x31 > 0 && x30 > 0 && x40 > 0 && x32 > 0 && x34 > 0 && x37 > 0 && x26 > 0 && x39 > 0 && x38 > 0 && x43 = x25 - 1 && x51 = x42 + 1 17.12/9.26 17.12/9.26 Arcs: 17.12/9.26 (1) -> (2) 17.12/9.26 (2) -> (1), (2) 17.12/9.26 17.12/9.26 This digraph is fully evaluated! 17.12/9.26 17.12/9.26 ---------------------------------------- 17.12/9.26 17.12/9.26 (13) IntTRSCompressionProof (EQUIVALENT) 17.12/9.26 Compressed rules. 17.12/9.26 ---------------------------------------- 17.12/9.26 17.12/9.26 (14) 17.12/9.26 Obligation: 17.12/9.26 Rules: 17.12/9.26 f4669_0_createList_LE(i1083:0:0, o4828[LinkedList$Entry.previous]o4826:0:0, o4828[LinkedList$Entry.previous]o4826:0:0, o4827[LinkedList$Entry.next]o4827:0:0, o4827[LinkedList$Entry.next]o4825:0:0, o4826[LinkedList$Entry.previous]o4826:0:0, o4826[LinkedList$Entry.previous]o4825:0:0, o4828[LinkedList$Entry.previous]o4825:0:0, o4826[LinkedList$Entry.previous]o4827:0:0, o4828[LinkedList$Entry.previous]o4827:0:0, o4828[LinkedList$Entry.previous]o4825:0:0, o4828[LinkedList$Entry.previous]o4827:0:0, o4827[LinkedList$Entry.next]o4827:0:0, o4828[LinkedList$Entry.previous]o4827:0:0, o4826[LinkedList$Entry.previous]o4827:0:0, o4828[LinkedList$Entry.previous]o4827:0:0, i1094:0:0, i1068:0:0) -> f4669_0_createList_LE(i1083:0:0 - 1, o4881[LinkedList$Entry.previous]o4826:0:0, o4828[LinkedList$Entry.previous]o4826:0:0, 4, o4903[LinkedList$Entry.next]o4825:0:0, o4826[LinkedList$Entry.previous]o4826:0:0, o4826[LinkedList$Entry.previous]o4825:0:0, o4881[LinkedList$Entry.previous]o4825:0:0, o4826[LinkedList$Entry.previous]o4827:0:0, 1, o4828[LinkedList$Entry.previous]o4825:0:0, o4828[LinkedList$Entry.previous]o4827:0:0, 1, o4903[LinkedList$Entry.previous]o4881:0:0, o4826[LinkedList$Entry.previous]o4881:0:0, o4881[LinkedList$Entry.previous]o4881:0:0, i1094:0:0, i1068:0:0 + 1) :|: o4826[LinkedList$Entry.previous]o4827:0:0 > 0 && o4828[LinkedList$Entry.previous]o4826:0:0 > 0 && o4826[LinkedList$Entry.previous]o4826:0:0 > 0 && o4826[LinkedList$Entry.previous]o4825:0:0 > 0 && o4828[LinkedList$Entry.previous]o4827:0:0 > 0 && o4828[LinkedList$Entry.previous]o4825:0:0 > 0 && o4827[LinkedList$Entry.next]o4827:0:0 > 0 && o4827[LinkedList$Entry.next]o4825:0:0 > 0 && i1068:0:0 > -1 && i1094:0:0 > i1068:0:0 && i1083:0:0 > 0 && i1094:0:0 > -1 17.12/9.26 f4669_0_createList_LE(x25:0, x26:0, x27:0, x28:0, x29:0, x30:0, x31:0, x32:0, x33:0, x34:0, x35:0, x36:0, x37:0, x38:0, x39:0, x40:0, x41:0, x42:0) -> f4669_0_createList_LE(x25:0 - 1, x44:0, x27:0, x28:0, x29:0, x30:0, x31:0, x45:0, x33:0, x46:0, x35:0, x36:0, x47:0, x48:0, x49:0, x50:0, x41:0, x42:0 + 1) :|: x39:0 > 0 && x38:0 > 0 && x26:0 > 0 && x37:0 > 0 && x34:0 > 0 && x32:0 > 0 && x40:0 > 0 && x30:0 > 0 && x31:0 > 0 && x36:0 > 0 && x35:0 > 0 && x28:0 > 0 && x29:0 > 0 && x42:0 > -1 && x42:0 < x41:0 && x25:0 > 0 && x41:0 > -1 17.12/9.26 17.12/9.26 ---------------------------------------- 17.12/9.26 17.12/9.26 (15) TempFilterProof (SOUND) 17.12/9.26 Used the following sort dictionary for filtering: 17.12/9.26 f4669_0_createList_LE(INTEGER, VARIABLE, VARIABLE, VARIABLE, VARIABLE, INTEGER, INTEGER, VARIABLE, VARIABLE, VARIABLE, INTEGER, INTEGER, VARIABLE, VARIABLE, VARIABLE, VARIABLE, INTEGER, INTEGER) 17.12/9.26 Replaced non-predefined constructor symbols by 0. 17.12/9.26 ---------------------------------------- 17.12/9.26 17.12/9.26 (16) 17.12/9.26 Obligation: 17.12/9.26 Rules: 17.12/9.26 f4669_0_createList_LE(i1083:0:0, o4828[LinkedList$Entry.previous]o4826:0:0, o4828[LinkedList$Entry.previous]o4826:0:0, o4827[LinkedList$Entry.next]o4827:0:0, o4827[LinkedList$Entry.next]o4825:0:0, o4826[LinkedList$Entry.previous]o4826:0:0, o4826[LinkedList$Entry.previous]o4825:0:0, o4828[LinkedList$Entry.previous]o4825:0:0, o4826[LinkedList$Entry.previous]o4827:0:0, o4828[LinkedList$Entry.previous]o4827:0:0, o4828[LinkedList$Entry.previous]o4825:0:0, o4828[LinkedList$Entry.previous]o4827:0:0, o4827[LinkedList$Entry.next]o4827:0:0, o4828[LinkedList$Entry.previous]o4827:0:0, o4826[LinkedList$Entry.previous]o4827:0:0, o4828[LinkedList$Entry.previous]o4827:0:0, i1094:0:0, i1068:0:0) -> f4669_0_createList_LE(c, o4881[LinkedList$Entry.previous]o4826:0:0, o4828[LinkedList$Entry.previous]o4826:0:0, c1, o4903[LinkedList$Entry.next]o4825:0:0, o4826[LinkedList$Entry.previous]o4826:0:0, o4826[LinkedList$Entry.previous]o4825:0:0, o4881[LinkedList$Entry.previous]o4825:0:0, o4826[LinkedList$Entry.previous]o4827:0:0, c2, o4828[LinkedList$Entry.previous]o4825:0:0, o4828[LinkedList$Entry.previous]o4827:0:0, c3, o4903[LinkedList$Entry.previous]o4881:0:0, o4826[LinkedList$Entry.previous]o4881:0:0, o4881[LinkedList$Entry.previous]o4881:0:0, i1094:0:0, c4) :|: c4 = i1068:0:0 + 1 && (c3 = 1 && (c2 = 1 && (c1 = 4 && c = i1083:0:0 - 1))) && (o4826[LinkedList$Entry.previous]o4827:0:0 > 0 && o4828[LinkedList$Entry.previous]o4826:0:0 > 0 && o4826[LinkedList$Entry.previous]o4826:0:0 > 0 && o4826[LinkedList$Entry.previous]o4825:0:0 > 0 && o4828[LinkedList$Entry.previous]o4827:0:0 > 0 && o4828[LinkedList$Entry.previous]o4825:0:0 > 0 && o4827[LinkedList$Entry.next]o4827:0:0 > 0 && o4827[LinkedList$Entry.next]o4825:0:0 > 0 && i1068:0:0 > -1 && i1094:0:0 > i1068:0:0 && i1083:0:0 > 0 && i1094:0:0 > -1) 17.12/9.26 f4669_0_createList_LE(x25:0, x26:0, x27:0, x28:0, x29:0, x30:0, x31:0, x32:0, x33:0, x34:0, x35:0, x36:0, x37:0, x38:0, x39:0, x40:0, x41:0, x42:0) -> f4669_0_createList_LE(c5, x44:0, x27:0, x28:0, x29:0, x30:0, x31:0, x45:0, x33:0, x46:0, x35:0, x36:0, x47:0, x48:0, x49:0, x50:0, x41:0, c6) :|: c6 = x42:0 + 1 && c5 = x25:0 - 1 && (x39:0 > 0 && x38:0 > 0 && x26:0 > 0 && x37:0 > 0 && x34:0 > 0 && x32:0 > 0 && x40:0 > 0 && x30:0 > 0 && x31:0 > 0 && x36:0 > 0 && x35:0 > 0 && x28:0 > 0 && x29:0 > 0 && x42:0 > -1 && x42:0 < x41:0 && x25:0 > 0 && x41:0 > -1) 17.12/9.26 17.12/9.26 ---------------------------------------- 17.12/9.26 17.12/9.26 (17) PolynomialOrderProcessor (EQUIVALENT) 17.12/9.26 Found the following polynomial interpretation: 17.12/9.26 [f4669_0_createList_LE(x, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12, x13, x14, x15, x16, x17)] = -5 + 3*x + x3 + x5 17.12/9.26 17.12/9.26 The following rules are decreasing: 17.12/9.26 f4669_0_createList_LE(x25:0, x26:0, x27:0, x28:0, x29:0, x30:0, x31:0, x32:0, x33:0, x34:0, x35:0, x36:0, x37:0, x38:0, x39:0, x40:0, x41:0, x42:0) -> f4669_0_createList_LE(c5, x44:0, x27:0, x28:0, x29:0, x30:0, x31:0, x45:0, x33:0, x46:0, x35:0, x36:0, x47:0, x48:0, x49:0, x50:0, x41:0, c6) :|: c6 = x42:0 + 1 && c5 = x25:0 - 1 && (x39:0 > 0 && x38:0 > 0 && x26:0 > 0 && x37:0 > 0 && x34:0 > 0 && x32:0 > 0 && x40:0 > 0 && x30:0 > 0 && x31:0 > 0 && x36:0 > 0 && x35:0 > 0 && x28:0 > 0 && x29:0 > 0 && x42:0 > -1 && x42:0 < x41:0 && x25:0 > 0 && x41:0 > -1) 17.12/9.26 The following rules are bounded: 17.12/9.26 f4669_0_createList_LE(i1083:0:0, o4828[LinkedList$Entry.previous]o4826:0:0, o4828[LinkedList$Entry.previous]o4826:0:0, o4827[LinkedList$Entry.next]o4827:0:0, o4827[LinkedList$Entry.next]o4825:0:0, o4826[LinkedList$Entry.previous]o4826:0:0, o4826[LinkedList$Entry.previous]o4825:0:0, o4828[LinkedList$Entry.previous]o4825:0:0, o4826[LinkedList$Entry.previous]o4827:0:0, o4828[LinkedList$Entry.previous]o4827:0:0, o4828[LinkedList$Entry.previous]o4825:0:0, o4828[LinkedList$Entry.previous]o4827:0:0, o4827[LinkedList$Entry.next]o4827:0:0, o4828[LinkedList$Entry.previous]o4827:0:0, o4826[LinkedList$Entry.previous]o4827:0:0, o4828[LinkedList$Entry.previous]o4827:0:0, i1094:0:0, i1068:0:0) -> f4669_0_createList_LE(c, o4881[LinkedList$Entry.previous]o4826:0:0, o4828[LinkedList$Entry.previous]o4826:0:0, c1, o4903[LinkedList$Entry.next]o4825:0:0, o4826[LinkedList$Entry.previous]o4826:0:0, o4826[LinkedList$Entry.previous]o4825:0:0, o4881[LinkedList$Entry.previous]o4825:0:0, o4826[LinkedList$Entry.previous]o4827:0:0, c2, o4828[LinkedList$Entry.previous]o4825:0:0, o4828[LinkedList$Entry.previous]o4827:0:0, c3, o4903[LinkedList$Entry.previous]o4881:0:0, o4826[LinkedList$Entry.previous]o4881:0:0, o4881[LinkedList$Entry.previous]o4881:0:0, i1094:0:0, c4) :|: c4 = i1068:0:0 + 1 && (c3 = 1 && (c2 = 1 && (c1 = 4 && c = i1083:0:0 - 1))) && (o4826[LinkedList$Entry.previous]o4827:0:0 > 0 && o4828[LinkedList$Entry.previous]o4826:0:0 > 0 && o4826[LinkedList$Entry.previous]o4826:0:0 > 0 && o4826[LinkedList$Entry.previous]o4825:0:0 > 0 && o4828[LinkedList$Entry.previous]o4827:0:0 > 0 && o4828[LinkedList$Entry.previous]o4825:0:0 > 0 && o4827[LinkedList$Entry.next]o4827:0:0 > 0 && o4827[LinkedList$Entry.next]o4825:0:0 > 0 && i1068:0:0 > -1 && i1094:0:0 > i1068:0:0 && i1083:0:0 > 0 && i1094:0:0 > -1) 17.12/9.26 f4669_0_createList_LE(x25:0, x26:0, x27:0, x28:0, x29:0, x30:0, x31:0, x32:0, x33:0, x34:0, x35:0, x36:0, x37:0, x38:0, x39:0, x40:0, x41:0, x42:0) -> f4669_0_createList_LE(c5, x44:0, x27:0, x28:0, x29:0, x30:0, x31:0, x45:0, x33:0, x46:0, x35:0, x36:0, x47:0, x48:0, x49:0, x50:0, x41:0, c6) :|: c6 = x42:0 + 1 && c5 = x25:0 - 1 && (x39:0 > 0 && x38:0 > 0 && x26:0 > 0 && x37:0 > 0 && x34:0 > 0 && x32:0 > 0 && x40:0 > 0 && x30:0 > 0 && x31:0 > 0 && x36:0 > 0 && x35:0 > 0 && x28:0 > 0 && x29:0 > 0 && x42:0 > -1 && x42:0 < x41:0 && x25:0 > 0 && x41:0 > -1) 17.12/9.26 17.12/9.26 ---------------------------------------- 17.12/9.26 17.12/9.26 (18) 17.12/9.26 Obligation: 17.12/9.26 Rules: 17.12/9.26 f4669_0_createList_LE(i1083:0:0, o4828[LinkedList$Entry.previous]o4826:0:0, o4828[LinkedList$Entry.previous]o4826:0:0, o4827[LinkedList$Entry.next]o4827:0:0, o4827[LinkedList$Entry.next]o4825:0:0, o4826[LinkedList$Entry.previous]o4826:0:0, o4826[LinkedList$Entry.previous]o4825:0:0, o4828[LinkedList$Entry.previous]o4825:0:0, o4826[LinkedList$Entry.previous]o4827:0:0, o4828[LinkedList$Entry.previous]o4827:0:0, o4828[LinkedList$Entry.previous]o4825:0:0, o4828[LinkedList$Entry.previous]o4827:0:0, o4827[LinkedList$Entry.next]o4827:0:0, o4828[LinkedList$Entry.previous]o4827:0:0, o4826[LinkedList$Entry.previous]o4827:0:0, o4828[LinkedList$Entry.previous]o4827:0:0, i1094:0:0, i1068:0:0) -> f4669_0_createList_LE(c, o4881[LinkedList$Entry.previous]o4826:0:0, o4828[LinkedList$Entry.previous]o4826:0:0, c1, o4903[LinkedList$Entry.next]o4825:0:0, o4826[LinkedList$Entry.previous]o4826:0:0, o4826[LinkedList$Entry.previous]o4825:0:0, o4881[LinkedList$Entry.previous]o4825:0:0, o4826[LinkedList$Entry.previous]o4827:0:0, c2, o4828[LinkedList$Entry.previous]o4825:0:0, o4828[LinkedList$Entry.previous]o4827:0:0, c3, o4903[LinkedList$Entry.previous]o4881:0:0, o4826[LinkedList$Entry.previous]o4881:0:0, o4881[LinkedList$Entry.previous]o4881:0:0, i1094:0:0, c4) :|: c4 = i1068:0:0 + 1 && (c3 = 1 && (c2 = 1 && (c1 = 4 && c = i1083:0:0 - 1))) && (o4826[LinkedList$Entry.previous]o4827:0:0 > 0 && o4828[LinkedList$Entry.previous]o4826:0:0 > 0 && o4826[LinkedList$Entry.previous]o4826:0:0 > 0 && o4826[LinkedList$Entry.previous]o4825:0:0 > 0 && o4828[LinkedList$Entry.previous]o4827:0:0 > 0 && o4828[LinkedList$Entry.previous]o4825:0:0 > 0 && o4827[LinkedList$Entry.next]o4827:0:0 > 0 && o4827[LinkedList$Entry.next]o4825:0:0 > 0 && i1068:0:0 > -1 && i1094:0:0 > i1068:0:0 && i1083:0:0 > 0 && i1094:0:0 > -1) 17.12/9.26 17.12/9.26 ---------------------------------------- 17.12/9.26 17.12/9.26 (19) RankingReductionPairProof (EQUIVALENT) 17.12/9.26 Interpretation: 17.12/9.26 [ f4669_0_createList_LE ] = f4669_0_createList_LE_1 17.12/9.26 17.12/9.26 The following rules are decreasing: 17.12/9.26 f4669_0_createList_LE(i1083:0:0, o4828[LinkedList$Entry.previous]o4826:0:0, o4828[LinkedList$Entry.previous]o4826:0:0, o4827[LinkedList$Entry.next]o4827:0:0, o4827[LinkedList$Entry.next]o4825:0:0, o4826[LinkedList$Entry.previous]o4826:0:0, o4826[LinkedList$Entry.previous]o4825:0:0, o4828[LinkedList$Entry.previous]o4825:0:0, o4826[LinkedList$Entry.previous]o4827:0:0, o4828[LinkedList$Entry.previous]o4827:0:0, o4828[LinkedList$Entry.previous]o4825:0:0, o4828[LinkedList$Entry.previous]o4827:0:0, o4827[LinkedList$Entry.next]o4827:0:0, o4828[LinkedList$Entry.previous]o4827:0:0, o4826[LinkedList$Entry.previous]o4827:0:0, o4828[LinkedList$Entry.previous]o4827:0:0, i1094:0:0, i1068:0:0) -> f4669_0_createList_LE(c, o4881[LinkedList$Entry.previous]o4826:0:0, o4828[LinkedList$Entry.previous]o4826:0:0, c1, o4903[LinkedList$Entry.next]o4825:0:0, o4826[LinkedList$Entry.previous]o4826:0:0, o4826[LinkedList$Entry.previous]o4825:0:0, o4881[LinkedList$Entry.previous]o4825:0:0, o4826[LinkedList$Entry.previous]o4827:0:0, c2, o4828[LinkedList$Entry.previous]o4825:0:0, o4828[LinkedList$Entry.previous]o4827:0:0, c3, o4903[LinkedList$Entry.previous]o4881:0:0, o4826[LinkedList$Entry.previous]o4881:0:0, o4881[LinkedList$Entry.previous]o4881:0:0, i1094:0:0, c4) :|: c4 = i1068:0:0 + 1 && (c3 = 1 && (c2 = 1 && (c1 = 4 && c = i1083:0:0 - 1))) && (o4826[LinkedList$Entry.previous]o4827:0:0 > 0 && o4828[LinkedList$Entry.previous]o4826:0:0 > 0 && o4826[LinkedList$Entry.previous]o4826:0:0 > 0 && o4826[LinkedList$Entry.previous]o4825:0:0 > 0 && o4828[LinkedList$Entry.previous]o4827:0:0 > 0 && o4828[LinkedList$Entry.previous]o4825:0:0 > 0 && o4827[LinkedList$Entry.next]o4827:0:0 > 0 && o4827[LinkedList$Entry.next]o4825:0:0 > 0 && i1068:0:0 > -1 && i1094:0:0 > i1068:0:0 && i1083:0:0 > 0 && i1094:0:0 > -1) 17.12/9.26 17.12/9.26 The following rules are bounded: 17.12/9.26 f4669_0_createList_LE(i1083:0:0, o4828[LinkedList$Entry.previous]o4826:0:0, o4828[LinkedList$Entry.previous]o4826:0:0, o4827[LinkedList$Entry.next]o4827:0:0, o4827[LinkedList$Entry.next]o4825:0:0, o4826[LinkedList$Entry.previous]o4826:0:0, o4826[LinkedList$Entry.previous]o4825:0:0, o4828[LinkedList$Entry.previous]o4825:0:0, o4826[LinkedList$Entry.previous]o4827:0:0, o4828[LinkedList$Entry.previous]o4827:0:0, o4828[LinkedList$Entry.previous]o4825:0:0, o4828[LinkedList$Entry.previous]o4827:0:0, o4827[LinkedList$Entry.next]o4827:0:0, o4828[LinkedList$Entry.previous]o4827:0:0, o4826[LinkedList$Entry.previous]o4827:0:0, o4828[LinkedList$Entry.previous]o4827:0:0, i1094:0:0, i1068:0:0) -> f4669_0_createList_LE(c, o4881[LinkedList$Entry.previous]o4826:0:0, o4828[LinkedList$Entry.previous]o4826:0:0, c1, o4903[LinkedList$Entry.next]o4825:0:0, o4826[LinkedList$Entry.previous]o4826:0:0, o4826[LinkedList$Entry.previous]o4825:0:0, o4881[LinkedList$Entry.previous]o4825:0:0, o4826[LinkedList$Entry.previous]o4827:0:0, c2, o4828[LinkedList$Entry.previous]o4825:0:0, o4828[LinkedList$Entry.previous]o4827:0:0, c3, o4903[LinkedList$Entry.previous]o4881:0:0, o4826[LinkedList$Entry.previous]o4881:0:0, o4881[LinkedList$Entry.previous]o4881:0:0, i1094:0:0, c4) :|: c4 = i1068:0:0 + 1 && (c3 = 1 && (c2 = 1 && (c1 = 4 && c = i1083:0:0 - 1))) && (o4826[LinkedList$Entry.previous]o4827:0:0 > 0 && o4828[LinkedList$Entry.previous]o4826:0:0 > 0 && o4826[LinkedList$Entry.previous]o4826:0:0 > 0 && o4826[LinkedList$Entry.previous]o4825:0:0 > 0 && o4828[LinkedList$Entry.previous]o4827:0:0 > 0 && o4828[LinkedList$Entry.previous]o4825:0:0 > 0 && o4827[LinkedList$Entry.next]o4827:0:0 > 0 && o4827[LinkedList$Entry.next]o4825:0:0 > 0 && i1068:0:0 > -1 && i1094:0:0 > i1068:0:0 && i1083:0:0 > 0 && i1094:0:0 > -1) 17.12/9.26 17.12/9.26 17.12/9.26 ---------------------------------------- 17.12/9.26 17.12/9.26 (20) 17.12/9.26 YES 17.12/9.30 EOF