Uses of Class
eu.simuline.util.TwoSidedList
-
Packages that use TwoSidedList Package Description eu.simuline.util Utility classes: very inhomogeneous. -
-
Uses of TwoSidedList in eu.simuline.util
Methods in eu.simuline.util that return TwoSidedList Modifier and Type Method Description static <E> TwoSidedList<E>TwoSidedList. create(TwoSidedList<? extends E> other)static <E> TwoSidedList<E>TwoSidedList. create(List<? extends E> list)Creates a newTwoSidedListcontaining the elements oflistin proper sequence.static <E> TwoSidedList<E>TwoSidedList. create(List<? extends E> list, int firstIndex)Creates a newTwoSidedListcontaining the elements oflistin proper sequence with first index given byfirstIndex.TwoSidedList<E>TwoSidedList. subList2(int indStart, int indEnd)Returns a view of the portion of this twosided list between the specifiedfromIndex, inclusive, andtoIndex, exclusive.Methods in eu.simuline.util with parameters of type TwoSidedList Modifier and Type Method Description (package private) abstract voidTwoSidedList.Direction. checkAdd1(TwoSidedList<?> list)Checks inadd(int, Object, Direction)whether by adding elements causes underrun infirstIndex()or overrun inminFreeIndex().(package private) abstract voidTwoSidedList.Direction. checkAddAll(int size, TwoSidedList<?> list)Checks inaddAll(int, Collection, Direction)whether by adding elements causes underrun infirstIndex()or overrun inminFreeIndex().(package private) abstract voidTwoSidedList.Direction. checkRange(int ind, TwoSidedList<?> list)Checks whether indexindis in the range oflistand throws an appropriate exception if not.static <E> TwoSidedList<E>TwoSidedList. create(TwoSidedList<? extends E> other)Constructors in eu.simuline.util with parameters of type TwoSidedList Constructor Description TwoSidedList(TwoSidedList<E> other)Copy constructor with shallow copy of the wrapped listlist.
-