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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

The twelve methods described above are summarized in the 15.74/5.28 * following table: 15.74/5.28 * 15.74/5.28 *

15.74/5.28 * 15.74/5.28 * 15.74/5.28 * 15.74/5.28 * 15.74/5.28 * 15.74/5.28 * 15.74/5.28 * 15.74/5.28 * 15.74/5.28 * 15.74/5.28 * 15.74/5.28 * 15.74/5.28 * 15.74/5.28 * 15.74/5.28 * 15.74/5.28 * 15.74/5.28 * 15.74/5.28 * 15.74/5.28 * 15.74/5.28 * 15.74/5.28 * 15.74/5.28 * 15.74/5.28 * 15.74/5.28 * 15.74/5.28 * 15.74/5.28 * 15.74/5.28 * 15.74/5.28 * 15.74/5.28 * 15.74/5.28 * 15.74/5.28 * 15.74/5.28 * 15.74/5.28 * 15.74/5.28 * 15.74/5.28 * 15.74/5.28 *
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()}
15.74/5.28 * 15.74/5.28 *

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

15.74/5.28 * 15.74/5.28 * 15.74/5.28 * 15.74/5.28 * 15.74/5.28 * 15.74/5.28 * 15.74/5.28 * 15.74/5.28 * 15.74/5.28 * 15.74/5.28 * 15.74/5.28 * 15.74/5.28 * 15.74/5.28 * 15.74/5.28 * 15.74/5.28 * 15.74/5.28 * 15.74/5.28 * 15.74/5.28 * 15.74/5.28 * 15.74/5.28 * 15.74/5.28 * 15.74/5.28 * 15.74/5.28 * 15.74/5.28 * 15.74/5.28 * 15.74/5.28 * 15.74/5.28 * 15.74/5.28 * 15.74/5.28 * 15.74/5.28 *
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()}
15.74/5.28 * 15.74/5.28 *

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

15.74/5.28 * 15.74/5.28 * 15.74/5.28 * 15.74/5.28 * 15.74/5.28 * 15.74/5.28 * 15.74/5.28 * 15.74/5.28 * 15.74/5.28 * 15.74/5.28 * 15.74/5.28 * 15.74/5.28 * 15.74/5.28 * 15.74/5.28 * 15.74/5.28 * 15.74/5.28 * 15.74/5.28 * 15.74/5.28 *
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()}
15.74/5.28 * 15.74/5.28 *

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

15.74/5.28 * 15.74/5.28 *

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

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

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

15.74/5.28 * 15.74/5.28 *

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

15.74/5.28	 *   List list = Collections.synchronizedList(new LinkedList(...));
15.74/5.28 * 15.74/5.28 *

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

15.74/5.29 * 15.74/5.29 * 15.74/5.29 * 15.74/5.29 * 15.74/5.29 * 15.74/5.29 * 15.74/5.29 * 15.74/5.29 * 15.74/5.29 * 15.74/5.29 * 15.74/5.29 * 15.74/5.29 * 15.74/5.29 * 15.74/5.29 * 15.74/5.29 * 15.74/5.29 * 15.74/5.29 * 15.74/5.29 * 15.74/5.29 * 15.74/5.29 * 15.74/5.29 * 15.74/5.29 *
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()}
15.74/5.29 * 15.74/5.29 *

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

The twelve methods described above are summarized in the 15.99/5.30 * following table: 15.99/5.30 * 15.99/5.30 *

15.99/5.30 * 15.99/5.30 * 15.99/5.30 * 15.99/5.30 * 15.99/5.30 * 15.99/5.30 * 15.99/5.30 * 15.99/5.30 * 15.99/5.30 * 15.99/5.30 * 15.99/5.30 * 15.99/5.30 * 15.99/5.30 * 15.99/5.30 * 15.99/5.30 * 15.99/5.30 * 15.99/5.30 * 15.99/5.30 * 15.99/5.30 * 15.99/5.30 * 15.99/5.30 * 15.99/5.30 * 15.99/5.30 * 15.99/5.30 * 15.99/5.30 * 15.99/5.30 * 15.99/5.30 * 15.99/5.30 * 15.99/5.30 * 15.99/5.30 * 15.99/5.30 * 15.99/5.30 * 15.99/5.30 * 15.99/5.30 * 15.99/5.30 *
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()}
15.99/5.30 * 15.99/5.30 *

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

15.99/5.30 * 15.99/5.30 * 15.99/5.30 * 15.99/5.30 * 15.99/5.30 * 15.99/5.30 * 15.99/5.30 * 15.99/5.30 * 15.99/5.30 * 15.99/5.30 * 15.99/5.30 * 15.99/5.30 * 15.99/5.30 * 15.99/5.30 * 15.99/5.30 * 15.99/5.30 * 15.99/5.30 * 15.99/5.30 * 15.99/5.30 * 15.99/5.30 * 15.99/5.30 * 15.99/5.30 * 15.99/5.30 * 15.99/5.30 * 15.99/5.30 * 15.99/5.30 * 15.99/5.30 * 15.99/5.30 * 15.99/5.30 * 15.99/5.30 *
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()}
15.99/5.30 * 15.99/5.30 *

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

15.99/5.30 * 15.99/5.30 * 15.99/5.30 * 15.99/5.30 * 15.99/5.30 * 15.99/5.30 * 15.99/5.30 * 15.99/5.30 * 15.99/5.30 * 15.99/5.30 * 15.99/5.30 * 15.99/5.30 * 15.99/5.30 * 15.99/5.30 * 15.99/5.30 * 15.99/5.30 * 15.99/5.30 * 15.99/5.30 *
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()}
15.99/5.30 * 15.99/5.30 *

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

15.99/5.30 * 15.99/5.30 *

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

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

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

15.99/5.30 * 15.99/5.30 *

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

15.99/5.30	 *   List list = Collections.synchronizedList(new LinkedList(...));
15.99/5.30 * 15.99/5.30 *

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

15.99/5.31 * 15.99/5.31 * 15.99/5.31 * 15.99/5.31 * 15.99/5.31 * 15.99/5.31 * 15.99/5.31 * 15.99/5.31 * 15.99/5.31 * 15.99/5.31 * 15.99/5.31 * 15.99/5.31 * 15.99/5.31 * 15.99/5.31 * 15.99/5.31 * 15.99/5.31 * 15.99/5.31 * 15.99/5.31 * 15.99/5.31 * 15.99/5.31 * 15.99/5.31 * 15.99/5.31 *
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()}
15.99/5.31 * 15.99/5.31 *

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

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

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

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

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

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

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

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

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

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

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

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

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

Note that the detail message associated with cause is 15.99/5.31 * not automatically incorporated in this exception's detail 15.99/5.31 * message. 15.99/5.31 * 15.99/5.31 * @param message the detail message (which is saved for later retrieval 15.99/5.31 * by the {@link Throwable#getMessage()} method). 15.99/5.31 * @param cause the cause (which is saved for later retrieval by the 15.99/5.31 * {@link Throwable#getCause()} method). (A null value 15.99/5.31 * is permitted, and indicates that the cause is nonexistent or 15.99/5.31 * unknown.) 15.99/5.31 * @since 1.5 15.99/5.31 */ 15.99/5.31 public UnsupportedOperationException(String message, Throwable cause) { 15.99/5.31 super(message, cause); 15.99/5.31 } 15.99/5.31 15.99/5.31 /** 15.99/5.31 * Constructs a new exception with the specified cause and a detail 15.99/5.31 * message of (cause==null ? null : cause.toString()) (which 15.99/5.31 * typically contains the class and detail message of cause). 15.99/5.31 * This constructor is useful for exceptions that are little more than 15.99/5.31 * wrappers for other throwables (for example, {@link 15.99/5.31 * java.security.PrivilegedActionException}). 15.99/5.31 * 15.99/5.31 * @param cause the cause (which is saved for later retrieval by the 15.99/5.31 * {@link Throwable#getCause()} method). (A null value is 15.99/5.31 * permitted, and indicates that the cause is nonexistent or 15.99/5.31 * unknown.) 15.99/5.31 * @since 1.5 15.99/5.31 */ 15.99/5.31 public UnsupportedOperationException(Throwable cause) { 15.99/5.31 super(cause); 15.99/5.31 } 15.99/5.31 15.99/5.31 static final long serialVersionUID = -1242599979055084673L; 15.99/5.31 } 15.99/5.31 15.99/5.31 15.99/5.31 15.99/5.31 ---------------------------------------- 15.99/5.31 15.99/5.31 (3) JBCToGraph (EQUIVALENT) 15.99/5.31 Constructed TerminationGraph. 15.99/5.31 ---------------------------------------- 15.99/5.31 15.99/5.31 (4) 15.99/5.31 Obligation: 15.99/5.31 Termination Graph based on JBC Program: 15.99/5.31 javaUtilEx.juLinkedListCreatePush.main([Ljava/lang/String;)V: Graph of 490 nodes with 0 SCCs. 15.99/5.31 15.99/5.31 15.99/5.31 15.99/5.31 javaUtilEx.juLinkedListCreatePush.createList(I)LjavaUtilEx/LinkedList;: Graph of 250 nodes with 1 SCC. 15.99/5.31 15.99/5.31 15.99/5.31 15.99/5.31 15.99/5.31 15.99/5.31 ---------------------------------------- 15.99/5.31 15.99/5.31 (5) TerminationGraphToSCCProof (SOUND) 15.99/5.31 Splitted TerminationGraph to 1 SCCs. 15.99/5.31 ---------------------------------------- 15.99/5.31 15.99/5.31 (6) 15.99/5.31 Obligation: 15.99/5.31 SCC of termination graph based on JBC Program. 15.99/5.31 SCC contains nodes from the following methods: javaUtilEx.juLinkedListCreatePush.createList(I)LjavaUtilEx/LinkedList; 15.99/5.31 SCC calls the following helper methods: 15.99/5.31 Performed SCC analyses: 15.99/5.31 *Used field analysis yielded the following read fields: 15.99/5.31 *java.lang.String: [count] 15.99/5.31 *javaUtilEx.LinkedList: [header, size] 15.99/5.31 *javaUtilEx.LinkedList$Entry: [previous, next] 15.99/5.31 *javaUtilEx.AbstractList: [modCount] 15.99/5.31 *Marker field analysis yielded the following relations that could be markers: 15.99/5.31 15.99/5.31 ---------------------------------------- 15.99/5.31 15.99/5.31 (7) SCCToIRSProof (SOUND) 15.99/5.31 Transformed FIGraph SCCs to intTRSs. Log: 15.99/5.31 Generated rules. Obtained 118 IRulesP rules: 15.99/5.31 f5348_0_createList_LE(EOS(STATIC_5348(java.lang.Object(o10117sub), i1201)), i1231, i1231, o10122[LinkedList$Entry.next]o10121, o10123[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.next]o10122, o10122[LinkedList$Entry.next]o10120, o10121[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10120, o10123[LinkedList$Entry.previous]o10120, o10121[LinkedList$Entry.previous]o10122, o10123[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.previous]o10120, o10122[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.next]o10123, o10122[LinkedList$Entry.previous]o10123, o10121[LinkedList$Entry.previous]o10123, o10123[LinkedList$Entry.previous]o10123) -> f5356_0_createList_LE(EOS(STATIC_5356(java.lang.Object(o10117sub), i1201)), i1231, i1231, o10122[LinkedList$Entry.next]o10121, o10123[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.next]o10122, o10122[LinkedList$Entry.next]o10120, o10121[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10120, o10123[LinkedList$Entry.previous]o10120, o10121[LinkedList$Entry.previous]o10122, o10123[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.previous]o10120, o10122[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.next]o10123, o10122[LinkedList$Entry.previous]o10123, o10121[LinkedList$Entry.previous]o10123, o10123[LinkedList$Entry.previous]o10123) :|: TRUE 15.99/5.31 f5356_0_createList_LE(EOS(STATIC_5356(java.lang.Object(o10117sub), i1201)), i1231, i1231, o10122[LinkedList$Entry.next]o10121, o10123[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.next]o10122, o10122[LinkedList$Entry.next]o10120, o10121[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10120, o10123[LinkedList$Entry.previous]o10120, o10121[LinkedList$Entry.previous]o10122, o10123[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.previous]o10120, o10122[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.next]o10123, o10122[LinkedList$Entry.previous]o10123, o10121[LinkedList$Entry.previous]o10123, o10123[LinkedList$Entry.previous]o10123) -> f5364_0_createList_Load(EOS(STATIC_5364(java.lang.Object(o10117sub), i1201)), i1231, o10122[LinkedList$Entry.next]o10121, o10123[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.next]o10122, o10122[LinkedList$Entry.next]o10120, o10121[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10120, o10123[LinkedList$Entry.previous]o10120, o10121[LinkedList$Entry.previous]o10122, o10123[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.previous]o10120, o10122[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.next]o10123, o10122[LinkedList$Entry.previous]o10123, o10121[LinkedList$Entry.previous]o10123, o10123[LinkedList$Entry.previous]o10123) :|: i1231 > 0 15.99/5.31 f5364_0_createList_Load(EOS(STATIC_5364(java.lang.Object(o10117sub), i1201)), i1231, o10122[LinkedList$Entry.next]o10121, o10123[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.next]o10122, o10122[LinkedList$Entry.next]o10120, o10121[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10120, o10123[LinkedList$Entry.previous]o10120, o10121[LinkedList$Entry.previous]o10122, o10123[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.previous]o10120, o10122[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.next]o10123, o10122[LinkedList$Entry.previous]o10123, o10121[LinkedList$Entry.previous]o10123, o10123[LinkedList$Entry.previous]o10123) -> f5372_0_createList_New(EOS(STATIC_5372(java.lang.Object(o10117sub), i1201)), i1231, o10122[LinkedList$Entry.next]o10121, o10123[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.next]o10122, o10122[LinkedList$Entry.next]o10120, o10121[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10120, o10123[LinkedList$Entry.previous]o10120, o10121[LinkedList$Entry.previous]o10122, o10123[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.previous]o10120, o10122[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.next]o10123, o10122[LinkedList$Entry.previous]o10123, o10121[LinkedList$Entry.previous]o10123, o10123[LinkedList$Entry.previous]o10123) :|: TRUE 15.99/5.31 f5372_0_createList_New(EOS(STATIC_5372(java.lang.Object(o10117sub), i1201)), i1231, o10122[LinkedList$Entry.next]o10121, o10123[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.next]o10122, o10122[LinkedList$Entry.next]o10120, o10121[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10120, o10123[LinkedList$Entry.previous]o10120, o10121[LinkedList$Entry.previous]o10122, o10123[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.previous]o10120, o10122[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.next]o10123, o10122[LinkedList$Entry.previous]o10123, o10121[LinkedList$Entry.previous]o10123, o10123[LinkedList$Entry.previous]o10123) -> f5380_0_createList_Duplicate(EOS(STATIC_5380(java.lang.Object(o10117sub), i1201)), i1231, o10122[LinkedList$Entry.next]o10121, o10123[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.next]o10122, o10122[LinkedList$Entry.next]o10120, o10121[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10120, o10123[LinkedList$Entry.previous]o10120, o10121[LinkedList$Entry.previous]o10122, o10123[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.previous]o10120, o10122[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.next]o10123, o10122[LinkedList$Entry.previous]o10123, o10121[LinkedList$Entry.previous]o10123, o10123[LinkedList$Entry.previous]o10123) :|: TRUE 15.99/5.31 f5380_0_createList_Duplicate(EOS(STATIC_5380(java.lang.Object(o10117sub), i1201)), i1231, o10122[LinkedList$Entry.next]o10121, o10123[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.next]o10122, o10122[LinkedList$Entry.next]o10120, o10121[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10120, o10123[LinkedList$Entry.previous]o10120, o10121[LinkedList$Entry.previous]o10122, o10123[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.previous]o10120, o10122[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.next]o10123, o10122[LinkedList$Entry.previous]o10123, o10121[LinkedList$Entry.previous]o10123, o10123[LinkedList$Entry.previous]o10123) -> f5387_0_createList_InvokeMethod(EOS(STATIC_5387(java.lang.Object(o10117sub), i1201)), i1231, o10122[LinkedList$Entry.next]o10121, o10123[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.next]o10122, o10122[LinkedList$Entry.next]o10120, o10121[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10120, o10123[LinkedList$Entry.previous]o10120, o10121[LinkedList$Entry.previous]o10122, o10123[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.previous]o10120, o10122[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.next]o10123, o10122[LinkedList$Entry.previous]o10123, o10121[LinkedList$Entry.previous]o10123, o10123[LinkedList$Entry.previous]o10123) :|: TRUE 15.99/5.31 f5387_0_createList_InvokeMethod(EOS(STATIC_5387(java.lang.Object(o10117sub), i1201)), i1231, o10122[LinkedList$Entry.next]o10121, o10123[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.next]o10122, o10122[LinkedList$Entry.next]o10120, o10121[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10120, o10123[LinkedList$Entry.previous]o10120, o10121[LinkedList$Entry.previous]o10122, o10123[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.previous]o10120, o10122[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.next]o10123, o10122[LinkedList$Entry.previous]o10123, o10121[LinkedList$Entry.previous]o10123, o10123[LinkedList$Entry.previous]o10123) -> f5395_0_random_FieldAccess(EOS(STATIC_5395(java.lang.Object(o10117sub), i1201)), i1231, o10122[LinkedList$Entry.next]o10121, o10123[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.next]o10122, o10122[LinkedList$Entry.next]o10120, o10121[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10120, o10123[LinkedList$Entry.previous]o10120, o10121[LinkedList$Entry.previous]o10122, o10123[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.previous]o10120, o10122[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.next]o10123, o10122[LinkedList$Entry.previous]o10123, o10121[LinkedList$Entry.previous]o10123, o10123[LinkedList$Entry.previous]o10123) :|: TRUE 15.99/5.31 f5395_0_random_FieldAccess(EOS(STATIC_5395(java.lang.Object(o10117sub), i1201)), i1231, o10122[LinkedList$Entry.next]o10121, o10123[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.next]o10122, o10122[LinkedList$Entry.next]o10120, o10121[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10120, o10123[LinkedList$Entry.previous]o10120, o10121[LinkedList$Entry.previous]o10122, o10123[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.previous]o10120, o10122[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.next]o10123, o10122[LinkedList$Entry.previous]o10123, o10121[LinkedList$Entry.previous]o10123, o10123[LinkedList$Entry.previous]o10123) -> f5406_0_random_FieldAccess(EOS(STATIC_5406(java.lang.Object(o10117sub), i1201)), i1231, java.lang.Object(o10117sub), o10122[LinkedList$Entry.next]o10121, o10123[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.next]o10122, o10122[LinkedList$Entry.next]o10120, o10121[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10120, o10123[LinkedList$Entry.previous]o10120, o10121[LinkedList$Entry.previous]o10122, o10123[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.previous]o10120, o10122[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.next]o10123, o10122[LinkedList$Entry.previous]o10123, o10121[LinkedList$Entry.previous]o10123, o10123[LinkedList$Entry.previous]o10123) :|: TRUE 15.99/5.31 f5406_0_random_FieldAccess(EOS(STATIC_5406(java.lang.Object(o10117sub), i1201)), i1231, java.lang.Object(o10117sub), o10122[LinkedList$Entry.next]o10121, o10123[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.next]o10122, o10122[LinkedList$Entry.next]o10120, o10121[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10120, o10123[LinkedList$Entry.previous]o10120, o10121[LinkedList$Entry.previous]o10122, o10123[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.previous]o10120, o10122[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.next]o10123, o10122[LinkedList$Entry.previous]o10123, o10121[LinkedList$Entry.previous]o10123, o10123[LinkedList$Entry.previous]o10123) -> f5411_0_random_ArrayAccess(EOS(STATIC_5411(java.lang.Object(o10117sub), i1201)), i1231, java.lang.Object(o10117sub), i1201, o10122[LinkedList$Entry.next]o10121, o10123[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.next]o10122, o10122[LinkedList$Entry.next]o10120, o10121[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10120, o10123[LinkedList$Entry.previous]o10120, o10121[LinkedList$Entry.previous]o10122, o10123[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.previous]o10120, o10122[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.next]o10123, o10122[LinkedList$Entry.previous]o10123, o10121[LinkedList$Entry.previous]o10123, o10123[LinkedList$Entry.previous]o10123) :|: TRUE 15.99/5.31 f5411_0_random_ArrayAccess(EOS(STATIC_5411(java.lang.Object(ARRAY(i1291)), i1201)), i1231, java.lang.Object(ARRAY(i1291)), i1201, o10122[LinkedList$Entry.next]o10121, o10123[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.next]o10122, o10122[LinkedList$Entry.next]o10120, o10121[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10120, o10123[LinkedList$Entry.previous]o10120, o10121[LinkedList$Entry.previous]o10122, o10123[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.previous]o10120, o10122[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.next]o10123, o10122[LinkedList$Entry.previous]o10123, o10121[LinkedList$Entry.previous]o10123, o10123[LinkedList$Entry.previous]o10123) -> f5416_0_random_ArrayAccess(EOS(STATIC_5416(java.lang.Object(ARRAY(i1291)), i1201)), i1231, java.lang.Object(ARRAY(i1291)), i1201, o10122[LinkedList$Entry.next]o10121, o10123[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.next]o10122, o10122[LinkedList$Entry.next]o10120, o10121[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10120, o10123[LinkedList$Entry.previous]o10120, o10121[LinkedList$Entry.previous]o10122, o10123[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.previous]o10120, o10122[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.next]o10123, o10122[LinkedList$Entry.previous]o10123, o10121[LinkedList$Entry.previous]o10123, o10123[LinkedList$Entry.previous]o10123) :|: i1291 >= 0 15.99/5.31 f5416_0_random_ArrayAccess(EOS(STATIC_5416(java.lang.Object(ARRAY(i1291)), i1293)), i1231, java.lang.Object(ARRAY(i1291)), i1293, o10122[LinkedList$Entry.next]o10121, o10123[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.next]o10122, o10122[LinkedList$Entry.next]o10120, o10121[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10120, o10123[LinkedList$Entry.previous]o10120, o10121[LinkedList$Entry.previous]o10122, o10123[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.previous]o10120, o10122[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.next]o10123, o10122[LinkedList$Entry.previous]o10123, o10121[LinkedList$Entry.previous]o10123, o10123[LinkedList$Entry.previous]o10123) -> f5420_0_random_ArrayAccess(EOS(STATIC_5420(java.lang.Object(ARRAY(i1291)), i1293)), i1231, java.lang.Object(ARRAY(i1291)), i1293, o10122[LinkedList$Entry.next]o10121, o10123[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.next]o10122, o10122[LinkedList$Entry.next]o10120, o10121[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10120, o10123[LinkedList$Entry.previous]o10120, o10121[LinkedList$Entry.previous]o10122, o10123[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.previous]o10120, o10122[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.next]o10123, o10122[LinkedList$Entry.previous]o10123, o10121[LinkedList$Entry.previous]o10123, o10123[LinkedList$Entry.previous]o10123) :|: TRUE 15.99/5.31 f5420_0_random_ArrayAccess(EOS(STATIC_5420(java.lang.Object(ARRAY(i1291)), i1293)), i1231, java.lang.Object(ARRAY(i1291)), i1293, o10122[LinkedList$Entry.next]o10121, o10123[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.next]o10122, o10122[LinkedList$Entry.next]o10120, o10121[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10120, o10123[LinkedList$Entry.previous]o10120, o10121[LinkedList$Entry.previous]o10122, o10123[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.previous]o10120, o10122[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.next]o10123, o10122[LinkedList$Entry.previous]o10123, o10121[LinkedList$Entry.previous]o10123, o10123[LinkedList$Entry.previous]o10123) -> f5423_0_random_ArrayAccess(EOS(STATIC_5423(java.lang.Object(ARRAY(i1291)), i1293)), i1231, java.lang.Object(ARRAY(i1291)), i1293, o10122[LinkedList$Entry.next]o10121, o10123[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.next]o10122, o10122[LinkedList$Entry.next]o10120, o10121[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10120, o10123[LinkedList$Entry.previous]o10120, o10121[LinkedList$Entry.previous]o10122, o10123[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.previous]o10120, o10122[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.next]o10123, o10122[LinkedList$Entry.previous]o10123, o10121[LinkedList$Entry.previous]o10123, o10123[LinkedList$Entry.previous]o10123) :|: TRUE 15.99/5.31 f5423_0_random_ArrayAccess(EOS(STATIC_5423(java.lang.Object(ARRAY(i1291)), i1293)), i1231, java.lang.Object(ARRAY(i1291)), i1293, o10122[LinkedList$Entry.next]o10121, o10123[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.next]o10122, o10122[LinkedList$Entry.next]o10120, o10121[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10120, o10123[LinkedList$Entry.previous]o10120, o10121[LinkedList$Entry.previous]o10122, o10123[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.previous]o10120, o10122[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.next]o10123, o10122[LinkedList$Entry.previous]o10123, o10121[LinkedList$Entry.previous]o10123, o10123[LinkedList$Entry.previous]o10123) -> f5426_0_random_Store(EOS(STATIC_5426(java.lang.Object(ARRAY(i1291)), i1293)), i1231, o10636, o10122[LinkedList$Entry.next]o10121, o10123[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.next]o10122, o10122[LinkedList$Entry.next]o10120, o10121[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10120, o10123[LinkedList$Entry.previous]o10120, o10121[LinkedList$Entry.previous]o10122, o10123[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.previous]o10120, o10122[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.next]o10123, o10122[LinkedList$Entry.previous]o10123, o10121[LinkedList$Entry.previous]o10123, o10123[LinkedList$Entry.previous]o10123) :|: i1293 < i1291 15.99/5.31 f5426_0_random_Store(EOS(STATIC_5426(java.lang.Object(ARRAY(i1291)), i1293)), i1231, o10636, o10122[LinkedList$Entry.next]o10121, o10123[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.next]o10122, o10122[LinkedList$Entry.next]o10120, o10121[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10120, o10123[LinkedList$Entry.previous]o10120, o10121[LinkedList$Entry.previous]o10122, o10123[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.previous]o10120, o10122[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.next]o10123, o10122[LinkedList$Entry.previous]o10123, o10121[LinkedList$Entry.previous]o10123, o10123[LinkedList$Entry.previous]o10123) -> f5429_0_random_FieldAccess(EOS(STATIC_5429(java.lang.Object(ARRAY(i1291)), i1293)), i1231, o10636, o10122[LinkedList$Entry.next]o10121, o10123[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.next]o10122, o10122[LinkedList$Entry.next]o10120, o10121[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10120, o10123[LinkedList$Entry.previous]o10120, o10121[LinkedList$Entry.previous]o10122, o10123[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.previous]o10120, o10122[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.next]o10123, o10122[LinkedList$Entry.previous]o10123, o10121[LinkedList$Entry.previous]o10123, o10123[LinkedList$Entry.previous]o10123) :|: TRUE 15.99/5.31 f5429_0_random_FieldAccess(EOS(STATIC_5429(java.lang.Object(ARRAY(i1291)), i1293)), i1231, o10636, o10122[LinkedList$Entry.next]o10121, o10123[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.next]o10122, o10122[LinkedList$Entry.next]o10120, o10121[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10120, o10123[LinkedList$Entry.previous]o10120, o10121[LinkedList$Entry.previous]o10122, o10123[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.previous]o10120, o10122[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.next]o10123, o10122[LinkedList$Entry.previous]o10123, o10121[LinkedList$Entry.previous]o10123, o10123[LinkedList$Entry.previous]o10123) -> f5431_0_random_ConstantStackPush(EOS(STATIC_5431(java.lang.Object(ARRAY(i1291)), i1293)), i1231, o10636, i1293, o10122[LinkedList$Entry.next]o10121, o10123[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.next]o10122, o10122[LinkedList$Entry.next]o10120, o10121[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10120, o10123[LinkedList$Entry.previous]o10120, o10121[LinkedList$Entry.previous]o10122, o10123[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.previous]o10120, o10122[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.next]o10123, o10122[LinkedList$Entry.previous]o10123, o10121[LinkedList$Entry.previous]o10123, o10123[LinkedList$Entry.previous]o10123) :|: TRUE 15.99/5.31 f5431_0_random_ConstantStackPush(EOS(STATIC_5431(java.lang.Object(ARRAY(i1291)), i1293)), i1231, o10636, i1293, o10122[LinkedList$Entry.next]o10121, o10123[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.next]o10122, o10122[LinkedList$Entry.next]o10120, o10121[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10120, o10123[LinkedList$Entry.previous]o10120, o10121[LinkedList$Entry.previous]o10122, o10123[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.previous]o10120, o10122[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.next]o10123, o10122[LinkedList$Entry.previous]o10123, o10121[LinkedList$Entry.previous]o10123, o10123[LinkedList$Entry.previous]o10123) -> f5433_0_random_IntArithmetic(EOS(STATIC_5433(java.lang.Object(ARRAY(i1291)), i1293)), i1231, o10636, i1293, 1, o10122[LinkedList$Entry.next]o10121, o10123[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.next]o10122, o10122[LinkedList$Entry.next]o10120, o10121[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10120, o10123[LinkedList$Entry.previous]o10120, o10121[LinkedList$Entry.previous]o10122, o10123[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.previous]o10120, o10122[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.next]o10123, o10122[LinkedList$Entry.previous]o10123, o10121[LinkedList$Entry.previous]o10123, o10123[LinkedList$Entry.previous]o10123) :|: TRUE 15.99/5.31 f5433_0_random_IntArithmetic(EOS(STATIC_5433(java.lang.Object(ARRAY(i1291)), i1293)), i1231, o10636, i1293, matching1, o10122[LinkedList$Entry.next]o10121, o10123[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.next]o10122, o10122[LinkedList$Entry.next]o10120, o10121[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10120, o10123[LinkedList$Entry.previous]o10120, o10121[LinkedList$Entry.previous]o10122, o10123[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.previous]o10120, o10122[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.next]o10123, o10122[LinkedList$Entry.previous]o10123, o10121[LinkedList$Entry.previous]o10123, o10123[LinkedList$Entry.previous]o10123) -> f5436_0_random_FieldAccess(EOS(STATIC_5436(java.lang.Object(ARRAY(i1291)), i1293)), i1231, o10636, i1293 + 1, o10122[LinkedList$Entry.next]o10121, o10123[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.next]o10122, o10122[LinkedList$Entry.next]o10120, o10121[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10120, o10123[LinkedList$Entry.previous]o10120, o10121[LinkedList$Entry.previous]o10122, o10123[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.previous]o10120, o10122[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.next]o10123, o10122[LinkedList$Entry.previous]o10123, o10121[LinkedList$Entry.previous]o10123, o10123[LinkedList$Entry.previous]o10123) :|: i1293 >= 0 && matching1 = 1 15.99/5.31 f5436_0_random_FieldAccess(EOS(STATIC_5436(java.lang.Object(ARRAY(i1291)), i1293)), i1231, o10636, i1294, o10122[LinkedList$Entry.next]o10121, o10123[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.next]o10122, o10122[LinkedList$Entry.next]o10120, o10121[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10120, o10123[LinkedList$Entry.previous]o10120, o10121[LinkedList$Entry.previous]o10122, o10123[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.previous]o10120, o10122[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.next]o10123, o10122[LinkedList$Entry.previous]o10123, o10121[LinkedList$Entry.previous]o10123, o10123[LinkedList$Entry.previous]o10123) -> f5438_0_random_Load(EOS(STATIC_5438(java.lang.Object(ARRAY(i1291)), i1294)), i1231, o10636, o10122[LinkedList$Entry.next]o10121, o10123[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.next]o10122, o10122[LinkedList$Entry.next]o10120, o10121[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10120, o10123[LinkedList$Entry.previous]o10120, o10121[LinkedList$Entry.previous]o10122, o10123[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.previous]o10120, o10122[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.next]o10123, o10122[LinkedList$Entry.previous]o10123, o10121[LinkedList$Entry.previous]o10123, o10123[LinkedList$Entry.previous]o10123) :|: TRUE 15.99/5.31 f5438_0_random_Load(EOS(STATIC_5438(java.lang.Object(ARRAY(i1291)), i1294)), i1231, o10636, o10122[LinkedList$Entry.next]o10121, o10123[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.next]o10122, o10122[LinkedList$Entry.next]o10120, o10121[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10120, o10123[LinkedList$Entry.previous]o10120, o10121[LinkedList$Entry.previous]o10122, o10123[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.previous]o10120, o10122[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.next]o10123, o10122[LinkedList$Entry.previous]o10123, o10121[LinkedList$Entry.previous]o10123, o10123[LinkedList$Entry.previous]o10123) -> f5440_0_random_InvokeMethod(EOS(STATIC_5440(java.lang.Object(ARRAY(i1291)), i1294)), i1231, o10636, o10122[LinkedList$Entry.next]o10121, o10123[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.next]o10122, o10122[LinkedList$Entry.next]o10120, o10121[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10120, o10123[LinkedList$Entry.previous]o10120, o10121[LinkedList$Entry.previous]o10122, o10123[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.previous]o10120, o10122[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.next]o10123, o10122[LinkedList$Entry.previous]o10123, o10121[LinkedList$Entry.previous]o10123, o10123[LinkedList$Entry.previous]o10123) :|: TRUE 15.99/5.31 f5440_0_random_InvokeMethod(EOS(STATIC_5440(java.lang.Object(ARRAY(i1291)), i1294)), i1231, java.lang.Object(o10638sub), o10122[LinkedList$Entry.next]o10121, o10123[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.next]o10122, o10122[LinkedList$Entry.next]o10120, o10121[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10120, o10123[LinkedList$Entry.previous]o10120, o10121[LinkedList$Entry.previous]o10122, o10123[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.previous]o10120, o10122[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.next]o10123, o10122[LinkedList$Entry.previous]o10123, o10121[LinkedList$Entry.previous]o10123, o10123[LinkedList$Entry.previous]o10123) -> f5443_0_random_InvokeMethod(EOS(STATIC_5443(java.lang.Object(ARRAY(i1291)), i1294)), i1231, java.lang.Object(o10638sub), o10122[LinkedList$Entry.next]o10121, o10123[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.next]o10122, o10122[LinkedList$Entry.next]o10120, o10121[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10120, o10123[LinkedList$Entry.previous]o10120, o10121[LinkedList$Entry.previous]o10122, o10123[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.previous]o10120, o10122[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.next]o10123, o10122[LinkedList$Entry.previous]o10123, o10121[LinkedList$Entry.previous]o10123, o10123[LinkedList$Entry.previous]o10123) :|: TRUE 15.99/5.31 f5443_0_random_InvokeMethod(EOS(STATIC_5443(java.lang.Object(ARRAY(i1291)), i1294)), i1231, java.lang.Object(o10639sub), o10122[LinkedList$Entry.next]o10121, o10123[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.next]o10122, o10122[LinkedList$Entry.next]o10120, o10121[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10120, o10123[LinkedList$Entry.previous]o10120, o10121[LinkedList$Entry.previous]o10122, o10123[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.previous]o10120, o10122[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.next]o10123, o10122[LinkedList$Entry.previous]o10123, o10121[LinkedList$Entry.previous]o10123, o10123[LinkedList$Entry.previous]o10123) -> f5446_0_random_InvokeMethod(EOS(STATIC_5446(java.lang.Object(ARRAY(i1291)), i1294)), i1231, java.lang.Object(o10639sub), o10122[LinkedList$Entry.next]o10121, o10123[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.next]o10122, o10122[LinkedList$Entry.next]o10120, o10121[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10120, o10123[LinkedList$Entry.previous]o10120, o10121[LinkedList$Entry.previous]o10122, o10123[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.previous]o10120, o10122[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.next]o10123, o10122[LinkedList$Entry.previous]o10123, o10121[LinkedList$Entry.previous]o10123, o10123[LinkedList$Entry.previous]o10123) :|: TRUE 15.99/5.31 f5446_0_random_InvokeMethod(EOS(STATIC_5446(java.lang.Object(ARRAY(i1291)), i1294)), i1231, java.lang.Object(o10639sub), o10122[LinkedList$Entry.next]o10121, o10123[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.next]o10122, o10122[LinkedList$Entry.next]o10120, o10121[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10120, o10123[LinkedList$Entry.previous]o10120, o10121[LinkedList$Entry.previous]o10122, o10123[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.previous]o10120, o10122[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.next]o10123, o10122[LinkedList$Entry.previous]o10123, o10121[LinkedList$Entry.previous]o10123, o10123[LinkedList$Entry.previous]o10123) -> f5449_0_length_Load(EOS(STATIC_5449(java.lang.Object(ARRAY(i1291)), i1294)), i1231, java.lang.Object(o10639sub), o10122[LinkedList$Entry.next]o10121, o10123[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.next]o10122, o10122[LinkedList$Entry.next]o10120, o10121[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10120, o10123[LinkedList$Entry.previous]o10120, o10121[LinkedList$Entry.previous]o10122, o10123[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.previous]o10120, o10122[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.next]o10123, o10122[LinkedList$Entry.previous]o10123, o10121[LinkedList$Entry.previous]o10123, o10123[LinkedList$Entry.previous]o10123) :|: TRUE 15.99/5.31 f5449_0_length_Load(EOS(STATIC_5449(java.lang.Object(ARRAY(i1291)), i1294)), i1231, java.lang.Object(o10639sub), o10122[LinkedList$Entry.next]o10121, o10123[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.next]o10122, o10122[LinkedList$Entry.next]o10120, o10121[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10120, o10123[LinkedList$Entry.previous]o10120, o10121[LinkedList$Entry.previous]o10122, o10123[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.previous]o10120, o10122[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.next]o10123, o10122[LinkedList$Entry.previous]o10123, o10121[LinkedList$Entry.previous]o10123, o10123[LinkedList$Entry.previous]o10123) -> f5454_0_length_FieldAccess(EOS(STATIC_5454(java.lang.Object(ARRAY(i1291)), i1294)), i1231, java.lang.Object(o10639sub), o10122[LinkedList$Entry.next]o10121, o10123[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.next]o10122, o10122[LinkedList$Entry.next]o10120, o10121[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10120, o10123[LinkedList$Entry.previous]o10120, o10121[LinkedList$Entry.previous]o10122, o10123[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.previous]o10120, o10122[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.next]o10123, o10122[LinkedList$Entry.previous]o10123, o10121[LinkedList$Entry.previous]o10123, o10123[LinkedList$Entry.previous]o10123) :|: TRUE 15.99/5.31 f5454_0_length_FieldAccess(EOS(STATIC_5454(java.lang.Object(ARRAY(i1291)), i1294)), i1231, java.lang.Object(java.lang.String(EOC, i1298)), o10122[LinkedList$Entry.next]o10121, o10123[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.next]o10122, o10122[LinkedList$Entry.next]o10120, o10121[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10120, o10123[LinkedList$Entry.previous]o10120, o10121[LinkedList$Entry.previous]o10122, o10123[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.previous]o10120, o10122[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.next]o10123, o10122[LinkedList$Entry.previous]o10123, o10121[LinkedList$Entry.previous]o10123, o10123[LinkedList$Entry.previous]o10123) -> f5457_0_length_FieldAccess(EOS(STATIC_5457(java.lang.Object(ARRAY(i1291)), i1294)), i1231, java.lang.Object(java.lang.String(EOC, i1298)), o10122[LinkedList$Entry.next]o10121, o10123[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.next]o10122, o10122[LinkedList$Entry.next]o10120, o10121[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10120, o10123[LinkedList$Entry.previous]o10120, o10121[LinkedList$Entry.previous]o10122, o10123[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.previous]o10120, o10122[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.next]o10123, o10122[LinkedList$Entry.previous]o10123, o10121[LinkedList$Entry.previous]o10123, o10123[LinkedList$Entry.previous]o10123) :|: TRUE 15.99/5.31 f5457_0_length_FieldAccess(EOS(STATIC_5457(java.lang.Object(ARRAY(i1291)), i1294)), i1231, java.lang.Object(java.lang.String(EOC, i1298)), o10122[LinkedList$Entry.next]o10121, o10123[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.next]o10122, o10122[LinkedList$Entry.next]o10120, o10121[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10120, o10123[LinkedList$Entry.previous]o10120, o10121[LinkedList$Entry.previous]o10122, o10123[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.previous]o10120, o10122[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.next]o10123, o10122[LinkedList$Entry.previous]o10123, o10121[LinkedList$Entry.previous]o10123, o10123[LinkedList$Entry.previous]o10123) -> f5460_0_length_Return(EOS(STATIC_5460(java.lang.Object(ARRAY(i1291)), i1294)), i1231, o10122[LinkedList$Entry.next]o10121, o10123[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.next]o10122, o10122[LinkedList$Entry.next]o10120, o10121[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10120, o10123[LinkedList$Entry.previous]o10120, o10121[LinkedList$Entry.previous]o10122, o10123[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.previous]o10120, o10122[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.next]o10123, o10122[LinkedList$Entry.previous]o10123, o10121[LinkedList$Entry.previous]o10123, o10123[LinkedList$Entry.previous]o10123) :|: TRUE 15.99/5.31 f5460_0_length_Return(EOS(STATIC_5460(java.lang.Object(ARRAY(i1291)), i1294)), i1231, o10122[LinkedList$Entry.next]o10121, o10123[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.next]o10122, o10122[LinkedList$Entry.next]o10120, o10121[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10120, o10123[LinkedList$Entry.previous]o10120, o10121[LinkedList$Entry.previous]o10122, o10123[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.previous]o10120, o10122[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.next]o10123, o10122[LinkedList$Entry.previous]o10123, o10121[LinkedList$Entry.previous]o10123, o10123[LinkedList$Entry.previous]o10123) -> f5463_0_random_Return(EOS(STATIC_5463(java.lang.Object(ARRAY(i1291)), i1294)), i1231, o10122[LinkedList$Entry.next]o10121, o10123[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.next]o10122, o10122[LinkedList$Entry.next]o10120, o10121[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10120, o10123[LinkedList$Entry.previous]o10120, o10121[LinkedList$Entry.previous]o10122, o10123[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.previous]o10120, o10122[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.next]o10123, o10122[LinkedList$Entry.previous]o10123, o10121[LinkedList$Entry.previous]o10123, o10123[LinkedList$Entry.previous]o10123) :|: TRUE 15.99/5.31 f5463_0_random_Return(EOS(STATIC_5463(java.lang.Object(ARRAY(i1291)), i1294)), i1231, o10122[LinkedList$Entry.next]o10121, o10123[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.next]o10122, o10122[LinkedList$Entry.next]o10120, o10121[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10120, o10123[LinkedList$Entry.previous]o10120, o10121[LinkedList$Entry.previous]o10122, o10123[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.previous]o10120, o10122[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.next]o10123, o10122[LinkedList$Entry.previous]o10123, o10121[LinkedList$Entry.previous]o10123, o10123[LinkedList$Entry.previous]o10123) -> f5467_0_createList_InvokeMethod(EOS(STATIC_5467(java.lang.Object(ARRAY(i1291)), i1294)), i1231, o10122[LinkedList$Entry.next]o10121, o10123[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.next]o10122, o10122[LinkedList$Entry.next]o10120, o10121[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10120, o10123[LinkedList$Entry.previous]o10120, o10121[LinkedList$Entry.previous]o10122, o10123[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.previous]o10120, o10122[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.next]o10123, o10122[LinkedList$Entry.previous]o10123, o10121[LinkedList$Entry.previous]o10123, o10123[LinkedList$Entry.previous]o10123) :|: TRUE 15.99/5.31 f5467_0_createList_InvokeMethod(EOS(STATIC_5467(java.lang.Object(ARRAY(i1291)), i1294)), i1231, o10122[LinkedList$Entry.next]o10121, o10123[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.next]o10122, o10122[LinkedList$Entry.next]o10120, o10121[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10120, o10123[LinkedList$Entry.previous]o10120, o10121[LinkedList$Entry.previous]o10122, o10123[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.previous]o10120, o10122[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.next]o10123, o10122[LinkedList$Entry.previous]o10123, o10121[LinkedList$Entry.previous]o10123, o10123[LinkedList$Entry.previous]o10123) -> f5470_0__init__Load(EOS(STATIC_5470(java.lang.Object(ARRAY(i1291)), i1294)), i1231, o10122[LinkedList$Entry.next]o10121, o10123[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.next]o10122, o10122[LinkedList$Entry.next]o10120, o10121[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10120, o10123[LinkedList$Entry.previous]o10120, o10121[LinkedList$Entry.previous]o10122, o10123[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.previous]o10120, o10122[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.next]o10123, o10122[LinkedList$Entry.previous]o10123, o10121[LinkedList$Entry.previous]o10123, o10123[LinkedList$Entry.previous]o10123) :|: TRUE 15.99/5.31 f5470_0__init__Load(EOS(STATIC_5470(java.lang.Object(ARRAY(i1291)), i1294)), i1231, o10122[LinkedList$Entry.next]o10121, o10123[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.next]o10122, o10122[LinkedList$Entry.next]o10120, o10121[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10120, o10123[LinkedList$Entry.previous]o10120, o10121[LinkedList$Entry.previous]o10122, o10123[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.previous]o10120, o10122[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.next]o10123, o10122[LinkedList$Entry.previous]o10123, o10121[LinkedList$Entry.previous]o10123, o10123[LinkedList$Entry.previous]o10123) -> f5477_0__init__InvokeMethod(EOS(STATIC_5477(java.lang.Object(ARRAY(i1291)), i1294)), i1231, o10122[LinkedList$Entry.next]o10121, o10123[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.next]o10122, o10122[LinkedList$Entry.next]o10120, o10121[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10120, o10123[LinkedList$Entry.previous]o10120, o10121[LinkedList$Entry.previous]o10122, o10123[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.previous]o10120, o10122[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.next]o10123, o10122[LinkedList$Entry.previous]o10123, o10121[LinkedList$Entry.previous]o10123, o10123[LinkedList$Entry.previous]o10123) :|: TRUE 15.99/5.31 f5477_0__init__InvokeMethod(EOS(STATIC_5477(java.lang.Object(ARRAY(i1291)), i1294)), i1231, o10122[LinkedList$Entry.next]o10121, o10123[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.next]o10122, o10122[LinkedList$Entry.next]o10120, o10121[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10120, o10123[LinkedList$Entry.previous]o10120, o10121[LinkedList$Entry.previous]o10122, o10123[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.previous]o10120, o10122[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.next]o10123, o10122[LinkedList$Entry.previous]o10123, o10121[LinkedList$Entry.previous]o10123, o10123[LinkedList$Entry.previous]o10123) -> f5480_0__init__Load(EOS(STATIC_5480(java.lang.Object(ARRAY(i1291)), i1294)), i1231, o10122[LinkedList$Entry.next]o10121, o10123[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.next]o10122, o10122[LinkedList$Entry.next]o10120, o10121[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10120, o10123[LinkedList$Entry.previous]o10120, o10121[LinkedList$Entry.previous]o10122, o10123[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.previous]o10120, o10122[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.next]o10123, o10122[LinkedList$Entry.previous]o10123, o10121[LinkedList$Entry.previous]o10123, o10123[LinkedList$Entry.previous]o10123) :|: TRUE 15.99/5.31 f5480_0__init__Load(EOS(STATIC_5480(java.lang.Object(ARRAY(i1291)), i1294)), i1231, o10122[LinkedList$Entry.next]o10121, o10123[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.next]o10122, o10122[LinkedList$Entry.next]o10120, o10121[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10120, o10123[LinkedList$Entry.previous]o10120, o10121[LinkedList$Entry.previous]o10122, o10123[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.previous]o10120, o10122[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.next]o10123, o10122[LinkedList$Entry.previous]o10123, o10121[LinkedList$Entry.previous]o10123, o10123[LinkedList$Entry.previous]o10123) -> f5484_0__init__Load(EOS(STATIC_5484(java.lang.Object(ARRAY(i1291)), i1294)), i1231, o10122[LinkedList$Entry.next]o10121, o10123[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.next]o10122, o10122[LinkedList$Entry.next]o10120, o10121[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10120, o10123[LinkedList$Entry.previous]o10120, o10121[LinkedList$Entry.previous]o10122, o10123[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.previous]o10120, o10122[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.next]o10123, o10122[LinkedList$Entry.previous]o10123, o10121[LinkedList$Entry.previous]o10123, o10123[LinkedList$Entry.previous]o10123) :|: TRUE 15.99/5.31 f5484_0__init__Load(EOS(STATIC_5484(java.lang.Object(ARRAY(i1291)), i1294)), i1231, o10122[LinkedList$Entry.next]o10121, o10123[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.next]o10122, o10122[LinkedList$Entry.next]o10120, o10121[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10120, o10123[LinkedList$Entry.previous]o10120, o10121[LinkedList$Entry.previous]o10122, o10123[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.previous]o10120, o10122[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.next]o10123, o10122[LinkedList$Entry.previous]o10123, o10121[LinkedList$Entry.previous]o10123, o10123[LinkedList$Entry.previous]o10123) -> f5488_0__init__FieldAccess(EOS(STATIC_5488(java.lang.Object(ARRAY(i1291)), i1294)), i1231, o10122[LinkedList$Entry.next]o10121, o10123[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.next]o10122, o10122[LinkedList$Entry.next]o10120, o10121[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10120, o10123[LinkedList$Entry.previous]o10120, o10121[LinkedList$Entry.previous]o10122, o10123[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.previous]o10120, o10122[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.next]o10123, o10122[LinkedList$Entry.previous]o10123, o10121[LinkedList$Entry.previous]o10123, o10123[LinkedList$Entry.previous]o10123) :|: TRUE 15.99/5.31 f5488_0__init__FieldAccess(EOS(STATIC_5488(java.lang.Object(ARRAY(i1291)), i1294)), i1231, o10122[LinkedList$Entry.next]o10121, o10123[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.next]o10122, o10122[LinkedList$Entry.next]o10120, o10121[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10120, o10123[LinkedList$Entry.previous]o10120, o10121[LinkedList$Entry.previous]o10122, o10123[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.previous]o10120, o10122[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.next]o10123, o10122[LinkedList$Entry.previous]o10123, o10121[LinkedList$Entry.previous]o10123, o10123[LinkedList$Entry.previous]o10123) -> f5492_0__init__Return(EOS(STATIC_5492(java.lang.Object(ARRAY(i1291)), i1294)), i1231, o10122[LinkedList$Entry.next]o10121, o10123[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.next]o10122, o10122[LinkedList$Entry.next]o10120, o10121[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10120, o10123[LinkedList$Entry.previous]o10120, o10121[LinkedList$Entry.previous]o10122, o10123[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.previous]o10120, o10122[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.next]o10123, o10122[LinkedList$Entry.previous]o10123, o10121[LinkedList$Entry.previous]o10123, o10123[LinkedList$Entry.previous]o10123) :|: TRUE 15.99/5.31 f5492_0__init__Return(EOS(STATIC_5492(java.lang.Object(ARRAY(i1291)), i1294)), i1231, o10122[LinkedList$Entry.next]o10121, o10123[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.next]o10122, o10122[LinkedList$Entry.next]o10120, o10121[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10120, o10123[LinkedList$Entry.previous]o10120, o10121[LinkedList$Entry.previous]o10122, o10123[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.previous]o10120, o10122[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.next]o10123, o10122[LinkedList$Entry.previous]o10123, o10121[LinkedList$Entry.previous]o10123, o10123[LinkedList$Entry.previous]o10123) -> f5496_0_createList_InvokeMethod(EOS(STATIC_5496(java.lang.Object(ARRAY(i1291)), i1294)), i1231, o10122[LinkedList$Entry.next]o10121, o10123[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.next]o10122, o10122[LinkedList$Entry.next]o10120, o10121[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10120, o10123[LinkedList$Entry.previous]o10120, o10121[LinkedList$Entry.previous]o10122, o10123[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.previous]o10120, o10122[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.next]o10123, o10122[LinkedList$Entry.previous]o10123, o10121[LinkedList$Entry.previous]o10123, o10123[LinkedList$Entry.previous]o10123) :|: TRUE 15.99/5.31 f5496_0_createList_InvokeMethod(EOS(STATIC_5496(java.lang.Object(ARRAY(i1291)), i1294)), i1231, o10122[LinkedList$Entry.next]o10121, o10123[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.next]o10122, o10122[LinkedList$Entry.next]o10120, o10121[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10120, o10123[LinkedList$Entry.previous]o10120, o10121[LinkedList$Entry.previous]o10122, o10123[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.previous]o10120, o10122[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.next]o10123, o10122[LinkedList$Entry.previous]o10123, o10121[LinkedList$Entry.previous]o10123, o10123[LinkedList$Entry.previous]o10123) -> f5500_0_addLast_Load(EOS(STATIC_5500(java.lang.Object(ARRAY(i1291)), i1294)), i1231, o10122[LinkedList$Entry.next]o10121, o10123[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.next]o10122, o10122[LinkedList$Entry.next]o10120, o10121[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10120, o10123[LinkedList$Entry.previous]o10120, o10121[LinkedList$Entry.previous]o10122, o10123[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.previous]o10120, o10122[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.next]o10123, o10122[LinkedList$Entry.previous]o10123, o10121[LinkedList$Entry.previous]o10123, o10123[LinkedList$Entry.previous]o10123) :|: TRUE 15.99/5.31 f5500_0_addLast_Load(EOS(STATIC_5500(java.lang.Object(ARRAY(i1291)), i1294)), i1231, o10122[LinkedList$Entry.next]o10121, o10123[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.next]o10122, o10122[LinkedList$Entry.next]o10120, o10121[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10120, o10123[LinkedList$Entry.previous]o10120, o10121[LinkedList$Entry.previous]o10122, o10123[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.previous]o10120, o10122[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.next]o10123, o10122[LinkedList$Entry.previous]o10123, o10121[LinkedList$Entry.previous]o10123, o10123[LinkedList$Entry.previous]o10123) -> f5507_0_addLast_Load(EOS(STATIC_5507(java.lang.Object(ARRAY(i1291)), i1294)), i1231, o10122[LinkedList$Entry.next]o10121, o10123[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.next]o10122, o10122[LinkedList$Entry.next]o10120, o10121[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10120, o10123[LinkedList$Entry.previous]o10120, o10121[LinkedList$Entry.previous]o10122, o10123[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.previous]o10120, o10122[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.next]o10123, o10122[LinkedList$Entry.previous]o10123, o10121[LinkedList$Entry.previous]o10123, o10123[LinkedList$Entry.previous]o10123) :|: TRUE 15.99/5.31 f5507_0_addLast_Load(EOS(STATIC_5507(java.lang.Object(ARRAY(i1291)), i1294)), i1231, o10122[LinkedList$Entry.next]o10121, o10123[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.next]o10122, o10122[LinkedList$Entry.next]o10120, o10121[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10120, o10123[LinkedList$Entry.previous]o10120, o10121[LinkedList$Entry.previous]o10122, o10123[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.previous]o10120, o10122[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.next]o10123, o10122[LinkedList$Entry.previous]o10123, o10121[LinkedList$Entry.previous]o10123, o10123[LinkedList$Entry.previous]o10123) -> f5511_0_addLast_Load(EOS(STATIC_5511(java.lang.Object(ARRAY(i1291)), i1294)), i1231, o10122[LinkedList$Entry.next]o10121, o10123[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.next]o10122, o10122[LinkedList$Entry.next]o10120, o10121[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10120, o10123[LinkedList$Entry.previous]o10120, o10121[LinkedList$Entry.previous]o10122, o10123[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.previous]o10120, o10122[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.next]o10123, o10122[LinkedList$Entry.previous]o10123, o10121[LinkedList$Entry.previous]o10123, o10123[LinkedList$Entry.previous]o10123) :|: TRUE 15.99/5.31 f5511_0_addLast_Load(EOS(STATIC_5511(java.lang.Object(ARRAY(i1291)), i1294)), i1231, o10122[LinkedList$Entry.next]o10121, o10123[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.next]o10122, o10122[LinkedList$Entry.next]o10120, o10121[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10120, o10123[LinkedList$Entry.previous]o10120, o10121[LinkedList$Entry.previous]o10122, o10123[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.previous]o10120, o10122[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.next]o10123, o10122[LinkedList$Entry.previous]o10123, o10121[LinkedList$Entry.previous]o10123, o10123[LinkedList$Entry.previous]o10123) -> f5514_0_addLast_FieldAccess(EOS(STATIC_5514(java.lang.Object(ARRAY(i1291)), i1294)), i1231, o10122[LinkedList$Entry.next]o10121, o10123[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.next]o10122, o10122[LinkedList$Entry.next]o10120, o10121[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10120, o10123[LinkedList$Entry.previous]o10120, o10121[LinkedList$Entry.previous]o10122, o10123[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.previous]o10120, o10122[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.next]o10123, o10122[LinkedList$Entry.previous]o10123, o10121[LinkedList$Entry.previous]o10123, o10123[LinkedList$Entry.previous]o10123) :|: TRUE 15.99/5.31 f5514_0_addLast_FieldAccess(EOS(STATIC_5514(java.lang.Object(ARRAY(i1291)), i1294)), i1231, o10122[LinkedList$Entry.next]o10121, o10123[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.next]o10122, o10122[LinkedList$Entry.next]o10120, o10121[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10120, o10123[LinkedList$Entry.previous]o10120, o10121[LinkedList$Entry.previous]o10122, o10123[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.previous]o10120, o10122[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.next]o10123, o10122[LinkedList$Entry.previous]o10123, o10121[LinkedList$Entry.previous]o10123, o10123[LinkedList$Entry.previous]o10123) -> f5518_0_addLast_InvokeMethod(EOS(STATIC_5518(java.lang.Object(ARRAY(i1291)), i1294)), i1231, o10122[LinkedList$Entry.next]o10121, o10123[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.next]o10122, o10122[LinkedList$Entry.next]o10120, o10121[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10120, o10123[LinkedList$Entry.previous]o10120, o10121[LinkedList$Entry.previous]o10122, o10123[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.previous]o10120, o10122[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.next]o10123, o10122[LinkedList$Entry.previous]o10123, o10121[LinkedList$Entry.previous]o10123, o10123[LinkedList$Entry.previous]o10123) :|: TRUE 15.99/5.31 f5518_0_addLast_InvokeMethod(EOS(STATIC_5518(java.lang.Object(ARRAY(i1291)), i1294)), i1231, o10122[LinkedList$Entry.next]o10121, o10123[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.next]o10122, o10122[LinkedList$Entry.next]o10120, o10121[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10120, o10123[LinkedList$Entry.previous]o10120, o10121[LinkedList$Entry.previous]o10122, o10123[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.previous]o10120, o10122[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.next]o10123, o10122[LinkedList$Entry.previous]o10123, o10121[LinkedList$Entry.previous]o10123, o10123[LinkedList$Entry.previous]o10123) -> f5520_0_addBefore_New(EOS(STATIC_5520(java.lang.Object(ARRAY(i1291)), i1294)), i1231, o10122[LinkedList$Entry.next]o10121, o10123[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.next]o10122, o10122[LinkedList$Entry.next]o10120, o10121[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10120, o10123[LinkedList$Entry.previous]o10120, o10121[LinkedList$Entry.previous]o10122, o10123[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.previous]o10120, o10122[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.next]o10123, o10122[LinkedList$Entry.previous]o10123, o10121[LinkedList$Entry.previous]o10123, o10123[LinkedList$Entry.previous]o10123) :|: TRUE 15.99/5.31 f5520_0_addBefore_New(EOS(STATIC_5520(java.lang.Object(ARRAY(i1291)), i1294)), i1231, o10122[LinkedList$Entry.next]o10121, o10123[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.next]o10122, o10122[LinkedList$Entry.next]o10120, o10121[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10120, o10123[LinkedList$Entry.previous]o10120, o10121[LinkedList$Entry.previous]o10122, o10123[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.previous]o10120, o10122[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.next]o10123, o10122[LinkedList$Entry.previous]o10123, o10121[LinkedList$Entry.previous]o10123, o10123[LinkedList$Entry.previous]o10123) -> f5524_0_addBefore_Duplicate(EOS(STATIC_5524(java.lang.Object(ARRAY(i1291)), i1294)), i1231, o10122[LinkedList$Entry.next]o10121, o10123[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.next]o10122, o10122[LinkedList$Entry.next]o10120, o10121[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10120, o10123[LinkedList$Entry.previous]o10120, o10121[LinkedList$Entry.previous]o10122, o10123[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.previous]o10120, o10122[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.next]o10123, o10122[LinkedList$Entry.previous]o10123, o10121[LinkedList$Entry.previous]o10123, o10123[LinkedList$Entry.previous]o10123) :|: TRUE 15.99/5.31 f5524_0_addBefore_Duplicate(EOS(STATIC_5524(java.lang.Object(ARRAY(i1291)), i1294)), i1231, o10122[LinkedList$Entry.next]o10121, o10123[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.next]o10122, o10122[LinkedList$Entry.next]o10120, o10121[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10120, o10123[LinkedList$Entry.previous]o10120, o10121[LinkedList$Entry.previous]o10122, o10123[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.previous]o10120, o10122[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.next]o10123, o10122[LinkedList$Entry.previous]o10123, o10121[LinkedList$Entry.previous]o10123, o10123[LinkedList$Entry.previous]o10123) -> f5526_0_addBefore_Load(EOS(STATIC_5526(java.lang.Object(ARRAY(i1291)), i1294)), i1231, o10122[LinkedList$Entry.next]o10121, o10123[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.next]o10122, o10122[LinkedList$Entry.next]o10120, o10121[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10120, o10123[LinkedList$Entry.previous]o10120, o10121[LinkedList$Entry.previous]o10122, o10123[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.previous]o10120, o10122[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.next]o10123, o10122[LinkedList$Entry.previous]o10123, o10121[LinkedList$Entry.previous]o10123, o10123[LinkedList$Entry.previous]o10123) :|: TRUE 15.99/5.31 f5526_0_addBefore_Load(EOS(STATIC_5526(java.lang.Object(ARRAY(i1291)), i1294)), i1231, o10122[LinkedList$Entry.next]o10121, o10123[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.next]o10122, o10122[LinkedList$Entry.next]o10120, o10121[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10120, o10123[LinkedList$Entry.previous]o10120, o10121[LinkedList$Entry.previous]o10122, o10123[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.previous]o10120, o10122[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.next]o10123, o10122[LinkedList$Entry.previous]o10123, o10121[LinkedList$Entry.previous]o10123, o10123[LinkedList$Entry.previous]o10123) -> f5527_0_addBefore_Load(EOS(STATIC_5527(java.lang.Object(ARRAY(i1291)), i1294)), i1231, o10122[LinkedList$Entry.next]o10121, o10123[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.next]o10122, o10122[LinkedList$Entry.next]o10120, o10121[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10120, o10123[LinkedList$Entry.previous]o10120, o10121[LinkedList$Entry.previous]o10122, o10123[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.previous]o10120, o10122[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.next]o10123, o10122[LinkedList$Entry.previous]o10123, o10121[LinkedList$Entry.previous]o10123, o10123[LinkedList$Entry.previous]o10123) :|: TRUE 15.99/5.31 f5527_0_addBefore_Load(EOS(STATIC_5527(java.lang.Object(ARRAY(i1291)), i1294)), i1231, o10122[LinkedList$Entry.next]o10121, o10123[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.next]o10122, o10122[LinkedList$Entry.next]o10120, o10121[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10120, o10123[LinkedList$Entry.previous]o10120, o10121[LinkedList$Entry.previous]o10122, o10123[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.previous]o10120, o10122[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.next]o10123, o10122[LinkedList$Entry.previous]o10123, o10121[LinkedList$Entry.previous]o10123, o10123[LinkedList$Entry.previous]o10123) -> f5529_0_addBefore_Load(EOS(STATIC_5529(java.lang.Object(ARRAY(i1291)), i1294)), i1231, o10122[LinkedList$Entry.next]o10121, o10123[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.next]o10122, o10122[LinkedList$Entry.next]o10120, o10121[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10120, o10123[LinkedList$Entry.previous]o10120, o10121[LinkedList$Entry.previous]o10122, o10123[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.previous]o10120, o10122[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.next]o10123, o10122[LinkedList$Entry.previous]o10123, o10121[LinkedList$Entry.previous]o10123, o10123[LinkedList$Entry.previous]o10123) :|: TRUE 15.99/5.31 f5529_0_addBefore_Load(EOS(STATIC_5529(java.lang.Object(ARRAY(i1291)), i1294)), i1231, o10122[LinkedList$Entry.next]o10121, o10123[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.next]o10122, o10122[LinkedList$Entry.next]o10120, o10121[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10120, o10123[LinkedList$Entry.previous]o10120, o10121[LinkedList$Entry.previous]o10122, o10123[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.previous]o10120, o10122[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.next]o10123, o10122[LinkedList$Entry.previous]o10123, o10121[LinkedList$Entry.previous]o10123, o10123[LinkedList$Entry.previous]o10123) -> f5530_0_addBefore_FieldAccess(EOS(STATIC_5530(java.lang.Object(ARRAY(i1291)), i1294)), i1231, o10122[LinkedList$Entry.next]o10121, o10123[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.next]o10122, o10122[LinkedList$Entry.next]o10120, o10121[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10120, o10123[LinkedList$Entry.previous]o10120, o10121[LinkedList$Entry.previous]o10122, o10123[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.previous]o10120, o10122[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.next]o10123, o10122[LinkedList$Entry.previous]o10123, o10121[LinkedList$Entry.previous]o10123, o10123[LinkedList$Entry.previous]o10123) :|: TRUE 15.99/5.31 f5530_0_addBefore_FieldAccess(EOS(STATIC_5530(java.lang.Object(ARRAY(i1291)), i1294)), i1231, o10122[LinkedList$Entry.next]o10121, o10123[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.next]o10122, o10122[LinkedList$Entry.next]o10120, o10121[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10120, o10123[LinkedList$Entry.previous]o10120, o10121[LinkedList$Entry.previous]o10122, o10123[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.previous]o10120, o10122[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.next]o10123, o10122[LinkedList$Entry.previous]o10123, o10121[LinkedList$Entry.previous]o10123, o10123[LinkedList$Entry.previous]o10123) -> f5531_0_addBefore_FieldAccess(EOS(STATIC_5531(java.lang.Object(ARRAY(i1291)), i1294)), i1231, o10122[LinkedList$Entry.next]o10121, o10123[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.next]o10122, o10122[LinkedList$Entry.next]o10120, o10121[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10120, o10123[LinkedList$Entry.previous]o10120, o10121[LinkedList$Entry.previous]o10122, o10123[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.previous]o10120, o10122[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.next]o10123, o10122[LinkedList$Entry.previous]o10123, o10121[LinkedList$Entry.previous]o10123, o10123[LinkedList$Entry.previous]o10123) :|: o10122[LinkedList$Entry.next]o10122 > 0 && o10122[LinkedList$Entry.next]o10120 > 0 && o10122[LinkedList$Entry.previous]o10120 > 0 && o10122[LinkedList$Entry.previous]o10122 > 0 15.99/5.31 f5531_0_addBefore_FieldAccess(EOS(STATIC_5531(java.lang.Object(ARRAY(i1291)), i1294)), i1231, o10122[LinkedList$Entry.next]o10121, o10123[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.next]o10122, o10122[LinkedList$Entry.next]o10120, o10121[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10120, o10123[LinkedList$Entry.previous]o10120, o10121[LinkedList$Entry.previous]o10122, o10123[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.previous]o10120, o10122[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.next]o10123, o10122[LinkedList$Entry.previous]o10123, o10121[LinkedList$Entry.previous]o10123, o10123[LinkedList$Entry.previous]o10123) -> f5533_0_addBefore_FieldAccess(EOS(STATIC_5533(java.lang.Object(ARRAY(i1291)), i1294)), i1231, o10122[LinkedList$Entry.next]o10121, o10123[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.next]o10122, o10122[LinkedList$Entry.next]o10120, o10121[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10120, o10123[LinkedList$Entry.previous]o10120, o10121[LinkedList$Entry.previous]o10122, o10123[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.previous]o10120, o10122[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.next]o10123, o10122[LinkedList$Entry.previous]o10123, o10121[LinkedList$Entry.previous]o10123, o10123[LinkedList$Entry.previous]o10123) :|: o10121[LinkedList$Entry.previous]o10121 > 0 && o10121[LinkedList$Entry.previous]o10120 > 0 15.99/5.31 f5533_0_addBefore_FieldAccess(EOS(STATIC_5533(java.lang.Object(ARRAY(i1291)), i1294)), i1231, o10122[LinkedList$Entry.next]o10121, o10123[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.next]o10122, o10122[LinkedList$Entry.next]o10120, o10121[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10120, o10123[LinkedList$Entry.previous]o10120, o10121[LinkedList$Entry.previous]o10122, o10123[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.previous]o10120, o10122[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.next]o10123, o10122[LinkedList$Entry.previous]o10123, o10121[LinkedList$Entry.previous]o10123, o10123[LinkedList$Entry.previous]o10123) -> f5535_0_addBefore_FieldAccess(EOS(STATIC_5535(java.lang.Object(ARRAY(i1291)), i1294)), i1231, o10122[LinkedList$Entry.next]o10121, o10123[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.next]o10122, o10122[LinkedList$Entry.next]o10120, o10121[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10120, o10123[LinkedList$Entry.previous]o10120, o10121[LinkedList$Entry.previous]o10122, o10123[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.previous]o10120, o10122[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.next]o10123, o10122[LinkedList$Entry.previous]o10123, o10121[LinkedList$Entry.previous]o10123, o10123[LinkedList$Entry.previous]o10123) :|: o10123[LinkedList$Entry.previous]o10120 > 0 && o10123[LinkedList$Entry.previous]o10123 > 0 15.99/5.31 f5535_0_addBefore_FieldAccess(EOS(STATIC_5535(java.lang.Object(ARRAY(i1291)), i1294)), i1231, o10122[LinkedList$Entry.next]o10121, o10123[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.next]o10122, o10122[LinkedList$Entry.next]o10120, o10121[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10120, o10123[LinkedList$Entry.previous]o10120, o10121[LinkedList$Entry.previous]o10122, o10123[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.previous]o10120, o10122[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.next]o10123, o10122[LinkedList$Entry.previous]o10123, o10121[LinkedList$Entry.previous]o10123, o10123[LinkedList$Entry.previous]o10123) -> f5537_0_addBefore_InvokeMethod(EOS(STATIC_5537(java.lang.Object(ARRAY(i1291)), i1294)), i1231, o10122[LinkedList$Entry.next]o10121, o10123[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.next]o10122, o10122[LinkedList$Entry.next]o10120, o10121[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10120, o10123[LinkedList$Entry.previous]o10120, o10121[LinkedList$Entry.previous]o10122, o10123[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.previous]o10120, o10122[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.next]o10123, o10122[LinkedList$Entry.previous]o10123, o10121[LinkedList$Entry.previous]o10123, o10123[LinkedList$Entry.previous]o10123) :|: TRUE 15.99/5.31 f5537_0_addBefore_InvokeMethod(EOS(STATIC_5537(java.lang.Object(ARRAY(i1291)), i1294)), i1231, o10122[LinkedList$Entry.next]o10121, o10123[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.next]o10122, o10122[LinkedList$Entry.next]o10120, o10121[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10120, o10123[LinkedList$Entry.previous]o10120, o10121[LinkedList$Entry.previous]o10122, o10123[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.previous]o10120, o10122[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.next]o10123, o10122[LinkedList$Entry.previous]o10123, o10121[LinkedList$Entry.previous]o10123, o10123[LinkedList$Entry.previous]o10123) -> f5538_0__init__Load(EOS(STATIC_5538(java.lang.Object(ARRAY(i1291)), i1294)), i1231, o10122[LinkedList$Entry.next]o10121, o10123[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.next]o10122, o10122[LinkedList$Entry.next]o10120, o10121[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10120, o10123[LinkedList$Entry.previous]o10120, o10121[LinkedList$Entry.previous]o10122, o10123[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.previous]o10120, o10122[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.next]o10123, o10122[LinkedList$Entry.previous]o10123, o10121[LinkedList$Entry.previous]o10123, o10123[LinkedList$Entry.previous]o10123) :|: TRUE 15.99/5.31 f5538_0__init__Load(EOS(STATIC_5538(java.lang.Object(ARRAY(i1291)), i1294)), i1231, o10122[LinkedList$Entry.next]o10121, o10123[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.next]o10122, o10122[LinkedList$Entry.next]o10120, o10121[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10120, o10123[LinkedList$Entry.previous]o10120, o10121[LinkedList$Entry.previous]o10122, o10123[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.previous]o10120, o10122[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.next]o10123, o10122[LinkedList$Entry.previous]o10123, o10121[LinkedList$Entry.previous]o10123, o10123[LinkedList$Entry.previous]o10123) -> f5539_0__init__InvokeMethod(EOS(STATIC_5539(java.lang.Object(ARRAY(i1291)), i1294)), i1231, o10122[LinkedList$Entry.next]o10121, o10123[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.next]o10122, o10122[LinkedList$Entry.next]o10120, o10121[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10120, o10123[LinkedList$Entry.previous]o10120, o10121[LinkedList$Entry.previous]o10122, o10123[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.previous]o10120, o10122[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.next]o10123, o10122[LinkedList$Entry.previous]o10123, o10121[LinkedList$Entry.previous]o10123, o10123[LinkedList$Entry.previous]o10123) :|: TRUE 15.99/5.31 f5539_0__init__InvokeMethod(EOS(STATIC_5539(java.lang.Object(ARRAY(i1291)), i1294)), i1231, o10122[LinkedList$Entry.next]o10121, o10123[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.next]o10122, o10122[LinkedList$Entry.next]o10120, o10121[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10120, o10123[LinkedList$Entry.previous]o10120, o10121[LinkedList$Entry.previous]o10122, o10123[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.previous]o10120, o10122[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.next]o10123, o10122[LinkedList$Entry.previous]o10123, o10121[LinkedList$Entry.previous]o10123, o10123[LinkedList$Entry.previous]o10123) -> f5540_0__init__Load(EOS(STATIC_5540(java.lang.Object(ARRAY(i1291)), i1294)), i1231, o10122[LinkedList$Entry.next]o10121, o10123[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.next]o10122, o10122[LinkedList$Entry.next]o10120, o10121[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10120, o10123[LinkedList$Entry.previous]o10120, o10121[LinkedList$Entry.previous]o10122, o10123[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.previous]o10120, o10122[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.next]o10123, o10122[LinkedList$Entry.previous]o10123, o10121[LinkedList$Entry.previous]o10123, o10123[LinkedList$Entry.previous]o10123) :|: TRUE 15.99/5.31 f5540_0__init__Load(EOS(STATIC_5540(java.lang.Object(ARRAY(i1291)), i1294)), i1231, o10122[LinkedList$Entry.next]o10121, o10123[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.next]o10122, o10122[LinkedList$Entry.next]o10120, o10121[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10120, o10123[LinkedList$Entry.previous]o10120, o10121[LinkedList$Entry.previous]o10122, o10123[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.previous]o10120, o10122[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.next]o10123, o10122[LinkedList$Entry.previous]o10123, o10121[LinkedList$Entry.previous]o10123, o10123[LinkedList$Entry.previous]o10123) -> f5541_0__init__Load(EOS(STATIC_5541(java.lang.Object(ARRAY(i1291)), i1294)), i1231, o10122[LinkedList$Entry.next]o10121, o10123[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.next]o10122, o10122[LinkedList$Entry.next]o10120, o10121[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10120, o10123[LinkedList$Entry.previous]o10120, o10121[LinkedList$Entry.previous]o10122, o10123[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.previous]o10120, o10122[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.next]o10123, o10122[LinkedList$Entry.previous]o10123, o10121[LinkedList$Entry.previous]o10123, o10123[LinkedList$Entry.previous]o10123) :|: TRUE 15.99/5.31 f5541_0__init__Load(EOS(STATIC_5541(java.lang.Object(ARRAY(i1291)), i1294)), i1231, o10122[LinkedList$Entry.next]o10121, o10123[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.next]o10122, o10122[LinkedList$Entry.next]o10120, o10121[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10120, o10123[LinkedList$Entry.previous]o10120, o10121[LinkedList$Entry.previous]o10122, o10123[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.previous]o10120, o10122[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.next]o10123, o10122[LinkedList$Entry.previous]o10123, o10121[LinkedList$Entry.previous]o10123, o10123[LinkedList$Entry.previous]o10123) -> f5542_0__init__FieldAccess(EOS(STATIC_5542(java.lang.Object(ARRAY(i1291)), i1294)), i1231, o10122[LinkedList$Entry.next]o10121, o10123[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.next]o10122, o10122[LinkedList$Entry.next]o10120, o10121[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10120, o10123[LinkedList$Entry.previous]o10120, o10121[LinkedList$Entry.previous]o10122, o10123[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.previous]o10120, o10122[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.next]o10123, o10122[LinkedList$Entry.previous]o10123, o10121[LinkedList$Entry.previous]o10123, o10123[LinkedList$Entry.previous]o10123) :|: TRUE 15.99/5.31 f5542_0__init__FieldAccess(EOS(STATIC_5542(java.lang.Object(ARRAY(i1291)), i1294)), i1231, o10122[LinkedList$Entry.next]o10121, o10123[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.next]o10122, o10122[LinkedList$Entry.next]o10120, o10121[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10120, o10123[LinkedList$Entry.previous]o10120, o10121[LinkedList$Entry.previous]o10122, o10123[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.previous]o10120, o10122[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.next]o10123, o10122[LinkedList$Entry.previous]o10123, o10121[LinkedList$Entry.previous]o10123, o10123[LinkedList$Entry.previous]o10123) -> f5543_0__init__Load(EOS(STATIC_5543(java.lang.Object(ARRAY(i1291)), i1294)), i1231, o10122[LinkedList$Entry.next]o10121, o10123[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.next]o10122, o10122[LinkedList$Entry.next]o10120, o10121[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10120, o10123[LinkedList$Entry.previous]o10120, o10121[LinkedList$Entry.previous]o10122, o10123[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.previous]o10120, o10122[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.next]o10123, o10122[LinkedList$Entry.previous]o10123, o10121[LinkedList$Entry.previous]o10123, o10123[LinkedList$Entry.previous]o10123) :|: TRUE 15.99/5.31 f5543_0__init__Load(EOS(STATIC_5543(java.lang.Object(ARRAY(i1291)), i1294)), i1231, o10122[LinkedList$Entry.next]o10121, o10123[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.next]o10122, o10122[LinkedList$Entry.next]o10120, o10121[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10120, o10123[LinkedList$Entry.previous]o10120, o10121[LinkedList$Entry.previous]o10122, o10123[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.previous]o10120, o10122[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.next]o10123, o10122[LinkedList$Entry.previous]o10123, o10121[LinkedList$Entry.previous]o10123, o10123[LinkedList$Entry.previous]o10123) -> f5544_0__init__Load(EOS(STATIC_5544(java.lang.Object(ARRAY(i1291)), i1294)), i1231, o10122[LinkedList$Entry.next]o10121, o10123[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.next]o10122, o10122[LinkedList$Entry.next]o10120, o10121[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10120, o10123[LinkedList$Entry.previous]o10120, o10121[LinkedList$Entry.previous]o10122, o10123[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.previous]o10120, o10122[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.next]o10123, o10122[LinkedList$Entry.previous]o10123, o10121[LinkedList$Entry.previous]o10123, o10123[LinkedList$Entry.previous]o10123) :|: TRUE 15.99/5.31 f5544_0__init__Load(EOS(STATIC_5544(java.lang.Object(ARRAY(i1291)), i1294)), i1231, o10122[LinkedList$Entry.next]o10121, o10123[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.next]o10122, o10122[LinkedList$Entry.next]o10120, o10121[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10120, o10123[LinkedList$Entry.previous]o10120, o10121[LinkedList$Entry.previous]o10122, o10123[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.previous]o10120, o10122[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.next]o10123, o10122[LinkedList$Entry.previous]o10123, o10121[LinkedList$Entry.previous]o10123, o10123[LinkedList$Entry.previous]o10123) -> f5545_0__init__FieldAccess(EOS(STATIC_5545(java.lang.Object(ARRAY(i1291)), i1294)), i1231, o10122[LinkedList$Entry.next]o10121, o10123[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.next]o10122, o10122[LinkedList$Entry.next]o10120, o10121[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10120, o10123[LinkedList$Entry.previous]o10120, o10121[LinkedList$Entry.previous]o10122, o10123[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.previous]o10120, o10122[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.next]o10123, o10122[LinkedList$Entry.previous]o10123, o10121[LinkedList$Entry.previous]o10123, o10123[LinkedList$Entry.previous]o10123) :|: TRUE 15.99/5.31 f5545_0__init__FieldAccess(EOS(STATIC_5545(java.lang.Object(ARRAY(i1291)), i1294)), i1231, o10122[LinkedList$Entry.next]o10121, o10123[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.next]o10122, o10122[LinkedList$Entry.next]o10120, o10121[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10120, o10123[LinkedList$Entry.previous]o10120, o10121[LinkedList$Entry.previous]o10122, o10123[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.previous]o10120, o10122[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.next]o10123, o10122[LinkedList$Entry.previous]o10123, o10121[LinkedList$Entry.previous]o10123, o10123[LinkedList$Entry.previous]o10123) -> f5546_0__init__Load(EOS(STATIC_5546(java.lang.Object(ARRAY(i1291)), i1294)), i1231, o10122[LinkedList$Entry.next]o10121, o10123[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.next]o10122, o10122[LinkedList$Entry.next]o10120, o10121[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10120, o10123[LinkedList$Entry.previous]o10120, o10121[LinkedList$Entry.previous]o10122, o10123[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.previous]o10120, o10122[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.next]o10123, o10122[LinkedList$Entry.previous]o10123, o10121[LinkedList$Entry.previous]o10123, o10123[LinkedList$Entry.previous]o10123) :|: TRUE 15.99/5.31 f5546_0__init__Load(EOS(STATIC_5546(java.lang.Object(ARRAY(i1291)), i1294)), i1231, o10122[LinkedList$Entry.next]o10121, o10123[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.next]o10122, o10122[LinkedList$Entry.next]o10120, o10121[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10120, o10123[LinkedList$Entry.previous]o10120, o10121[LinkedList$Entry.previous]o10122, o10123[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.previous]o10120, o10122[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.next]o10123, o10122[LinkedList$Entry.previous]o10123, o10121[LinkedList$Entry.previous]o10123, o10123[LinkedList$Entry.previous]o10123) -> f5547_0__init__Load(EOS(STATIC_5547(java.lang.Object(ARRAY(i1291)), i1294)), i1231, o10122[LinkedList$Entry.next]o10121, o10123[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.next]o10122, o10122[LinkedList$Entry.next]o10120, o10121[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10120, o10123[LinkedList$Entry.previous]o10120, o10121[LinkedList$Entry.previous]o10122, o10123[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.previous]o10120, o10122[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.next]o10123, o10122[LinkedList$Entry.previous]o10123, o10121[LinkedList$Entry.previous]o10123, o10123[LinkedList$Entry.previous]o10123) :|: TRUE 15.99/5.31 f5547_0__init__Load(EOS(STATIC_5547(java.lang.Object(ARRAY(i1291)), i1294)), i1231, o10122[LinkedList$Entry.next]o10121, o10123[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.next]o10122, o10122[LinkedList$Entry.next]o10120, o10121[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10120, o10123[LinkedList$Entry.previous]o10120, o10121[LinkedList$Entry.previous]o10122, o10123[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.previous]o10120, o10122[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.next]o10123, o10122[LinkedList$Entry.previous]o10123, o10121[LinkedList$Entry.previous]o10123, o10123[LinkedList$Entry.previous]o10123) -> f5548_0__init__FieldAccess(EOS(STATIC_5548(java.lang.Object(ARRAY(i1291)), i1294)), i1231, o10122[LinkedList$Entry.next]o10121, o10123[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.next]o10122, o10122[LinkedList$Entry.next]o10120, o10121[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10120, o10123[LinkedList$Entry.previous]o10120, o10121[LinkedList$Entry.previous]o10122, o10123[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.previous]o10120, o10122[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.next]o10123, o10122[LinkedList$Entry.previous]o10123, o10121[LinkedList$Entry.previous]o10123, o10123[LinkedList$Entry.previous]o10123) :|: TRUE 15.99/5.31 f5548_0__init__FieldAccess(EOS(STATIC_5548(java.lang.Object(ARRAY(i1291)), i1294)), i1231, o10122[LinkedList$Entry.next]o10121, o10123[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.next]o10122, o10122[LinkedList$Entry.next]o10120, o10121[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10120, o10123[LinkedList$Entry.previous]o10120, o10121[LinkedList$Entry.previous]o10122, o10123[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.previous]o10120, o10122[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.next]o10123, o10122[LinkedList$Entry.previous]o10123, o10121[LinkedList$Entry.previous]o10123, o10123[LinkedList$Entry.previous]o10123) -> f5549_0__init__Return(EOS(STATIC_5549(java.lang.Object(ARRAY(i1291)), i1294)), i1231, o10122[LinkedList$Entry.next]o10121, o10123[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.next]o10122, o10122[LinkedList$Entry.next]o10120, o10121[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10120, o10123[LinkedList$Entry.previous]o10120, o10121[LinkedList$Entry.previous]o10122, o10123[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.previous]o10120, o10122[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.next]o10123, o10122[LinkedList$Entry.previous]o10123, o10121[LinkedList$Entry.previous]o10123, o10123[LinkedList$Entry.previous]o10123) :|: TRUE 15.99/5.31 f5549_0__init__Return(EOS(STATIC_5549(java.lang.Object(ARRAY(i1291)), i1294)), i1231, o10122[LinkedList$Entry.next]o10121, o10123[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.next]o10122, o10122[LinkedList$Entry.next]o10120, o10121[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10120, o10123[LinkedList$Entry.previous]o10120, o10121[LinkedList$Entry.previous]o10122, o10123[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.previous]o10120, o10122[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.next]o10123, o10122[LinkedList$Entry.previous]o10123, o10121[LinkedList$Entry.previous]o10123, o10123[LinkedList$Entry.previous]o10123) -> f5550_0_addBefore_Store(EOS(STATIC_5550(java.lang.Object(ARRAY(i1291)), i1294)), i1231, o10122[LinkedList$Entry.next]o10121, o10123[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.next]o10122, o10122[LinkedList$Entry.next]o10120, o10121[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10120, o10123[LinkedList$Entry.previous]o10120, o10121[LinkedList$Entry.previous]o10122, o10123[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.previous]o10120, o10122[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.next]o10123, o10122[LinkedList$Entry.previous]o10123, o10121[LinkedList$Entry.previous]o10123, o10123[LinkedList$Entry.previous]o10123) :|: TRUE 15.99/5.31 f5550_0_addBefore_Store(EOS(STATIC_5550(java.lang.Object(ARRAY(i1291)), i1294)), i1231, o10122[LinkedList$Entry.next]o10121, o10123[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.next]o10122, o10122[LinkedList$Entry.next]o10120, o10121[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10120, o10123[LinkedList$Entry.previous]o10120, o10121[LinkedList$Entry.previous]o10122, o10123[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.previous]o10120, o10122[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.next]o10123, o10122[LinkedList$Entry.previous]o10123, o10121[LinkedList$Entry.previous]o10123, o10123[LinkedList$Entry.previous]o10123) -> f5551_0_addBefore_Load(EOS(STATIC_5551(java.lang.Object(ARRAY(i1291)), i1294)), i1231, o10122[LinkedList$Entry.next]o10121, o10123[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.next]o10122, o10122[LinkedList$Entry.next]o10120, o10121[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10120, o10123[LinkedList$Entry.previous]o10120, o10121[LinkedList$Entry.previous]o10122, o10123[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.previous]o10120, o10122[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.next]o10123, o10122[LinkedList$Entry.previous]o10123, o10121[LinkedList$Entry.previous]o10123, o10123[LinkedList$Entry.previous]o10123) :|: TRUE 15.99/5.31 f5551_0_addBefore_Load(EOS(STATIC_5551(java.lang.Object(ARRAY(i1291)), i1294)), i1231, o10122[LinkedList$Entry.next]o10121, o10123[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.next]o10122, o10122[LinkedList$Entry.next]o10120, o10121[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10120, o10123[LinkedList$Entry.previous]o10120, o10121[LinkedList$Entry.previous]o10122, o10123[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.previous]o10120, o10122[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.next]o10123, o10122[LinkedList$Entry.previous]o10123, o10121[LinkedList$Entry.previous]o10123, o10123[LinkedList$Entry.previous]o10123) -> f5552_0_addBefore_FieldAccess(EOS(STATIC_5552(java.lang.Object(ARRAY(i1291)), i1294)), i1231, o10122[LinkedList$Entry.next]o10121, o10123[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.next]o10122, o10122[LinkedList$Entry.next]o10120, o10121[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10120, o10123[LinkedList$Entry.previous]o10120, o10121[LinkedList$Entry.previous]o10122, o10123[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.previous]o10120, o10122[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.next]o10123, o10122[LinkedList$Entry.previous]o10123, o10121[LinkedList$Entry.previous]o10123, o10123[LinkedList$Entry.previous]o10123) :|: TRUE 15.99/5.32 f5552_0_addBefore_FieldAccess(EOS(STATIC_5552(java.lang.Object(ARRAY(i1291)), i1294)), i1231, o10122[LinkedList$Entry.next]o10121, o10123[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.next]o10122, o10122[LinkedList$Entry.next]o10120, o10121[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10120, o10123[LinkedList$Entry.previous]o10120, o10121[LinkedList$Entry.previous]o10122, o10123[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.previous]o10120, o10122[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.next]o10123, o10122[LinkedList$Entry.previous]o10123, o10121[LinkedList$Entry.previous]o10123, o10123[LinkedList$Entry.previous]o10123) -> f5553_0_addBefore_Load(EOS(STATIC_5553(java.lang.Object(ARRAY(i1291)), i1294)), i1231, o10122[LinkedList$Entry.next]o10121, o10123[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.next]o10122, o10122[LinkedList$Entry.next]o10120, o10121[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10120, o10123[LinkedList$Entry.previous]o10120, o10121[LinkedList$Entry.previous]o10122, o10123[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.previous]o10120, o10122[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.next]o10123, o10122[LinkedList$Entry.previous]o10123, o10121[LinkedList$Entry.previous]o10123, o10123[LinkedList$Entry.previous]o10123) :|: TRUE 15.99/5.32 f5553_0_addBefore_Load(EOS(STATIC_5553(java.lang.Object(ARRAY(i1291)), i1294)), i1231, o10122[LinkedList$Entry.next]o10121, o10123[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.next]o10122, o10122[LinkedList$Entry.next]o10120, o10121[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10120, o10123[LinkedList$Entry.previous]o10120, o10121[LinkedList$Entry.previous]o10122, o10123[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.previous]o10120, o10122[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.next]o10123, o10122[LinkedList$Entry.previous]o10123, o10121[LinkedList$Entry.previous]o10123, o10123[LinkedList$Entry.previous]o10123) -> f5554_0_addBefore_FieldAccess(EOS(STATIC_5554(java.lang.Object(ARRAY(i1291)), i1294)), i1231, o10122[LinkedList$Entry.next]o10121, o10123[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.next]o10122, o10122[LinkedList$Entry.next]o10120, o10121[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10120, o10123[LinkedList$Entry.previous]o10120, o10121[LinkedList$Entry.previous]o10122, o10123[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.previous]o10120, o10122[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.next]o10123, o10122[LinkedList$Entry.previous]o10123, o10121[LinkedList$Entry.previous]o10123, o10123[LinkedList$Entry.previous]o10123) :|: TRUE 15.99/5.32 f5554_0_addBefore_FieldAccess(EOS(STATIC_5554(java.lang.Object(ARRAY(i1291)), i1294)), i1231, o10122[LinkedList$Entry.next]o10121, o10123[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.next]o10122, o10122[LinkedList$Entry.next]o10120, o10121[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10120, o10123[LinkedList$Entry.previous]o10120, o10121[LinkedList$Entry.previous]o10122, o10123[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.previous]o10120, o10122[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.next]o10123, o10122[LinkedList$Entry.previous]o10123, o10121[LinkedList$Entry.previous]o10123, o10123[LinkedList$Entry.previous]o10123) -> f5555_0_addBefore_FieldAccess(EOS(STATIC_5555(java.lang.Object(ARRAY(i1291)), i1294)), i1231, o10122[LinkedList$Entry.next]o10121, o10123[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.next]o10122, o10122[LinkedList$Entry.next]o10120, o10121[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10120, o10123[LinkedList$Entry.previous]o10120, o10121[LinkedList$Entry.previous]o10122, o10123[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.previous]o10120, o10122[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.next]o10123, o10121[LinkedList$Entry.previous]o10123, o10123[LinkedList$Entry.previous]o10123, o10122[LinkedList$Entry.previous]o10123) :|: o10122[LinkedList$Entry.next]o10122 > 0 && o10123[LinkedList$Entry.previous]o10122 > 0 && o10122[LinkedList$Entry.previous]o10122 > 0 && o10122[LinkedList$Entry.next]o10123 > 0 && o10122[LinkedList$Entry.previous]o10123 > 0 && o10123[LinkedList$Entry.previous]o10123 > 0 15.99/5.32 f5554_0_addBefore_FieldAccess(EOS(STATIC_5554(java.lang.Object(ARRAY(i1291)), i1294)), i1231, o10685[LinkedList$Entry.next]o10121, o10685[LinkedList$Entry.previous]o10121, o10685[LinkedList$Entry.previous]o10121, o10685[LinkedList$Entry.next]o10685, o10685[LinkedList$Entry.next]o10120, o10121[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10120, o10685[LinkedList$Entry.previous]o10120, o10121[LinkedList$Entry.previous]o10685, o10685[LinkedList$Entry.previous]o10685, o10685[LinkedList$Entry.previous]o10120, o10685[LinkedList$Entry.previous]o10685, o10685[LinkedList$Entry.next]o10685, o10685[LinkedList$Entry.previous]o10685, o10121[LinkedList$Entry.previous]o10685, o10685[LinkedList$Entry.previous]o10685) -> f5556_0_addBefore_FieldAccess(EOS(STATIC_5556(java.lang.Object(ARRAY(i1291)), i1294)), i1231, o10685[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10120, o10685[LinkedList$Entry.previous]o10120, o10121[LinkedList$Entry.previous]o10685, o10685[LinkedList$Entry.previous]o10685) :|: TRUE 15.99/5.32 f5555_0_addBefore_FieldAccess(EOS(STATIC_5555(java.lang.Object(ARRAY(i1291)), i1294)), i1231, o10122[LinkedList$Entry.next]o10121, o10123[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.next]o10122, o10122[LinkedList$Entry.next]o10120, o10121[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10120, o10123[LinkedList$Entry.previous]o10120, o10121[LinkedList$Entry.previous]o10122, o10123[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.previous]o10120, o10122[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.next]o10123, o10121[LinkedList$Entry.previous]o10123, o10123[LinkedList$Entry.previous]o10123, o10122[LinkedList$Entry.previous]o10123) -> f5557_0_addBefore_FieldAccess(EOS(STATIC_5557(java.lang.Object(ARRAY(i1291)), i1294)), i1231, o10122[LinkedList$Entry.next]o10121, o10123[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.next]o10122, o10122[LinkedList$Entry.next]o10120, o10121[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10120, o10123[LinkedList$Entry.previous]o10120, o10121[LinkedList$Entry.previous]o10122, o10123[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.previous]o10120, o10122[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.next]o10123, o10121[LinkedList$Entry.previous]o10123, o10123[LinkedList$Entry.previous]o10123, o10122[LinkedList$Entry.previous]o10123) :|: o10123[LinkedList$Entry.previous]o10121 > 0 && o10121[LinkedList$Entry.previous]o10121 > 0 && o10121[LinkedList$Entry.previous]o10123 > 0 && o10123[LinkedList$Entry.previous]o10123 > 0 15.99/5.32 f5557_0_addBefore_FieldAccess(EOS(STATIC_5557(java.lang.Object(ARRAY(i1291)), i1294)), i1231, o10122[LinkedList$Entry.next]o10121, o10123[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.next]o10122, o10122[LinkedList$Entry.next]o10120, o10121[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10120, o10123[LinkedList$Entry.previous]o10120, o10121[LinkedList$Entry.previous]o10122, o10123[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.previous]o10120, o10122[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.next]o10123, o10121[LinkedList$Entry.previous]o10123, o10123[LinkedList$Entry.previous]o10123, o10122[LinkedList$Entry.previous]o10123) -> f5561_0_addBefore_Load(EOS(STATIC_5561(java.lang.Object(ARRAY(i1291)), i1294)), i1231, o10122[LinkedList$Entry.next]o10121, o10123[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.next]o10122, o10122[LinkedList$Entry.next]o10120, o10121[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10120, o10123[LinkedList$Entry.previous]o10120, o10121[LinkedList$Entry.previous]o10122, o10123[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.previous]o10120, o10122[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.next]o10123, o10121[LinkedList$Entry.previous]o10123, o10123[LinkedList$Entry.previous]o10123, o10122[LinkedList$Entry.previous]o10123) :|: TRUE 15.99/5.32 f5561_0_addBefore_Load(EOS(STATIC_5561(java.lang.Object(ARRAY(i1291)), i1294)), i1231, o10122[LinkedList$Entry.next]o10121, o10123[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.next]o10122, o10122[LinkedList$Entry.next]o10120, o10121[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10120, o10123[LinkedList$Entry.previous]o10120, o10121[LinkedList$Entry.previous]o10122, o10123[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.previous]o10120, o10122[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.next]o10123, o10121[LinkedList$Entry.previous]o10123, o10123[LinkedList$Entry.previous]o10123, o10122[LinkedList$Entry.previous]o10123) -> f5563_0_addBefore_FieldAccess(EOS(STATIC_5563(java.lang.Object(ARRAY(i1291)), i1294)), i1231, o10122[LinkedList$Entry.next]o10121, o10123[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.next]o10122, o10122[LinkedList$Entry.next]o10120, o10121[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10120, o10123[LinkedList$Entry.previous]o10120, o10121[LinkedList$Entry.previous]o10122, o10123[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.previous]o10120, o10122[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.next]o10123, o10121[LinkedList$Entry.previous]o10123, o10123[LinkedList$Entry.previous]o10123, o10122[LinkedList$Entry.previous]o10123) :|: TRUE 15.99/5.32 f5563_0_addBefore_FieldAccess(EOS(STATIC_5563(java.lang.Object(ARRAY(i1291)), i1294)), i1231, o10122[LinkedList$Entry.next]o10121, o10123[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.next]o10122, o10122[LinkedList$Entry.next]o10120, o10121[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10120, o10123[LinkedList$Entry.previous]o10120, o10121[LinkedList$Entry.previous]o10122, o10123[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.previous]o10120, o10122[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.next]o10123, o10121[LinkedList$Entry.previous]o10123, o10123[LinkedList$Entry.previous]o10123, o10122[LinkedList$Entry.previous]o10123) -> f5565_0_addBefore_Load(EOS(STATIC_5565(java.lang.Object(ARRAY(i1291)), i1294)), i1231, o10122[LinkedList$Entry.next]o10121, o10123[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.next]o10122, o10122[LinkedList$Entry.next]o10120, o10121[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10120, o10123[LinkedList$Entry.previous]o10120, o10121[LinkedList$Entry.previous]o10122, o10123[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.previous]o10120, o10122[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.next]o10123, o10121[LinkedList$Entry.previous]o10123, o10123[LinkedList$Entry.previous]o10123, o10122[LinkedList$Entry.previous]o10123) :|: TRUE 15.99/5.32 f5565_0_addBefore_Load(EOS(STATIC_5565(java.lang.Object(ARRAY(i1291)), i1294)), i1231, o10122[LinkedList$Entry.next]o10121, o10123[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.next]o10122, o10122[LinkedList$Entry.next]o10120, o10121[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10120, o10123[LinkedList$Entry.previous]o10120, o10121[LinkedList$Entry.previous]o10122, o10123[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.previous]o10120, o10122[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.next]o10123, o10121[LinkedList$Entry.previous]o10123, o10123[LinkedList$Entry.previous]o10123, o10122[LinkedList$Entry.previous]o10123) -> f5567_0_addBefore_FieldAccess(EOS(STATIC_5567(java.lang.Object(ARRAY(i1291)), i1294)), i1231, o10122[LinkedList$Entry.next]o10121, o10123[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.next]o10122, o10122[LinkedList$Entry.next]o10120, o10121[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10120, o10123[LinkedList$Entry.previous]o10120, o10121[LinkedList$Entry.previous]o10122, o10123[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.previous]o10120, o10122[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.next]o10123, o10121[LinkedList$Entry.previous]o10123, o10123[LinkedList$Entry.previous]o10123, o10122[LinkedList$Entry.previous]o10123) :|: TRUE 15.99/5.32 f5567_0_addBefore_FieldAccess(EOS(STATIC_5567(java.lang.Object(ARRAY(i1291)), i1294)), i1231, o10122[LinkedList$Entry.next]o10121, o10123[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.next]o10122, o10122[LinkedList$Entry.next]o10120, o10121[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10120, o10123[LinkedList$Entry.previous]o10120, o10121[LinkedList$Entry.previous]o10122, o10123[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.previous]o10120, o10122[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.next]o10123, o10121[LinkedList$Entry.previous]o10123, o10123[LinkedList$Entry.previous]o10123, o10122[LinkedList$Entry.previous]o10123) -> f5569_0_addBefore_Load(EOS(STATIC_5569(java.lang.Object(ARRAY(i1291)), i1294)), i1231, o10122[LinkedList$Entry.next]o10121, o10123[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.next]o10122, o10122[LinkedList$Entry.next]o10120, o10121[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10120, o10123[LinkedList$Entry.previous]o10120, o10121[LinkedList$Entry.previous]o10122, o10123[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.previous]o10120, o10122[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.next]o10123, o10121[LinkedList$Entry.previous]o10123, o10123[LinkedList$Entry.previous]o10123, o10122[LinkedList$Entry.previous]o10123) :|: TRUE 15.99/5.32 f5569_0_addBefore_Load(EOS(STATIC_5569(java.lang.Object(ARRAY(i1291)), i1294)), i1231, o10122[LinkedList$Entry.next]o10121, o10123[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.next]o10122, o10122[LinkedList$Entry.next]o10120, o10121[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10120, o10123[LinkedList$Entry.previous]o10120, o10121[LinkedList$Entry.previous]o10122, o10123[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.previous]o10120, o10122[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.next]o10123, o10121[LinkedList$Entry.previous]o10123, o10123[LinkedList$Entry.previous]o10123, o10122[LinkedList$Entry.previous]o10123) -> f5571_0_addBefore_Duplicate(EOS(STATIC_5571(java.lang.Object(ARRAY(i1291)), i1294)), i1231, o10122[LinkedList$Entry.next]o10121, o10123[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.next]o10122, o10122[LinkedList$Entry.next]o10120, o10121[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10120, o10123[LinkedList$Entry.previous]o10120, o10121[LinkedList$Entry.previous]o10122, o10123[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.previous]o10120, o10122[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.next]o10123, o10121[LinkedList$Entry.previous]o10123, o10123[LinkedList$Entry.previous]o10123, o10122[LinkedList$Entry.previous]o10123) :|: TRUE 15.99/5.32 f5571_0_addBefore_Duplicate(EOS(STATIC_5571(java.lang.Object(ARRAY(i1291)), i1294)), i1231, o10122[LinkedList$Entry.next]o10121, o10123[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.next]o10122, o10122[LinkedList$Entry.next]o10120, o10121[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10120, o10123[LinkedList$Entry.previous]o10120, o10121[LinkedList$Entry.previous]o10122, o10123[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.previous]o10120, o10122[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.next]o10123, o10121[LinkedList$Entry.previous]o10123, o10123[LinkedList$Entry.previous]o10123, o10122[LinkedList$Entry.previous]o10123) -> f5573_0_addBefore_FieldAccess(EOS(STATIC_5573(java.lang.Object(ARRAY(i1291)), i1294)), i1231, o10122[LinkedList$Entry.next]o10121, o10123[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.next]o10122, o10122[LinkedList$Entry.next]o10120, o10121[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10120, o10123[LinkedList$Entry.previous]o10120, o10121[LinkedList$Entry.previous]o10122, o10123[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.previous]o10120, o10122[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.next]o10123, o10121[LinkedList$Entry.previous]o10123, o10123[LinkedList$Entry.previous]o10123, o10122[LinkedList$Entry.previous]o10123) :|: TRUE 15.99/5.32 f5573_0_addBefore_FieldAccess(EOS(STATIC_5573(java.lang.Object(ARRAY(i1291)), i1294)), i1231, o10122[LinkedList$Entry.next]o10121, o10123[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.next]o10122, o10122[LinkedList$Entry.next]o10120, o10121[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10120, o10123[LinkedList$Entry.previous]o10120, o10121[LinkedList$Entry.previous]o10122, o10123[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.previous]o10120, o10122[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.next]o10123, o10121[LinkedList$Entry.previous]o10123, o10123[LinkedList$Entry.previous]o10123, o10122[LinkedList$Entry.previous]o10123) -> f5575_0_addBefore_ConstantStackPush(EOS(STATIC_5575(java.lang.Object(ARRAY(i1291)), i1294)), i1231, o10122[LinkedList$Entry.next]o10121, o10123[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.next]o10122, o10122[LinkedList$Entry.next]o10120, o10121[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10120, o10123[LinkedList$Entry.previous]o10120, o10121[LinkedList$Entry.previous]o10122, o10123[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.previous]o10120, o10122[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.next]o10123, o10121[LinkedList$Entry.previous]o10123, o10123[LinkedList$Entry.previous]o10123, o10122[LinkedList$Entry.previous]o10123) :|: TRUE 15.99/5.32 f5575_0_addBefore_ConstantStackPush(EOS(STATIC_5575(java.lang.Object(ARRAY(i1291)), i1294)), i1231, o10122[LinkedList$Entry.next]o10121, o10123[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.next]o10122, o10122[LinkedList$Entry.next]o10120, o10121[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10120, o10123[LinkedList$Entry.previous]o10120, o10121[LinkedList$Entry.previous]o10122, o10123[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.previous]o10120, o10122[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.next]o10123, o10121[LinkedList$Entry.previous]o10123, o10123[LinkedList$Entry.previous]o10123, o10122[LinkedList$Entry.previous]o10123) -> f5577_0_addBefore_IntArithmetic(EOS(STATIC_5577(java.lang.Object(ARRAY(i1291)), i1294)), i1231, o10122[LinkedList$Entry.next]o10121, o10123[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.next]o10122, o10122[LinkedList$Entry.next]o10120, o10121[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10120, o10123[LinkedList$Entry.previous]o10120, o10121[LinkedList$Entry.previous]o10122, o10123[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.previous]o10120, o10122[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.next]o10123, o10121[LinkedList$Entry.previous]o10123, o10123[LinkedList$Entry.previous]o10123, o10122[LinkedList$Entry.previous]o10123) :|: TRUE 15.99/5.32 f5577_0_addBefore_IntArithmetic(EOS(STATIC_5577(java.lang.Object(ARRAY(i1291)), i1294)), i1231, o10122[LinkedList$Entry.next]o10121, o10123[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.next]o10122, o10122[LinkedList$Entry.next]o10120, o10121[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10120, o10123[LinkedList$Entry.previous]o10120, o10121[LinkedList$Entry.previous]o10122, o10123[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.previous]o10120, o10122[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.next]o10123, o10121[LinkedList$Entry.previous]o10123, o10123[LinkedList$Entry.previous]o10123, o10122[LinkedList$Entry.previous]o10123) -> f5579_0_addBefore_FieldAccess(EOS(STATIC_5579(java.lang.Object(ARRAY(i1291)), i1294)), i1231, o10122[LinkedList$Entry.next]o10121, o10123[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.next]o10122, o10122[LinkedList$Entry.next]o10120, o10121[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10120, o10123[LinkedList$Entry.previous]o10120, o10121[LinkedList$Entry.previous]o10122, o10123[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.previous]o10120, o10122[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.next]o10123, o10121[LinkedList$Entry.previous]o10123, o10123[LinkedList$Entry.previous]o10123, o10122[LinkedList$Entry.previous]o10123) :|: TRUE 15.99/5.32 f5579_0_addBefore_FieldAccess(EOS(STATIC_5579(java.lang.Object(ARRAY(i1291)), i1294)), i1231, o10122[LinkedList$Entry.next]o10121, o10123[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.next]o10122, o10122[LinkedList$Entry.next]o10120, o10121[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10120, o10123[LinkedList$Entry.previous]o10120, o10121[LinkedList$Entry.previous]o10122, o10123[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.previous]o10120, o10122[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.next]o10123, o10121[LinkedList$Entry.previous]o10123, o10123[LinkedList$Entry.previous]o10123, o10122[LinkedList$Entry.previous]o10123) -> f5581_0_addBefore_Load(EOS(STATIC_5581(java.lang.Object(ARRAY(i1291)), i1294)), i1231, o10122[LinkedList$Entry.next]o10121, o10123[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.next]o10122, o10122[LinkedList$Entry.next]o10120, o10121[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10120, o10123[LinkedList$Entry.previous]o10120, o10121[LinkedList$Entry.previous]o10122, o10123[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.previous]o10120, o10122[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.next]o10123, o10121[LinkedList$Entry.previous]o10123, o10123[LinkedList$Entry.previous]o10123, o10122[LinkedList$Entry.previous]o10123) :|: TRUE 15.99/5.32 f5581_0_addBefore_Load(EOS(STATIC_5581(java.lang.Object(ARRAY(i1291)), i1294)), i1231, o10122[LinkedList$Entry.next]o10121, o10123[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.next]o10122, o10122[LinkedList$Entry.next]o10120, o10121[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10120, o10123[LinkedList$Entry.previous]o10120, o10121[LinkedList$Entry.previous]o10122, o10123[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.previous]o10120, o10122[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.next]o10123, o10121[LinkedList$Entry.previous]o10123, o10123[LinkedList$Entry.previous]o10123, o10122[LinkedList$Entry.previous]o10123) -> f5583_0_addBefore_Duplicate(EOS(STATIC_5583(java.lang.Object(ARRAY(i1291)), i1294)), i1231, o10122[LinkedList$Entry.next]o10121, o10123[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.next]o10122, o10122[LinkedList$Entry.next]o10120, o10121[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10120, o10123[LinkedList$Entry.previous]o10120, o10121[LinkedList$Entry.previous]o10122, o10123[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.previous]o10120, o10122[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.next]o10123, o10121[LinkedList$Entry.previous]o10123, o10123[LinkedList$Entry.previous]o10123, o10122[LinkedList$Entry.previous]o10123) :|: TRUE 15.99/5.32 f5583_0_addBefore_Duplicate(EOS(STATIC_5583(java.lang.Object(ARRAY(i1291)), i1294)), i1231, o10122[LinkedList$Entry.next]o10121, o10123[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.next]o10122, o10122[LinkedList$Entry.next]o10120, o10121[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10120, o10123[LinkedList$Entry.previous]o10120, o10121[LinkedList$Entry.previous]o10122, o10123[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.previous]o10120, o10122[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.next]o10123, o10121[LinkedList$Entry.previous]o10123, o10123[LinkedList$Entry.previous]o10123, o10122[LinkedList$Entry.previous]o10123) -> f5585_0_addBefore_FieldAccess(EOS(STATIC_5585(java.lang.Object(ARRAY(i1291)), i1294)), i1231, o10122[LinkedList$Entry.next]o10121, o10123[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.next]o10122, o10122[LinkedList$Entry.next]o10120, o10121[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10120, o10123[LinkedList$Entry.previous]o10120, o10121[LinkedList$Entry.previous]o10122, o10123[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.previous]o10120, o10122[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.next]o10123, o10121[LinkedList$Entry.previous]o10123, o10123[LinkedList$Entry.previous]o10123, o10122[LinkedList$Entry.previous]o10123) :|: TRUE 15.99/5.32 f5585_0_addBefore_FieldAccess(EOS(STATIC_5585(java.lang.Object(ARRAY(i1291)), i1294)), i1231, o10122[LinkedList$Entry.next]o10121, o10123[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.next]o10122, o10122[LinkedList$Entry.next]o10120, o10121[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10120, o10123[LinkedList$Entry.previous]o10120, o10121[LinkedList$Entry.previous]o10122, o10123[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.previous]o10120, o10122[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.next]o10123, o10121[LinkedList$Entry.previous]o10123, o10123[LinkedList$Entry.previous]o10123, o10122[LinkedList$Entry.previous]o10123) -> f5587_0_addBefore_ConstantStackPush(EOS(STATIC_5587(java.lang.Object(ARRAY(i1291)), i1294)), i1231, o10122[LinkedList$Entry.next]o10121, o10123[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.next]o10122, o10122[LinkedList$Entry.next]o10120, o10121[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10120, o10123[LinkedList$Entry.previous]o10120, o10121[LinkedList$Entry.previous]o10122, o10123[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.previous]o10120, o10122[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.next]o10123, o10121[LinkedList$Entry.previous]o10123, o10123[LinkedList$Entry.previous]o10123, o10122[LinkedList$Entry.previous]o10123) :|: TRUE 15.99/5.32 f5587_0_addBefore_ConstantStackPush(EOS(STATIC_5587(java.lang.Object(ARRAY(i1291)), i1294)), i1231, o10122[LinkedList$Entry.next]o10121, o10123[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.next]o10122, o10122[LinkedList$Entry.next]o10120, o10121[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10120, o10123[LinkedList$Entry.previous]o10120, o10121[LinkedList$Entry.previous]o10122, o10123[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.previous]o10120, o10122[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.next]o10123, o10121[LinkedList$Entry.previous]o10123, o10123[LinkedList$Entry.previous]o10123, o10122[LinkedList$Entry.previous]o10123) -> f5589_0_addBefore_IntArithmetic(EOS(STATIC_5589(java.lang.Object(ARRAY(i1291)), i1294)), i1231, o10122[LinkedList$Entry.next]o10121, o10123[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.next]o10122, o10122[LinkedList$Entry.next]o10120, o10121[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10120, o10123[LinkedList$Entry.previous]o10120, o10121[LinkedList$Entry.previous]o10122, o10123[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.previous]o10120, o10122[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.next]o10123, o10121[LinkedList$Entry.previous]o10123, o10123[LinkedList$Entry.previous]o10123, o10122[LinkedList$Entry.previous]o10123) :|: TRUE 15.99/5.32 f5589_0_addBefore_IntArithmetic(EOS(STATIC_5589(java.lang.Object(ARRAY(i1291)), i1294)), i1231, o10122[LinkedList$Entry.next]o10121, o10123[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.next]o10122, o10122[LinkedList$Entry.next]o10120, o10121[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10120, o10123[LinkedList$Entry.previous]o10120, o10121[LinkedList$Entry.previous]o10122, o10123[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.previous]o10120, o10122[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.next]o10123, o10121[LinkedList$Entry.previous]o10123, o10123[LinkedList$Entry.previous]o10123, o10122[LinkedList$Entry.previous]o10123) -> f5591_0_addBefore_FieldAccess(EOS(STATIC_5591(java.lang.Object(ARRAY(i1291)), i1294)), i1231, o10122[LinkedList$Entry.next]o10121, o10123[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.next]o10122, o10122[LinkedList$Entry.next]o10120, o10121[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10120, o10123[LinkedList$Entry.previous]o10120, o10121[LinkedList$Entry.previous]o10122, o10123[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.previous]o10120, o10122[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.next]o10123, o10121[LinkedList$Entry.previous]o10123, o10123[LinkedList$Entry.previous]o10123, o10122[LinkedList$Entry.previous]o10123) :|: TRUE 15.99/5.32 f5591_0_addBefore_FieldAccess(EOS(STATIC_5591(java.lang.Object(ARRAY(i1291)), i1294)), i1231, o10122[LinkedList$Entry.next]o10121, o10123[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.next]o10122, o10122[LinkedList$Entry.next]o10120, o10121[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10120, o10123[LinkedList$Entry.previous]o10120, o10121[LinkedList$Entry.previous]o10122, o10123[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.previous]o10120, o10122[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.next]o10123, o10121[LinkedList$Entry.previous]o10123, o10123[LinkedList$Entry.previous]o10123, o10122[LinkedList$Entry.previous]o10123) -> f5593_0_addBefore_Load(EOS(STATIC_5593(java.lang.Object(ARRAY(i1291)), i1294)), i1231, o10122[LinkedList$Entry.next]o10121, o10123[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.next]o10122, o10122[LinkedList$Entry.next]o10120, o10121[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10120, o10123[LinkedList$Entry.previous]o10120, o10121[LinkedList$Entry.previous]o10122, o10123[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.previous]o10120, o10122[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.next]o10123, o10121[LinkedList$Entry.previous]o10123, o10123[LinkedList$Entry.previous]o10123, o10122[LinkedList$Entry.previous]o10123) :|: TRUE 15.99/5.32 f5593_0_addBefore_Load(EOS(STATIC_5593(java.lang.Object(ARRAY(i1291)), i1294)), i1231, o10122[LinkedList$Entry.next]o10121, o10123[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.next]o10122, o10122[LinkedList$Entry.next]o10120, o10121[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10120, o10123[LinkedList$Entry.previous]o10120, o10121[LinkedList$Entry.previous]o10122, o10123[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.previous]o10120, o10122[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.next]o10123, o10121[LinkedList$Entry.previous]o10123, o10123[LinkedList$Entry.previous]o10123, o10122[LinkedList$Entry.previous]o10123) -> f5595_0_addBefore_Return(EOS(STATIC_5595(java.lang.Object(ARRAY(i1291)), i1294)), i1231, o10122[LinkedList$Entry.next]o10121, o10123[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.next]o10122, o10122[LinkedList$Entry.next]o10120, o10121[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10120, o10123[LinkedList$Entry.previous]o10120, o10121[LinkedList$Entry.previous]o10122, o10123[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.previous]o10120, o10122[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.next]o10123, o10121[LinkedList$Entry.previous]o10123, o10123[LinkedList$Entry.previous]o10123, o10122[LinkedList$Entry.previous]o10123) :|: TRUE 15.99/5.32 f5595_0_addBefore_Return(EOS(STATIC_5595(java.lang.Object(ARRAY(i1291)), i1294)), i1231, o10122[LinkedList$Entry.next]o10121, o10123[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.next]o10122, o10122[LinkedList$Entry.next]o10120, o10121[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10120, o10123[LinkedList$Entry.previous]o10120, o10121[LinkedList$Entry.previous]o10122, o10123[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.previous]o10120, o10122[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.next]o10123, o10121[LinkedList$Entry.previous]o10123, o10123[LinkedList$Entry.previous]o10123, o10122[LinkedList$Entry.previous]o10123) -> f5597_0_addLast_StackPop(EOS(STATIC_5597(java.lang.Object(ARRAY(i1291)), i1294)), i1231, o10122[LinkedList$Entry.next]o10121, o10123[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.next]o10122, o10122[LinkedList$Entry.next]o10120, o10121[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10120, o10123[LinkedList$Entry.previous]o10120, o10121[LinkedList$Entry.previous]o10122, o10123[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.previous]o10120, o10122[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.next]o10123, o10121[LinkedList$Entry.previous]o10123, o10123[LinkedList$Entry.previous]o10123, o10122[LinkedList$Entry.previous]o10123) :|: TRUE 15.99/5.32 f5597_0_addLast_StackPop(EOS(STATIC_5597(java.lang.Object(ARRAY(i1291)), i1294)), i1231, o10122[LinkedList$Entry.next]o10121, o10123[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.next]o10122, o10122[LinkedList$Entry.next]o10120, o10121[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10120, o10123[LinkedList$Entry.previous]o10120, o10121[LinkedList$Entry.previous]o10122, o10123[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.previous]o10120, o10122[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.next]o10123, o10121[LinkedList$Entry.previous]o10123, o10123[LinkedList$Entry.previous]o10123, o10122[LinkedList$Entry.previous]o10123) -> f5599_0_addLast_Return(EOS(STATIC_5599(java.lang.Object(ARRAY(i1291)), i1294)), i1231, o10122[LinkedList$Entry.next]o10121, o10123[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.next]o10122, o10122[LinkedList$Entry.next]o10120, o10121[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10120, o10123[LinkedList$Entry.previous]o10120, o10121[LinkedList$Entry.previous]o10122, o10123[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.previous]o10120, o10122[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.next]o10123, o10121[LinkedList$Entry.previous]o10123, o10123[LinkedList$Entry.previous]o10123, o10122[LinkedList$Entry.previous]o10123) :|: TRUE 15.99/5.32 f5599_0_addLast_Return(EOS(STATIC_5599(java.lang.Object(ARRAY(i1291)), i1294)), i1231, o10122[LinkedList$Entry.next]o10121, o10123[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.next]o10122, o10122[LinkedList$Entry.next]o10120, o10121[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10120, o10123[LinkedList$Entry.previous]o10120, o10121[LinkedList$Entry.previous]o10122, o10123[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.previous]o10120, o10122[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.next]o10123, o10121[LinkedList$Entry.previous]o10123, o10123[LinkedList$Entry.previous]o10123, o10122[LinkedList$Entry.previous]o10123) -> f5601_0_createList_Inc(EOS(STATIC_5601(java.lang.Object(ARRAY(i1291)), i1294)), i1231, o10122[LinkedList$Entry.next]o10121, o10123[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.next]o10122, o10122[LinkedList$Entry.next]o10120, o10121[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10120, o10123[LinkedList$Entry.previous]o10120, o10121[LinkedList$Entry.previous]o10122, o10123[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.previous]o10120, o10122[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.next]o10123, o10121[LinkedList$Entry.previous]o10123, o10123[LinkedList$Entry.previous]o10123, o10122[LinkedList$Entry.previous]o10123) :|: TRUE 15.99/5.32 f5601_0_createList_Inc(EOS(STATIC_5601(java.lang.Object(ARRAY(i1291)), i1294)), i1231, o10122[LinkedList$Entry.next]o10121, o10123[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.next]o10122, o10122[LinkedList$Entry.next]o10120, o10121[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10120, o10123[LinkedList$Entry.previous]o10120, o10121[LinkedList$Entry.previous]o10122, o10123[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.previous]o10120, o10122[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.next]o10123, o10121[LinkedList$Entry.previous]o10123, o10123[LinkedList$Entry.previous]o10123, o10122[LinkedList$Entry.previous]o10123) -> f5603_0_createList_JMP(EOS(STATIC_5603(java.lang.Object(ARRAY(i1291)), i1294)), i1231 + -1, o10122[LinkedList$Entry.next]o10121, o10123[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.next]o10122, o10122[LinkedList$Entry.next]o10120, o10121[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10120, o10123[LinkedList$Entry.previous]o10120, o10121[LinkedList$Entry.previous]o10122, o10123[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.previous]o10120, o10122[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.next]o10123, o10121[LinkedList$Entry.previous]o10123, o10123[LinkedList$Entry.previous]o10123, o10122[LinkedList$Entry.previous]o10123) :|: TRUE 15.99/5.32 f5603_0_createList_JMP(EOS(STATIC_5603(java.lang.Object(ARRAY(i1291)), i1294)), i1349, o10122[LinkedList$Entry.next]o10121, o10123[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.next]o10122, o10122[LinkedList$Entry.next]o10120, o10121[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10120, o10123[LinkedList$Entry.previous]o10120, o10121[LinkedList$Entry.previous]o10122, o10123[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.previous]o10120, o10122[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.next]o10123, o10121[LinkedList$Entry.previous]o10123, o10123[LinkedList$Entry.previous]o10123, o10122[LinkedList$Entry.previous]o10123) -> f5605_0_createList_Load(EOS(STATIC_5605(java.lang.Object(ARRAY(i1291)), i1294)), i1349, o10122[LinkedList$Entry.next]o10121, o10123[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.next]o10122, o10122[LinkedList$Entry.next]o10120, o10121[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10120, o10123[LinkedList$Entry.previous]o10120, o10121[LinkedList$Entry.previous]o10122, o10123[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.previous]o10120, o10122[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.next]o10123, o10121[LinkedList$Entry.previous]o10123, o10123[LinkedList$Entry.previous]o10123, o10122[LinkedList$Entry.previous]o10123) :|: TRUE 15.99/5.32 f5605_0_createList_Load(EOS(STATIC_5605(java.lang.Object(ARRAY(i1291)), i1294)), i1349, o10122[LinkedList$Entry.next]o10121, o10123[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.next]o10122, o10122[LinkedList$Entry.next]o10120, o10121[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10120, o10123[LinkedList$Entry.previous]o10120, o10121[LinkedList$Entry.previous]o10122, o10123[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.previous]o10120, o10122[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.next]o10123, o10121[LinkedList$Entry.previous]o10123, o10123[LinkedList$Entry.previous]o10123, o10122[LinkedList$Entry.previous]o10123) -> f5341_0_createList_Load(EOS(STATIC_5341(java.lang.Object(ARRAY(i1291)), i1294)), i1349, o10122[LinkedList$Entry.next]o10121, o10663[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.next]o10122, o10122[LinkedList$Entry.next]o10120, o10121[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10120, o10663[LinkedList$Entry.previous]o10120, o10121[LinkedList$Entry.previous]o10122, o10663[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.previous]o10120, o10122[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.next]o10663, o10122[LinkedList$Entry.previous]o10663, o10121[LinkedList$Entry.previous]o10663, o10663[LinkedList$Entry.previous]o10663) :|: TRUE 15.99/5.32 f5341_0_createList_Load(EOS(STATIC_5341(java.lang.Object(o10117sub), i1201)), i1203, o10122[LinkedList$Entry.next]o10121, o10123[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.next]o10122, o10122[LinkedList$Entry.next]o10120, o10121[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10120, o10123[LinkedList$Entry.previous]o10120, o10121[LinkedList$Entry.previous]o10122, o10123[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.previous]o10120, o10122[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.next]o10123, o10122[LinkedList$Entry.previous]o10123, o10121[LinkedList$Entry.previous]o10123, o10123[LinkedList$Entry.previous]o10123) -> f5348_0_createList_LE(EOS(STATIC_5348(java.lang.Object(o10117sub), i1201)), i1203, i1203, o10122[LinkedList$Entry.next]o10121, o10123[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.previous]o10121, o10122[LinkedList$Entry.next]o10122, o10122[LinkedList$Entry.next]o10120, o10121[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10120, o10123[LinkedList$Entry.previous]o10120, o10121[LinkedList$Entry.previous]o10122, o10123[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.previous]o10120, o10122[LinkedList$Entry.previous]o10122, o10122[LinkedList$Entry.next]o10123, o10122[LinkedList$Entry.previous]o10123, o10121[LinkedList$Entry.previous]o10123, o10123[LinkedList$Entry.previous]o10123) :|: TRUE 15.99/5.32 f5556_0_addBefore_FieldAccess(EOS(STATIC_5556(java.lang.Object(ARRAY(i1291)), i1294)), i1231, o10685[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10120, o10685[LinkedList$Entry.previous]o10120, o10121[LinkedList$Entry.previous]o10685, o10685[LinkedList$Entry.previous]o10685) -> f5559_0_addBefore_FieldAccess(EOS(STATIC_5559(java.lang.Object(ARRAY(i1291)), i1294)), i1231, o10685[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10120, o10685[LinkedList$Entry.previous]o10120, o10121[LinkedList$Entry.previous]o10685, o10685[LinkedList$Entry.previous]o10685) :|: o10685[LinkedList$Entry.previous]o10121 > 0 && o10121[LinkedList$Entry.previous]o10121 > 0 && o10121[LinkedList$Entry.previous]o10685 > 0 && o10685[LinkedList$Entry.previous]o10685 > 0 15.99/5.32 f5559_0_addBefore_FieldAccess(EOS(STATIC_5559(java.lang.Object(ARRAY(i1291)), i1294)), i1231, o10685[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10120, o10685[LinkedList$Entry.previous]o10120, o10121[LinkedList$Entry.previous]o10685, o10685[LinkedList$Entry.previous]o10685) -> f5562_0_addBefore_Load(EOS(STATIC_5562(java.lang.Object(ARRAY(i1291)), i1294)), i1231, o10685[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10120, o10685[LinkedList$Entry.previous]o10120, o10121[LinkedList$Entry.previous]o10685, o10685[LinkedList$Entry.previous]o10685) :|: TRUE 15.99/5.32 f5562_0_addBefore_Load(EOS(STATIC_5562(java.lang.Object(ARRAY(i1291)), i1294)), i1231, o10685[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10120, o10685[LinkedList$Entry.previous]o10120, o10121[LinkedList$Entry.previous]o10685, o10685[LinkedList$Entry.previous]o10685) -> f5564_0_addBefore_FieldAccess(EOS(STATIC_5564(java.lang.Object(ARRAY(i1291)), i1294)), i1231, o10685[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10120, o10685[LinkedList$Entry.previous]o10120, o10121[LinkedList$Entry.previous]o10685, o10685[LinkedList$Entry.previous]o10685) :|: TRUE 15.99/5.32 f5564_0_addBefore_FieldAccess(EOS(STATIC_5564(java.lang.Object(ARRAY(i1291)), i1294)), i1231, o10685[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10120, o10685[LinkedList$Entry.previous]o10120, o10121[LinkedList$Entry.previous]o10685, o10685[LinkedList$Entry.previous]o10685) -> f5566_0_addBefore_Load(EOS(STATIC_5566(java.lang.Object(ARRAY(i1291)), i1294)), i1231, o10685[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10120, o10685[LinkedList$Entry.previous]o10120, o10121[LinkedList$Entry.previous]o10685, o10685[LinkedList$Entry.previous]o10685) :|: TRUE 15.99/5.32 f5566_0_addBefore_Load(EOS(STATIC_5566(java.lang.Object(ARRAY(i1291)), i1294)), i1231, o10685[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10120, o10685[LinkedList$Entry.previous]o10120, o10121[LinkedList$Entry.previous]o10685, o10685[LinkedList$Entry.previous]o10685) -> f5568_0_addBefore_FieldAccess(EOS(STATIC_5568(java.lang.Object(ARRAY(i1291)), i1294)), i1231, o10685[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10120, o10685[LinkedList$Entry.previous]o10120, o10121[LinkedList$Entry.previous]o10685, o10685[LinkedList$Entry.previous]o10685) :|: TRUE 15.99/5.32 f5568_0_addBefore_FieldAccess(EOS(STATIC_5568(java.lang.Object(ARRAY(i1291)), i1294)), i1231, o10685[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10120, o10685[LinkedList$Entry.previous]o10120, o10121[LinkedList$Entry.previous]o10685, o10685[LinkedList$Entry.previous]o10685) -> f5570_0_addBefore_Load(EOS(STATIC_5570(java.lang.Object(ARRAY(i1291)), i1294)), i1231, o10685[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10120, o10685[LinkedList$Entry.previous]o10120, o10121[LinkedList$Entry.previous]o10685, o10685[LinkedList$Entry.previous]o10685) :|: TRUE 15.99/5.32 f5570_0_addBefore_Load(EOS(STATIC_5570(java.lang.Object(ARRAY(i1291)), i1294)), i1231, o10685[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10120, o10685[LinkedList$Entry.previous]o10120, o10121[LinkedList$Entry.previous]o10685, o10685[LinkedList$Entry.previous]o10685) -> f5572_0_addBefore_Duplicate(EOS(STATIC_5572(java.lang.Object(ARRAY(i1291)), i1294)), i1231, o10685[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10120, o10685[LinkedList$Entry.previous]o10120, o10121[LinkedList$Entry.previous]o10685, o10685[LinkedList$Entry.previous]o10685) :|: TRUE 15.99/5.32 f5572_0_addBefore_Duplicate(EOS(STATIC_5572(java.lang.Object(ARRAY(i1291)), i1294)), i1231, o10685[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10120, o10685[LinkedList$Entry.previous]o10120, o10121[LinkedList$Entry.previous]o10685, o10685[LinkedList$Entry.previous]o10685) -> f5574_0_addBefore_FieldAccess(EOS(STATIC_5574(java.lang.Object(ARRAY(i1291)), i1294)), i1231, o10685[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10120, o10685[LinkedList$Entry.previous]o10120, o10121[LinkedList$Entry.previous]o10685, o10685[LinkedList$Entry.previous]o10685) :|: TRUE 15.99/5.32 f5574_0_addBefore_FieldAccess(EOS(STATIC_5574(java.lang.Object(ARRAY(i1291)), i1294)), i1231, o10685[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10120, o10685[LinkedList$Entry.previous]o10120, o10121[LinkedList$Entry.previous]o10685, o10685[LinkedList$Entry.previous]o10685) -> f5576_0_addBefore_ConstantStackPush(EOS(STATIC_5576(java.lang.Object(ARRAY(i1291)), i1294)), i1231, o10685[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10120, o10685[LinkedList$Entry.previous]o10120, o10121[LinkedList$Entry.previous]o10685, o10685[LinkedList$Entry.previous]o10685) :|: TRUE 15.99/5.32 f5576_0_addBefore_ConstantStackPush(EOS(STATIC_5576(java.lang.Object(ARRAY(i1291)), i1294)), i1231, o10685[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10120, o10685[LinkedList$Entry.previous]o10120, o10121[LinkedList$Entry.previous]o10685, o10685[LinkedList$Entry.previous]o10685) -> f5578_0_addBefore_IntArithmetic(EOS(STATIC_5578(java.lang.Object(ARRAY(i1291)), i1294)), i1231, o10685[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10120, o10685[LinkedList$Entry.previous]o10120, o10121[LinkedList$Entry.previous]o10685, o10685[LinkedList$Entry.previous]o10685) :|: TRUE 15.99/5.32 f5578_0_addBefore_IntArithmetic(EOS(STATIC_5578(java.lang.Object(ARRAY(i1291)), i1294)), i1231, o10685[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10120, o10685[LinkedList$Entry.previous]o10120, o10121[LinkedList$Entry.previous]o10685, o10685[LinkedList$Entry.previous]o10685) -> f5580_0_addBefore_FieldAccess(EOS(STATIC_5580(java.lang.Object(ARRAY(i1291)), i1294)), i1231, o10685[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10120, o10685[LinkedList$Entry.previous]o10120, o10121[LinkedList$Entry.previous]o10685, o10685[LinkedList$Entry.previous]o10685) :|: TRUE 15.99/5.32 f5580_0_addBefore_FieldAccess(EOS(STATIC_5580(java.lang.Object(ARRAY(i1291)), i1294)), i1231, o10685[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10120, o10685[LinkedList$Entry.previous]o10120, o10121[LinkedList$Entry.previous]o10685, o10685[LinkedList$Entry.previous]o10685) -> f5582_0_addBefore_Load(EOS(STATIC_5582(java.lang.Object(ARRAY(i1291)), i1294)), i1231, o10685[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10120, o10685[LinkedList$Entry.previous]o10120, o10121[LinkedList$Entry.previous]o10685, o10685[LinkedList$Entry.previous]o10685) :|: TRUE 15.99/5.32 f5582_0_addBefore_Load(EOS(STATIC_5582(java.lang.Object(ARRAY(i1291)), i1294)), i1231, o10685[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10120, o10685[LinkedList$Entry.previous]o10120, o10121[LinkedList$Entry.previous]o10685, o10685[LinkedList$Entry.previous]o10685) -> f5584_0_addBefore_Duplicate(EOS(STATIC_5584(java.lang.Object(ARRAY(i1291)), i1294)), i1231, o10685[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10120, o10685[LinkedList$Entry.previous]o10120, o10121[LinkedList$Entry.previous]o10685, o10685[LinkedList$Entry.previous]o10685) :|: TRUE 15.99/5.32 f5584_0_addBefore_Duplicate(EOS(STATIC_5584(java.lang.Object(ARRAY(i1291)), i1294)), i1231, o10685[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10120, o10685[LinkedList$Entry.previous]o10120, o10121[LinkedList$Entry.previous]o10685, o10685[LinkedList$Entry.previous]o10685) -> f5586_0_addBefore_FieldAccess(EOS(STATIC_5586(java.lang.Object(ARRAY(i1291)), i1294)), i1231, o10685[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10120, o10685[LinkedList$Entry.previous]o10120, o10121[LinkedList$Entry.previous]o10685, o10685[LinkedList$Entry.previous]o10685) :|: TRUE 15.99/5.32 f5586_0_addBefore_FieldAccess(EOS(STATIC_5586(java.lang.Object(ARRAY(i1291)), i1294)), i1231, o10685[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10120, o10685[LinkedList$Entry.previous]o10120, o10121[LinkedList$Entry.previous]o10685, o10685[LinkedList$Entry.previous]o10685) -> f5588_0_addBefore_ConstantStackPush(EOS(STATIC_5588(java.lang.Object(ARRAY(i1291)), i1294)), i1231, o10685[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10120, o10685[LinkedList$Entry.previous]o10120, o10121[LinkedList$Entry.previous]o10685, o10685[LinkedList$Entry.previous]o10685) :|: TRUE 15.99/5.32 f5588_0_addBefore_ConstantStackPush(EOS(STATIC_5588(java.lang.Object(ARRAY(i1291)), i1294)), i1231, o10685[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10120, o10685[LinkedList$Entry.previous]o10120, o10121[LinkedList$Entry.previous]o10685, o10685[LinkedList$Entry.previous]o10685) -> f5590_0_addBefore_IntArithmetic(EOS(STATIC_5590(java.lang.Object(ARRAY(i1291)), i1294)), i1231, o10685[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10120, o10685[LinkedList$Entry.previous]o10120, o10121[LinkedList$Entry.previous]o10685, o10685[LinkedList$Entry.previous]o10685) :|: TRUE 15.99/5.32 f5590_0_addBefore_IntArithmetic(EOS(STATIC_5590(java.lang.Object(ARRAY(i1291)), i1294)), i1231, o10685[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10120, o10685[LinkedList$Entry.previous]o10120, o10121[LinkedList$Entry.previous]o10685, o10685[LinkedList$Entry.previous]o10685) -> f5592_0_addBefore_FieldAccess(EOS(STATIC_5592(java.lang.Object(ARRAY(i1291)), i1294)), i1231, o10685[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10120, o10685[LinkedList$Entry.previous]o10120, o10121[LinkedList$Entry.previous]o10685, o10685[LinkedList$Entry.previous]o10685) :|: TRUE 15.99/5.32 f5592_0_addBefore_FieldAccess(EOS(STATIC_5592(java.lang.Object(ARRAY(i1291)), i1294)), i1231, o10685[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10120, o10685[LinkedList$Entry.previous]o10120, o10121[LinkedList$Entry.previous]o10685, o10685[LinkedList$Entry.previous]o10685) -> f5594_0_addBefore_Load(EOS(STATIC_5594(java.lang.Object(ARRAY(i1291)), i1294)), i1231, o10685[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10120, o10685[LinkedList$Entry.previous]o10120, o10121[LinkedList$Entry.previous]o10685, o10685[LinkedList$Entry.previous]o10685) :|: TRUE 15.99/5.32 f5594_0_addBefore_Load(EOS(STATIC_5594(java.lang.Object(ARRAY(i1291)), i1294)), i1231, o10685[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10120, o10685[LinkedList$Entry.previous]o10120, o10121[LinkedList$Entry.previous]o10685, o10685[LinkedList$Entry.previous]o10685) -> f5596_0_addBefore_Return(EOS(STATIC_5596(java.lang.Object(ARRAY(i1291)), i1294)), i1231, o10685[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10120, o10685[LinkedList$Entry.previous]o10120, o10121[LinkedList$Entry.previous]o10685, o10685[LinkedList$Entry.previous]o10685) :|: TRUE 15.99/5.32 f5596_0_addBefore_Return(EOS(STATIC_5596(java.lang.Object(ARRAY(i1291)), i1294)), i1231, o10685[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10120, o10685[LinkedList$Entry.previous]o10120, o10121[LinkedList$Entry.previous]o10685, o10685[LinkedList$Entry.previous]o10685) -> f5598_0_addLast_StackPop(EOS(STATIC_5598(java.lang.Object(ARRAY(i1291)), i1294)), i1231, o10685[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10120, o10685[LinkedList$Entry.previous]o10120, o10121[LinkedList$Entry.previous]o10685, o10685[LinkedList$Entry.previous]o10685) :|: TRUE 15.99/5.32 f5598_0_addLast_StackPop(EOS(STATIC_5598(java.lang.Object(ARRAY(i1291)), i1294)), i1231, o10685[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10120, o10685[LinkedList$Entry.previous]o10120, o10121[LinkedList$Entry.previous]o10685, o10685[LinkedList$Entry.previous]o10685) -> f5600_0_addLast_Return(EOS(STATIC_5600(java.lang.Object(ARRAY(i1291)), i1294)), i1231, o10685[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10120, o10685[LinkedList$Entry.previous]o10120, o10121[LinkedList$Entry.previous]o10685, o10685[LinkedList$Entry.previous]o10685) :|: TRUE 15.99/5.32 f5600_0_addLast_Return(EOS(STATIC_5600(java.lang.Object(ARRAY(i1291)), i1294)), i1231, o10685[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10120, o10685[LinkedList$Entry.previous]o10120, o10121[LinkedList$Entry.previous]o10685, o10685[LinkedList$Entry.previous]o10685) -> f5602_0_createList_Inc(EOS(STATIC_5602(java.lang.Object(ARRAY(i1291)), i1294)), i1231, o10685[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10120, o10685[LinkedList$Entry.previous]o10120, o10121[LinkedList$Entry.previous]o10685, o10685[LinkedList$Entry.previous]o10685) :|: TRUE 15.99/5.32 f5602_0_createList_Inc(EOS(STATIC_5602(java.lang.Object(ARRAY(i1291)), i1294)), i1231, o10685[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10120, o10685[LinkedList$Entry.previous]o10120, o10121[LinkedList$Entry.previous]o10685, o10685[LinkedList$Entry.previous]o10685) -> f5604_0_createList_JMP(EOS(STATIC_5604(java.lang.Object(ARRAY(i1291)), i1294)), i1231 + -1, o10685[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10120, o10685[LinkedList$Entry.previous]o10120, o10121[LinkedList$Entry.previous]o10685, o10685[LinkedList$Entry.previous]o10685) :|: TRUE 15.99/5.32 f5604_0_createList_JMP(EOS(STATIC_5604(java.lang.Object(ARRAY(i1291)), i1294)), i1350, o10685[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10120, o10685[LinkedList$Entry.previous]o10120, o10121[LinkedList$Entry.previous]o10685, o10685[LinkedList$Entry.previous]o10685) -> f5606_0_createList_Load(EOS(STATIC_5606(java.lang.Object(ARRAY(i1291)), i1294)), i1350, o10685[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10120, o10685[LinkedList$Entry.previous]o10120, o10121[LinkedList$Entry.previous]o10685, o10685[LinkedList$Entry.previous]o10685) :|: TRUE 15.99/5.32 f5606_0_createList_Load(EOS(STATIC_5606(java.lang.Object(ARRAY(i1291)), i1294)), i1350, o10685[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10120, o10685[LinkedList$Entry.previous]o10120, o10121[LinkedList$Entry.previous]o10685, o10685[LinkedList$Entry.previous]o10685) -> f5341_0_createList_Load(EOS(STATIC_5341(java.lang.Object(ARRAY(i1291)), i1294)), i1350, o10685[LinkedList$Entry.next]o10121, o10663[LinkedList$Entry.previous]o10121, o10685[LinkedList$Entry.previous]o10121, o10685[LinkedList$Entry.next]o10685, o10685[LinkedList$Entry.next]o10120, o10121[LinkedList$Entry.previous]o10121, o10121[LinkedList$Entry.previous]o10120, o10663[LinkedList$Entry.previous]o10120, o10121[LinkedList$Entry.previous]o10685, o10663[LinkedList$Entry.previous]o10685, o10685[LinkedList$Entry.previous]o10120, o10685[LinkedList$Entry.previous]o10685, o10685[LinkedList$Entry.next]o10663, o10685[LinkedList$Entry.previous]o10663, o10121[LinkedList$Entry.previous]o10663, o10663[LinkedList$Entry.previous]o10663) :|: o10685[LinkedList$Entry.next]o10685 = 4 && o10663[LinkedList$Entry.previous]o10685 = 1 && o10685[LinkedList$Entry.next]o10663 = 1 15.99/5.32 Combined rules. Obtained 2 IRulesP rules: 15.99/5.32 f5348_0_createList_LE(EOS(STATIC_5348(java.lang.Object(ARRAY(i1291:0)), i1201:0)), i1231:0, i1231:0, o10122[LinkedList$Entry.next]o10121:0, o10123[LinkedList$Entry.previous]o10121:0, o10123[LinkedList$Entry.previous]o10121:0, o10122[LinkedList$Entry.next]o10122:0, o10122[LinkedList$Entry.next]o10120:0, o10121[LinkedList$Entry.previous]o10121:0, o10121[LinkedList$Entry.previous]o10120:0, o10123[LinkedList$Entry.previous]o10120:0, o10121[LinkedList$Entry.previous]o10122:0, o10123[LinkedList$Entry.previous]o10122:0, o10123[LinkedList$Entry.previous]o10120:0, o10123[LinkedList$Entry.previous]o10122:0, o10122[LinkedList$Entry.next]o10122:0, o10123[LinkedList$Entry.previous]o10122:0, o10121[LinkedList$Entry.previous]o10122:0, o10123[LinkedList$Entry.previous]o10122:0) -> f5348_0_createList_LE(EOS(STATIC_5348(java.lang.Object(ARRAY(i1291:0)), i1201:0 + 1)), i1231:0 - 1, i1231:0 - 1, o10685[LinkedList$Entry.next]o10121:0, o10663[LinkedList$Entry.previous]o10121:0, o10123[LinkedList$Entry.previous]o10121:0, 4, o10685[LinkedList$Entry.next]o10120:0, o10121[LinkedList$Entry.previous]o10121:0, o10121[LinkedList$Entry.previous]o10120:0, o10663[LinkedList$Entry.previous]o10120:0, o10121[LinkedList$Entry.previous]o10122:0, 1, o10123[LinkedList$Entry.previous]o10120:0, o10123[LinkedList$Entry.previous]o10122:0, 1, o10685[LinkedList$Entry.previous]o10663:0, o10121[LinkedList$Entry.previous]o10663:0, o10663[LinkedList$Entry.previous]o10663:0) :|: i1231:0 > 0 && i1291:0 > -1 && i1291:0 > i1201:0 && i1201:0 > -1 && o10122[LinkedList$Entry.next]o10120:0 > 0 && o10122[LinkedList$Entry.next]o10122:0 > 0 && o10123[LinkedList$Entry.previous]o10120:0 > 0 && o10123[LinkedList$Entry.previous]o10122:0 > 0 && o10121[LinkedList$Entry.previous]o10120:0 > 0 && o10121[LinkedList$Entry.previous]o10121:0 > 0 && o10123[LinkedList$Entry.previous]o10121:0 > 0 && o10121[LinkedList$Entry.previous]o10122:0 > 0 15.99/5.32 f5348_0_createList_LE(EOS(STATIC_5348(java.lang.Object(ARRAY(i1291:0)), i1201:0)), i1231:0, i1231:0, o10122[LinkedList$Entry.next]o10121:0, o10123[LinkedList$Entry.previous]o10121:0, o10122[LinkedList$Entry.previous]o10121:0, o10122[LinkedList$Entry.next]o10122:0, o10122[LinkedList$Entry.next]o10120:0, o10121[LinkedList$Entry.previous]o10121:0, o10121[LinkedList$Entry.previous]o10120:0, o10123[LinkedList$Entry.previous]o10120:0, o10121[LinkedList$Entry.previous]o10122:0, o10123[LinkedList$Entry.previous]o10122:0, o10122[LinkedList$Entry.previous]o10120:0, o10122[LinkedList$Entry.previous]o10122:0, o10122[LinkedList$Entry.next]o10123:0, o10122[LinkedList$Entry.previous]o10123:0, o10121[LinkedList$Entry.previous]o10123:0, o10123[LinkedList$Entry.previous]o10123:0) -> f5348_0_createList_LE(EOS(STATIC_5348(java.lang.Object(ARRAY(i1291:0)), i1201:0 + 1)), i1231:0 - 1, i1231:0 - 1, o10122[LinkedList$Entry.next]o10121:0, o10663[LinkedList$Entry.previous]o10121:0, o10122[LinkedList$Entry.previous]o10121:0, o10122[LinkedList$Entry.next]o10122:0, o10122[LinkedList$Entry.next]o10120:0, o10121[LinkedList$Entry.previous]o10121:0, o10121[LinkedList$Entry.previous]o10120:0, o10663[LinkedList$Entry.previous]o10120:0, o10121[LinkedList$Entry.previous]o10122:0, o10663[LinkedList$Entry.previous]o10122:0, o10122[LinkedList$Entry.previous]o10120:0, o10122[LinkedList$Entry.previous]o10122:0, o10122[LinkedList$Entry.next]o10663:0, o10122[LinkedList$Entry.previous]o10663:0, o10121[LinkedList$Entry.previous]o10663:0, o10663[LinkedList$Entry.previous]o10663:0) :|: i1231:0 > 0 && i1291:0 > -1 && i1291:0 > i1201:0 && i1201:0 > -1 && o10122[LinkedList$Entry.next]o10120:0 > 0 && o10122[LinkedList$Entry.next]o10122:0 > 0 && o10122[LinkedList$Entry.previous]o10120:0 > 0 && o10122[LinkedList$Entry.previous]o10122:0 > 0 && o10121[LinkedList$Entry.previous]o10120:0 > 0 && o10121[LinkedList$Entry.previous]o10121:0 > 0 && o10123[LinkedList$Entry.previous]o10123:0 > 0 && o10123[LinkedList$Entry.previous]o10120:0 > 0 && o10123[LinkedList$Entry.previous]o10122:0 > 0 && o10122[LinkedList$Entry.next]o10123:0 > 0 && o10123[LinkedList$Entry.previous]o10121:0 > 0 && o10122[LinkedList$Entry.previous]o10123:0 > 0 && o10121[LinkedList$Entry.previous]o10123:0 > 0 15.99/5.32 Filtered duplicate arguments: 15.99/5.32 f5348_0_createList_LE(x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12, x13, x14, x15, x16, x17, x18, x19) -> f5348_0_createList_LE(x1, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12, x13, x14, x15, x16, x17, x18, x19) 15.99/5.32 Filtered unneeded arguments: 15.99/5.32 f5348_0_createList_LE(x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12, x13, x14, x15, x16, x17, x18) -> f5348_0_createList_LE(x1, x2, x4, x5, x6, x7, x8, x9, x10, x11, x12, x13, x14, x15, x16, x17, x18) 15.99/5.32 Finished conversion. Obtained 2 rules.P rules: 15.99/5.32 f5348_0_createList_LE(i1231:0, o10123[LinkedList$Entry.previous]o10121:0, o10123[LinkedList$Entry.previous]o10121:0, o10122[LinkedList$Entry.next]o10122:0, o10122[LinkedList$Entry.next]o10120:0, o10121[LinkedList$Entry.previous]o10121:0, o10121[LinkedList$Entry.previous]o10120:0, o10123[LinkedList$Entry.previous]o10120:0, o10121[LinkedList$Entry.previous]o10122:0, o10123[LinkedList$Entry.previous]o10122:0, o10123[LinkedList$Entry.previous]o10120:0, o10123[LinkedList$Entry.previous]o10122:0, o10122[LinkedList$Entry.next]o10122:0, o10123[LinkedList$Entry.previous]o10122:0, o10121[LinkedList$Entry.previous]o10122:0, o10123[LinkedList$Entry.previous]o10122:0, i1291:0, i1201:0) -> f5348_0_createList_LE(i1231:0 - 1, o10663[LinkedList$Entry.previous]o10121:0, o10123[LinkedList$Entry.previous]o10121:0, 4, o10685[LinkedList$Entry.next]o10120:0, o10121[LinkedList$Entry.previous]o10121:0, o10121[LinkedList$Entry.previous]o10120:0, o10663[LinkedList$Entry.previous]o10120:0, o10121[LinkedList$Entry.previous]o10122:0, 1, o10123[LinkedList$Entry.previous]o10120:0, o10123[LinkedList$Entry.previous]o10122:0, 1, o10685[LinkedList$Entry.previous]o10663:0, o10121[LinkedList$Entry.previous]o10663:0, o10663[LinkedList$Entry.previous]o10663:0, i1291:0, i1201:0 + 1) :|: i1291:0 > -1 && i1231:0 > 0 && i1291:0 > i1201:0 && i1201:0 > -1 && o10122[LinkedList$Entry.next]o10120:0 > 0 && o10122[LinkedList$Entry.next]o10122:0 > 0 && o10123[LinkedList$Entry.previous]o10120:0 > 0 && o10123[LinkedList$Entry.previous]o10122:0 > 0 && o10121[LinkedList$Entry.previous]o10120:0 > 0 && o10121[LinkedList$Entry.previous]o10121:0 > 0 && o10121[LinkedList$Entry.previous]o10122:0 > 0 && o10123[LinkedList$Entry.previous]o10121:0 > 0 15.99/5.32 f5348_0_createList_LE(i1231:0, o10123[LinkedList$Entry.previous]o10121:0, o10122[LinkedList$Entry.previous]o10121:0, o10122[LinkedList$Entry.next]o10122:0, o10122[LinkedList$Entry.next]o10120:0, o10121[LinkedList$Entry.previous]o10121:0, o10121[LinkedList$Entry.previous]o10120:0, o10123[LinkedList$Entry.previous]o10120:0, o10121[LinkedList$Entry.previous]o10122:0, o10123[LinkedList$Entry.previous]o10122:0, o10122[LinkedList$Entry.previous]o10120:0, o10122[LinkedList$Entry.previous]o10122:0, o10122[LinkedList$Entry.next]o10123:0, o10122[LinkedList$Entry.previous]o10123:0, o10121[LinkedList$Entry.previous]o10123:0, o10123[LinkedList$Entry.previous]o10123:0, i1291:0, i1201:0) -> f5348_0_createList_LE(i1231:0 - 1, o10663[LinkedList$Entry.previous]o10121:0, o10122[LinkedList$Entry.previous]o10121:0, o10122[LinkedList$Entry.next]o10122:0, o10122[LinkedList$Entry.next]o10120:0, o10121[LinkedList$Entry.previous]o10121:0, o10121[LinkedList$Entry.previous]o10120:0, o10663[LinkedList$Entry.previous]o10120:0, o10121[LinkedList$Entry.previous]o10122:0, o10663[LinkedList$Entry.previous]o10122:0, o10122[LinkedList$Entry.previous]o10120:0, o10122[LinkedList$Entry.previous]o10122:0, o10122[LinkedList$Entry.next]o10663:0, o10122[LinkedList$Entry.previous]o10663:0, o10121[LinkedList$Entry.previous]o10663:0, o10663[LinkedList$Entry.previous]o10663:0, i1291:0, i1201:0 + 1) :|: i1291:0 > -1 && i1231:0 > 0 && i1291:0 > i1201:0 && i1201:0 > -1 && o10122[LinkedList$Entry.next]o10120:0 > 0 && o10122[LinkedList$Entry.next]o10122:0 > 0 && o10122[LinkedList$Entry.previous]o10120:0 > 0 && o10122[LinkedList$Entry.previous]o10122:0 > 0 && o10121[LinkedList$Entry.previous]o10120:0 > 0 && o10121[LinkedList$Entry.previous]o10121:0 > 0 && o10123[LinkedList$Entry.previous]o10123:0 > 0 && o10123[LinkedList$Entry.previous]o10120:0 > 0 && o10123[LinkedList$Entry.previous]o10122:0 > 0 && o10122[LinkedList$Entry.next]o10123:0 > 0 && o10123[LinkedList$Entry.previous]o10121:0 > 0 && o10121[LinkedList$Entry.previous]o10123:0 > 0 && o10122[LinkedList$Entry.previous]o10123:0 > 0 15.99/5.32 15.99/5.32 ---------------------------------------- 15.99/5.32 15.99/5.32 (8) 15.99/5.32 Obligation: 15.99/5.32 Rules: 15.99/5.32 f5348_0_createList_LE(i1231:0, o10123[LinkedList$Entry.previous]o10121:0, o10123[LinkedList$Entry.previous]o10121:0, o10122[LinkedList$Entry.next]o10122:0, o10122[LinkedList$Entry.next]o10120:0, o10121[LinkedList$Entry.previous]o10121:0, o10121[LinkedList$Entry.previous]o10120:0, o10123[LinkedList$Entry.previous]o10120:0, o10121[LinkedList$Entry.previous]o10122:0, o10123[LinkedList$Entry.previous]o10122:0, o10123[LinkedList$Entry.previous]o10120:0, o10123[LinkedList$Entry.previous]o10122:0, o10122[LinkedList$Entry.next]o10122:0, o10123[LinkedList$Entry.previous]o10122:0, o10121[LinkedList$Entry.previous]o10122:0, o10123[LinkedList$Entry.previous]o10122:0, i1291:0, i1201:0) -> f5348_0_createList_LE(i1231:0 - 1, o10663[LinkedList$Entry.previous]o10121:0, o10123[LinkedList$Entry.previous]o10121:0, 4, o10685[LinkedList$Entry.next]o10120:0, o10121[LinkedList$Entry.previous]o10121:0, o10121[LinkedList$Entry.previous]o10120:0, o10663[LinkedList$Entry.previous]o10120:0, o10121[LinkedList$Entry.previous]o10122:0, 1, o10123[LinkedList$Entry.previous]o10120:0, o10123[LinkedList$Entry.previous]o10122:0, 1, o10685[LinkedList$Entry.previous]o10663:0, o10121[LinkedList$Entry.previous]o10663:0, o10663[LinkedList$Entry.previous]o10663:0, i1291:0, i1201:0 + 1) :|: i1291:0 > -1 && i1231:0 > 0 && i1291:0 > i1201:0 && i1201:0 > -1 && o10122[LinkedList$Entry.next]o10120:0 > 0 && o10122[LinkedList$Entry.next]o10122:0 > 0 && o10123[LinkedList$Entry.previous]o10120:0 > 0 && o10123[LinkedList$Entry.previous]o10122:0 > 0 && o10121[LinkedList$Entry.previous]o10120:0 > 0 && o10121[LinkedList$Entry.previous]o10121:0 > 0 && o10121[LinkedList$Entry.previous]o10122:0 > 0 && o10123[LinkedList$Entry.previous]o10121:0 > 0 15.99/5.32 f5348_0_createList_LE(x, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12, x13, x14, x15, x16, x17) -> f5348_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 15.99/5.32 15.99/5.32 ---------------------------------------- 15.99/5.32 15.99/5.32 (9) IRSFormatTransformerProof (EQUIVALENT) 15.99/5.32 Reformatted IRS to match normalized format (transformed away non-linear left-hand sides, !=, / and %). 15.99/5.32 ---------------------------------------- 15.99/5.32 15.99/5.32 (10) 15.99/5.32 Obligation: 15.99/5.32 Rules: 15.99/5.32 f5348_0_createList_LE(i1231:0, o10123[LinkedList$Entry.previous]o10121:0, o10123[LinkedList$Entry.previous]o10121:0, o10122[LinkedList$Entry.next]o10122:0, o10122[LinkedList$Entry.next]o10120:0, o10121[LinkedList$Entry.previous]o10121:0, o10121[LinkedList$Entry.previous]o10120:0, o10123[LinkedList$Entry.previous]o10120:0, o10121[LinkedList$Entry.previous]o10122:0, o10123[LinkedList$Entry.previous]o10122:0, o10123[LinkedList$Entry.previous]o10120:0, o10123[LinkedList$Entry.previous]o10122:0, o10122[LinkedList$Entry.next]o10122:0, o10123[LinkedList$Entry.previous]o10122:0, o10121[LinkedList$Entry.previous]o10122:0, o10123[LinkedList$Entry.previous]o10122:0, i1291:0, i1201:0) -> f5348_0_createList_LE(arith, o10663[LinkedList$Entry.previous]o10121:0, o10123[LinkedList$Entry.previous]o10121:0, 4, o10685[LinkedList$Entry.next]o10120:0, o10121[LinkedList$Entry.previous]o10121:0, o10121[LinkedList$Entry.previous]o10120:0, o10663[LinkedList$Entry.previous]o10120:0, o10121[LinkedList$Entry.previous]o10122:0, 1, o10123[LinkedList$Entry.previous]o10120:0, o10123[LinkedList$Entry.previous]o10122:0, 1, o10685[LinkedList$Entry.previous]o10663:0, o10121[LinkedList$Entry.previous]o10663:0, o10663[LinkedList$Entry.previous]o10663:0, i1291:0, arith1) :|: i1291:0 > -1 && i1231:0 > 0 && i1291:0 > i1201:0 && i1201:0 > -1 && o10122[LinkedList$Entry.next]o10120:0 > 0 && o10122[LinkedList$Entry.next]o10122:0 > 0 && o10123[LinkedList$Entry.previous]o10120:0 > 0 && o10123[LinkedList$Entry.previous]o10122:0 > 0 && o10121[LinkedList$Entry.previous]o10120:0 > 0 && o10121[LinkedList$Entry.previous]o10121:0 > 0 && o10121[LinkedList$Entry.previous]o10122:0 > 0 && o10123[LinkedList$Entry.previous]o10121:0 > 0 && arith = i1231:0 - 1 && arith1 = i1201:0 + 1 15.99/5.32 f5348_0_createList_LE(x25, x26, x27, x28, x29, x30, x31, x32, x33, x34, x35, x36, x37, x38, x39, x40, x41, x42) -> f5348_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 15.99/5.32 15.99/5.32 ---------------------------------------- 15.99/5.32 15.99/5.32 (11) IRSwTTerminationDigraphProof (EQUIVALENT) 15.99/5.32 Constructed termination digraph! 15.99/5.32 Nodes: 15.99/5.32 (1) f5348_0_createList_LE(i1231:0, o10123[LinkedList$Entry.previous]o10121:0, o10123[LinkedList$Entry.previous]o10121:0, o10122[LinkedList$Entry.next]o10122:0, o10122[LinkedList$Entry.next]o10120:0, o10121[LinkedList$Entry.previous]o10121:0, o10121[LinkedList$Entry.previous]o10120:0, o10123[LinkedList$Entry.previous]o10120:0, o10121[LinkedList$Entry.previous]o10122:0, o10123[LinkedList$Entry.previous]o10122:0, o10123[LinkedList$Entry.previous]o10120:0, o10123[LinkedList$Entry.previous]o10122:0, o10122[LinkedList$Entry.next]o10122:0, o10123[LinkedList$Entry.previous]o10122:0, o10121[LinkedList$Entry.previous]o10122:0, o10123[LinkedList$Entry.previous]o10122:0, i1291:0, i1201:0) -> f5348_0_createList_LE(arith, o10663[LinkedList$Entry.previous]o10121:0, o10123[LinkedList$Entry.previous]o10121:0, 4, o10685[LinkedList$Entry.next]o10120:0, o10121[LinkedList$Entry.previous]o10121:0, o10121[LinkedList$Entry.previous]o10120:0, o10663[LinkedList$Entry.previous]o10120:0, o10121[LinkedList$Entry.previous]o10122:0, 1, o10123[LinkedList$Entry.previous]o10120:0, o10123[LinkedList$Entry.previous]o10122:0, 1, o10685[LinkedList$Entry.previous]o10663:0, o10121[LinkedList$Entry.previous]o10663:0, o10663[LinkedList$Entry.previous]o10663:0, i1291:0, arith1) :|: i1291:0 > -1 && i1231:0 > 0 && i1291:0 > i1201:0 && i1201:0 > -1 && o10122[LinkedList$Entry.next]o10120:0 > 0 && o10122[LinkedList$Entry.next]o10122:0 > 0 && o10123[LinkedList$Entry.previous]o10120:0 > 0 && o10123[LinkedList$Entry.previous]o10122:0 > 0 && o10121[LinkedList$Entry.previous]o10120:0 > 0 && o10121[LinkedList$Entry.previous]o10121:0 > 0 && o10121[LinkedList$Entry.previous]o10122:0 > 0 && o10123[LinkedList$Entry.previous]o10121:0 > 0 && arith = i1231:0 - 1 && arith1 = i1201:0 + 1 15.99/5.32 (2) f5348_0_createList_LE(x25, x26, x27, x28, x29, x30, x31, x32, x33, x34, x35, x36, x37, x38, x39, x40, x41, x42) -> f5348_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 15.99/5.32 15.99/5.32 Arcs: 15.99/5.32 (1) -> (2) 15.99/5.32 (2) -> (1), (2) 15.99/5.32 15.99/5.32 This digraph is fully evaluated! 15.99/5.32 ---------------------------------------- 15.99/5.32 15.99/5.32 (12) 15.99/5.32 Obligation: 15.99/5.32 15.99/5.32 Termination digraph: 15.99/5.32 Nodes: 15.99/5.32 (1) f5348_0_createList_LE(i1231:0, o10123[LinkedList$Entry.previous]o10121:0, o10123[LinkedList$Entry.previous]o10121:0, o10122[LinkedList$Entry.next]o10122:0, o10122[LinkedList$Entry.next]o10120:0, o10121[LinkedList$Entry.previous]o10121:0, o10121[LinkedList$Entry.previous]o10120:0, o10123[LinkedList$Entry.previous]o10120:0, o10121[LinkedList$Entry.previous]o10122:0, o10123[LinkedList$Entry.previous]o10122:0, o10123[LinkedList$Entry.previous]o10120:0, o10123[LinkedList$Entry.previous]o10122:0, o10122[LinkedList$Entry.next]o10122:0, o10123[LinkedList$Entry.previous]o10122:0, o10121[LinkedList$Entry.previous]o10122:0, o10123[LinkedList$Entry.previous]o10122:0, i1291:0, i1201:0) -> f5348_0_createList_LE(arith, o10663[LinkedList$Entry.previous]o10121:0, o10123[LinkedList$Entry.previous]o10121:0, 4, o10685[LinkedList$Entry.next]o10120:0, o10121[LinkedList$Entry.previous]o10121:0, o10121[LinkedList$Entry.previous]o10120:0, o10663[LinkedList$Entry.previous]o10120:0, o10121[LinkedList$Entry.previous]o10122:0, 1, o10123[LinkedList$Entry.previous]o10120:0, o10123[LinkedList$Entry.previous]o10122:0, 1, o10685[LinkedList$Entry.previous]o10663:0, o10121[LinkedList$Entry.previous]o10663:0, o10663[LinkedList$Entry.previous]o10663:0, i1291:0, arith1) :|: i1291:0 > -1 && i1231:0 > 0 && i1291:0 > i1201:0 && i1201:0 > -1 && o10122[LinkedList$Entry.next]o10120:0 > 0 && o10122[LinkedList$Entry.next]o10122:0 > 0 && o10123[LinkedList$Entry.previous]o10120:0 > 0 && o10123[LinkedList$Entry.previous]o10122:0 > 0 && o10121[LinkedList$Entry.previous]o10120:0 > 0 && o10121[LinkedList$Entry.previous]o10121:0 > 0 && o10121[LinkedList$Entry.previous]o10122:0 > 0 && o10123[LinkedList$Entry.previous]o10121:0 > 0 && arith = i1231:0 - 1 && arith1 = i1201:0 + 1 15.99/5.32 (2) f5348_0_createList_LE(x25, x26, x27, x28, x29, x30, x31, x32, x33, x34, x35, x36, x37, x38, x39, x40, x41, x42) -> f5348_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 15.99/5.32 15.99/5.32 Arcs: 15.99/5.32 (1) -> (2) 15.99/5.32 (2) -> (1), (2) 15.99/5.32 15.99/5.32 This digraph is fully evaluated! 15.99/5.32 15.99/5.32 ---------------------------------------- 15.99/5.32 15.99/5.32 (13) IntTRSCompressionProof (EQUIVALENT) 15.99/5.32 Compressed rules. 15.99/5.32 ---------------------------------------- 15.99/5.32 15.99/5.32 (14) 15.99/5.32 Obligation: 15.99/5.32 Rules: 15.99/5.32 f5348_0_createList_LE(i1231:0:0, o10123[LinkedList$Entry.previous]o10121:0:0, o10123[LinkedList$Entry.previous]o10121:0:0, o10122[LinkedList$Entry.next]o10122:0:0, o10122[LinkedList$Entry.next]o10120:0:0, o10121[LinkedList$Entry.previous]o10121:0:0, o10121[LinkedList$Entry.previous]o10120:0:0, o10123[LinkedList$Entry.previous]o10120:0:0, o10121[LinkedList$Entry.previous]o10122:0:0, o10123[LinkedList$Entry.previous]o10122:0:0, o10123[LinkedList$Entry.previous]o10120:0:0, o10123[LinkedList$Entry.previous]o10122:0:0, o10122[LinkedList$Entry.next]o10122:0:0, o10123[LinkedList$Entry.previous]o10122:0:0, o10121[LinkedList$Entry.previous]o10122:0:0, o10123[LinkedList$Entry.previous]o10122:0:0, i1291:0:0, i1201:0:0) -> f5348_0_createList_LE(i1231:0:0 - 1, o10663[LinkedList$Entry.previous]o10121:0:0, o10123[LinkedList$Entry.previous]o10121:0:0, 4, o10685[LinkedList$Entry.next]o10120:0:0, o10121[LinkedList$Entry.previous]o10121:0:0, o10121[LinkedList$Entry.previous]o10120:0:0, o10663[LinkedList$Entry.previous]o10120:0:0, o10121[LinkedList$Entry.previous]o10122:0:0, 1, o10123[LinkedList$Entry.previous]o10120:0:0, o10123[LinkedList$Entry.previous]o10122:0:0, 1, o10685[LinkedList$Entry.previous]o10663:0:0, o10121[LinkedList$Entry.previous]o10663:0:0, o10663[LinkedList$Entry.previous]o10663:0:0, i1291:0:0, i1201:0:0 + 1) :|: o10121[LinkedList$Entry.previous]o10122:0:0 > 0 && o10123[LinkedList$Entry.previous]o10121:0:0 > 0 && o10121[LinkedList$Entry.previous]o10121:0:0 > 0 && o10121[LinkedList$Entry.previous]o10120:0:0 > 0 && o10123[LinkedList$Entry.previous]o10122:0:0 > 0 && o10123[LinkedList$Entry.previous]o10120:0:0 > 0 && o10122[LinkedList$Entry.next]o10122:0:0 > 0 && o10122[LinkedList$Entry.next]o10120:0:0 > 0 && i1201:0:0 > -1 && i1291:0:0 > i1201:0:0 && i1231:0:0 > 0 && i1291:0:0 > -1 15.99/5.32 f5348_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) -> f5348_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 15.99/5.32 15.99/5.32 ---------------------------------------- 15.99/5.32 15.99/5.32 (15) TempFilterProof (SOUND) 15.99/5.32 Used the following sort dictionary for filtering: 15.99/5.32 f5348_0_createList_LE(INTEGER, VARIABLE, VARIABLE, VARIABLE, VARIABLE, INTEGER, INTEGER, VARIABLE, VARIABLE, VARIABLE, INTEGER, INTEGER, VARIABLE, VARIABLE, VARIABLE, VARIABLE, INTEGER, INTEGER) 15.99/5.32 Replaced non-predefined constructor symbols by 0. 15.99/5.32 ---------------------------------------- 15.99/5.32 15.99/5.32 (16) 15.99/5.32 Obligation: 15.99/5.32 Rules: 15.99/5.32 f5348_0_createList_LE(i1231:0:0, o10123[LinkedList$Entry.previous]o10121:0:0, o10123[LinkedList$Entry.previous]o10121:0:0, o10122[LinkedList$Entry.next]o10122:0:0, o10122[LinkedList$Entry.next]o10120:0:0, o10121[LinkedList$Entry.previous]o10121:0:0, o10121[LinkedList$Entry.previous]o10120:0:0, o10123[LinkedList$Entry.previous]o10120:0:0, o10121[LinkedList$Entry.previous]o10122:0:0, o10123[LinkedList$Entry.previous]o10122:0:0, o10123[LinkedList$Entry.previous]o10120:0:0, o10123[LinkedList$Entry.previous]o10122:0:0, o10122[LinkedList$Entry.next]o10122:0:0, o10123[LinkedList$Entry.previous]o10122:0:0, o10121[LinkedList$Entry.previous]o10122:0:0, o10123[LinkedList$Entry.previous]o10122:0:0, i1291:0:0, i1201:0:0) -> f5348_0_createList_LE(c, o10663[LinkedList$Entry.previous]o10121:0:0, o10123[LinkedList$Entry.previous]o10121:0:0, c1, o10685[LinkedList$Entry.next]o10120:0:0, o10121[LinkedList$Entry.previous]o10121:0:0, o10121[LinkedList$Entry.previous]o10120:0:0, o10663[LinkedList$Entry.previous]o10120:0:0, o10121[LinkedList$Entry.previous]o10122:0:0, c2, o10123[LinkedList$Entry.previous]o10120:0:0, o10123[LinkedList$Entry.previous]o10122:0:0, c3, o10685[LinkedList$Entry.previous]o10663:0:0, o10121[LinkedList$Entry.previous]o10663:0:0, o10663[LinkedList$Entry.previous]o10663:0:0, i1291:0:0, c4) :|: c4 = i1201:0:0 + 1 && (c3 = 1 && (c2 = 1 && (c1 = 4 && c = i1231:0:0 - 1))) && (o10121[LinkedList$Entry.previous]o10122:0:0 > 0 && o10123[LinkedList$Entry.previous]o10121:0:0 > 0 && o10121[LinkedList$Entry.previous]o10121:0:0 > 0 && o10121[LinkedList$Entry.previous]o10120:0:0 > 0 && o10123[LinkedList$Entry.previous]o10122:0:0 > 0 && o10123[LinkedList$Entry.previous]o10120:0:0 > 0 && o10122[LinkedList$Entry.next]o10122:0:0 > 0 && o10122[LinkedList$Entry.next]o10120:0:0 > 0 && i1201:0:0 > -1 && i1291:0:0 > i1201:0:0 && i1231:0:0 > 0 && i1291:0:0 > -1) 15.99/5.32 f5348_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) -> f5348_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) 15.99/5.32 15.99/5.32 ---------------------------------------- 15.99/5.32 15.99/5.32 (17) PolynomialOrderProcessor (EQUIVALENT) 15.99/5.32 Found the following polynomial interpretation: 15.99/5.32 [f5348_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 15.99/5.32 15.99/5.32 The following rules are decreasing: 15.99/5.32 f5348_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) -> f5348_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) 15.99/5.32 The following rules are bounded: 15.99/5.32 f5348_0_createList_LE(i1231:0:0, o10123[LinkedList$Entry.previous]o10121:0:0, o10123[LinkedList$Entry.previous]o10121:0:0, o10122[LinkedList$Entry.next]o10122:0:0, o10122[LinkedList$Entry.next]o10120:0:0, o10121[LinkedList$Entry.previous]o10121:0:0, o10121[LinkedList$Entry.previous]o10120:0:0, o10123[LinkedList$Entry.previous]o10120:0:0, o10121[LinkedList$Entry.previous]o10122:0:0, o10123[LinkedList$Entry.previous]o10122:0:0, o10123[LinkedList$Entry.previous]o10120:0:0, o10123[LinkedList$Entry.previous]o10122:0:0, o10122[LinkedList$Entry.next]o10122:0:0, o10123[LinkedList$Entry.previous]o10122:0:0, o10121[LinkedList$Entry.previous]o10122:0:0, o10123[LinkedList$Entry.previous]o10122:0:0, i1291:0:0, i1201:0:0) -> f5348_0_createList_LE(c, o10663[LinkedList$Entry.previous]o10121:0:0, o10123[LinkedList$Entry.previous]o10121:0:0, c1, o10685[LinkedList$Entry.next]o10120:0:0, o10121[LinkedList$Entry.previous]o10121:0:0, o10121[LinkedList$Entry.previous]o10120:0:0, o10663[LinkedList$Entry.previous]o10120:0:0, o10121[LinkedList$Entry.previous]o10122:0:0, c2, o10123[LinkedList$Entry.previous]o10120:0:0, o10123[LinkedList$Entry.previous]o10122:0:0, c3, o10685[LinkedList$Entry.previous]o10663:0:0, o10121[LinkedList$Entry.previous]o10663:0:0, o10663[LinkedList$Entry.previous]o10663:0:0, i1291:0:0, c4) :|: c4 = i1201:0:0 + 1 && (c3 = 1 && (c2 = 1 && (c1 = 4 && c = i1231:0:0 - 1))) && (o10121[LinkedList$Entry.previous]o10122:0:0 > 0 && o10123[LinkedList$Entry.previous]o10121:0:0 > 0 && o10121[LinkedList$Entry.previous]o10121:0:0 > 0 && o10121[LinkedList$Entry.previous]o10120:0:0 > 0 && o10123[LinkedList$Entry.previous]o10122:0:0 > 0 && o10123[LinkedList$Entry.previous]o10120:0:0 > 0 && o10122[LinkedList$Entry.next]o10122:0:0 > 0 && o10122[LinkedList$Entry.next]o10120:0:0 > 0 && i1201:0:0 > -1 && i1291:0:0 > i1201:0:0 && i1231:0:0 > 0 && i1291:0:0 > -1) 15.99/5.32 f5348_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) -> f5348_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) 15.99/5.32 15.99/5.32 ---------------------------------------- 15.99/5.32 15.99/5.32 (18) 15.99/5.32 Obligation: 15.99/5.32 Rules: 15.99/5.32 f5348_0_createList_LE(i1231:0:0, o10123[LinkedList$Entry.previous]o10121:0:0, o10123[LinkedList$Entry.previous]o10121:0:0, o10122[LinkedList$Entry.next]o10122:0:0, o10122[LinkedList$Entry.next]o10120:0:0, o10121[LinkedList$Entry.previous]o10121:0:0, o10121[LinkedList$Entry.previous]o10120:0:0, o10123[LinkedList$Entry.previous]o10120:0:0, o10121[LinkedList$Entry.previous]o10122:0:0, o10123[LinkedList$Entry.previous]o10122:0:0, o10123[LinkedList$Entry.previous]o10120:0:0, o10123[LinkedList$Entry.previous]o10122:0:0, o10122[LinkedList$Entry.next]o10122:0:0, o10123[LinkedList$Entry.previous]o10122:0:0, o10121[LinkedList$Entry.previous]o10122:0:0, o10123[LinkedList$Entry.previous]o10122:0:0, i1291:0:0, i1201:0:0) -> f5348_0_createList_LE(c, o10663[LinkedList$Entry.previous]o10121:0:0, o10123[LinkedList$Entry.previous]o10121:0:0, c1, o10685[LinkedList$Entry.next]o10120:0:0, o10121[LinkedList$Entry.previous]o10121:0:0, o10121[LinkedList$Entry.previous]o10120:0:0, o10663[LinkedList$Entry.previous]o10120:0:0, o10121[LinkedList$Entry.previous]o10122:0:0, c2, o10123[LinkedList$Entry.previous]o10120:0:0, o10123[LinkedList$Entry.previous]o10122:0:0, c3, o10685[LinkedList$Entry.previous]o10663:0:0, o10121[LinkedList$Entry.previous]o10663:0:0, o10663[LinkedList$Entry.previous]o10663:0:0, i1291:0:0, c4) :|: c4 = i1201:0:0 + 1 && (c3 = 1 && (c2 = 1 && (c1 = 4 && c = i1231:0:0 - 1))) && (o10121[LinkedList$Entry.previous]o10122:0:0 > 0 && o10123[LinkedList$Entry.previous]o10121:0:0 > 0 && o10121[LinkedList$Entry.previous]o10121:0:0 > 0 && o10121[LinkedList$Entry.previous]o10120:0:0 > 0 && o10123[LinkedList$Entry.previous]o10122:0:0 > 0 && o10123[LinkedList$Entry.previous]o10120:0:0 > 0 && o10122[LinkedList$Entry.next]o10122:0:0 > 0 && o10122[LinkedList$Entry.next]o10120:0:0 > 0 && i1201:0:0 > -1 && i1291:0:0 > i1201:0:0 && i1231:0:0 > 0 && i1291:0:0 > -1) 15.99/5.32 15.99/5.32 ---------------------------------------- 15.99/5.32 15.99/5.32 (19) PolynomialOrderProcessor (EQUIVALENT) 15.99/5.32 Found the following polynomial interpretation: 15.99/5.32 [f5348_0_createList_LE(x, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12, x13, x14, x15, x16, x17)] = x12 + 2*x17 - x3 15.99/5.32 15.99/5.32 The following rules are decreasing: 15.99/5.32 f5348_0_createList_LE(i1231:0:0, o10123[LinkedList$Entry.previous]o10121:0:0, o10123[LinkedList$Entry.previous]o10121:0:0, o10122[LinkedList$Entry.next]o10122:0:0, o10122[LinkedList$Entry.next]o10120:0:0, o10121[LinkedList$Entry.previous]o10121:0:0, o10121[LinkedList$Entry.previous]o10120:0:0, o10123[LinkedList$Entry.previous]o10120:0:0, o10121[LinkedList$Entry.previous]o10122:0:0, o10123[LinkedList$Entry.previous]o10122:0:0, o10123[LinkedList$Entry.previous]o10120:0:0, o10123[LinkedList$Entry.previous]o10122:0:0, o10122[LinkedList$Entry.next]o10122:0:0, o10123[LinkedList$Entry.previous]o10122:0:0, o10121[LinkedList$Entry.previous]o10122:0:0, o10123[LinkedList$Entry.previous]o10122:0:0, i1291:0:0, i1201:0:0) -> f5348_0_createList_LE(c, o10663[LinkedList$Entry.previous]o10121:0:0, o10123[LinkedList$Entry.previous]o10121:0:0, c1, o10685[LinkedList$Entry.next]o10120:0:0, o10121[LinkedList$Entry.previous]o10121:0:0, o10121[LinkedList$Entry.previous]o10120:0:0, o10663[LinkedList$Entry.previous]o10120:0:0, o10121[LinkedList$Entry.previous]o10122:0:0, c2, o10123[LinkedList$Entry.previous]o10120:0:0, o10123[LinkedList$Entry.previous]o10122:0:0, c3, o10685[LinkedList$Entry.previous]o10663:0:0, o10121[LinkedList$Entry.previous]o10663:0:0, o10663[LinkedList$Entry.previous]o10663:0:0, i1291:0:0, c4) :|: c4 = i1201:0:0 + 1 && (c3 = 1 && (c2 = 1 && (c1 = 4 && c = i1231:0:0 - 1))) && (o10121[LinkedList$Entry.previous]o10122:0:0 > 0 && o10123[LinkedList$Entry.previous]o10121:0:0 > 0 && o10121[LinkedList$Entry.previous]o10121:0:0 > 0 && o10121[LinkedList$Entry.previous]o10120:0:0 > 0 && o10123[LinkedList$Entry.previous]o10122:0:0 > 0 && o10123[LinkedList$Entry.previous]o10120:0:0 > 0 && o10122[LinkedList$Entry.next]o10122:0:0 > 0 && o10122[LinkedList$Entry.next]o10120:0:0 > 0 && i1201:0:0 > -1 && i1291:0:0 > i1201:0:0 && i1231:0:0 > 0 && i1291:0:0 > -1) 15.99/5.32 The following rules are bounded: 15.99/5.32 f5348_0_createList_LE(i1231:0:0, o10123[LinkedList$Entry.previous]o10121:0:0, o10123[LinkedList$Entry.previous]o10121:0:0, o10122[LinkedList$Entry.next]o10122:0:0, o10122[LinkedList$Entry.next]o10120:0:0, o10121[LinkedList$Entry.previous]o10121:0:0, o10121[LinkedList$Entry.previous]o10120:0:0, o10123[LinkedList$Entry.previous]o10120:0:0, o10121[LinkedList$Entry.previous]o10122:0:0, o10123[LinkedList$Entry.previous]o10122:0:0, o10123[LinkedList$Entry.previous]o10120:0:0, o10123[LinkedList$Entry.previous]o10122:0:0, o10122[LinkedList$Entry.next]o10122:0:0, o10123[LinkedList$Entry.previous]o10122:0:0, o10121[LinkedList$Entry.previous]o10122:0:0, o10123[LinkedList$Entry.previous]o10122:0:0, i1291:0:0, i1201:0:0) -> f5348_0_createList_LE(c, o10663[LinkedList$Entry.previous]o10121:0:0, o10123[LinkedList$Entry.previous]o10121:0:0, c1, o10685[LinkedList$Entry.next]o10120:0:0, o10121[LinkedList$Entry.previous]o10121:0:0, o10121[LinkedList$Entry.previous]o10120:0:0, o10663[LinkedList$Entry.previous]o10120:0:0, o10121[LinkedList$Entry.previous]o10122:0:0, c2, o10123[LinkedList$Entry.previous]o10120:0:0, o10123[LinkedList$Entry.previous]o10122:0:0, c3, o10685[LinkedList$Entry.previous]o10663:0:0, o10121[LinkedList$Entry.previous]o10663:0:0, o10663[LinkedList$Entry.previous]o10663:0:0, i1291:0:0, c4) :|: c4 = i1201:0:0 + 1 && (c3 = 1 && (c2 = 1 && (c1 = 4 && c = i1231:0:0 - 1))) && (o10121[LinkedList$Entry.previous]o10122:0:0 > 0 && o10123[LinkedList$Entry.previous]o10121:0:0 > 0 && o10121[LinkedList$Entry.previous]o10121:0:0 > 0 && o10121[LinkedList$Entry.previous]o10120:0:0 > 0 && o10123[LinkedList$Entry.previous]o10122:0:0 > 0 && o10123[LinkedList$Entry.previous]o10120:0:0 > 0 && o10122[LinkedList$Entry.next]o10122:0:0 > 0 && o10122[LinkedList$Entry.next]o10120:0:0 > 0 && i1201:0:0 > -1 && i1291:0:0 > i1201:0:0 && i1231:0:0 > 0 && i1291:0:0 > -1) 15.99/5.32 15.99/5.32 ---------------------------------------- 15.99/5.32 15.99/5.32 (20) 15.99/5.32 YES 16.09/6.90 EOF