Uses of Class
eu.simuline.util.TwoSidedList.Direction
-
Packages that use TwoSidedList.Direction Package Description eu.simuline.util Utility classes: very inhomogeneous. -
-
Uses of TwoSidedList.Direction in eu.simuline.util
Methods in eu.simuline.util that return TwoSidedList.Direction Modifier and Type Method Description static TwoSidedList.DirectionTwoSidedList.Direction. valueOf(String name)Returns the enum constant of this type with the specified name.static TwoSidedList.Direction[]TwoSidedList.Direction. values()Returns an array containing the constants of this enum type, in the order they are declared.Methods in eu.simuline.util with parameters of type TwoSidedList.Direction Modifier and Type Method Description voidTwoSidedList. add(int ind, E obj, TwoSidedList.Direction dir)Insertsobjat the specified positionindin this list (optional operation).booleanTwoSidedList. addAll(int ind, Collection<? extends E> coll, TwoSidedList.Direction dir)Inserts all of the elements incollinto this list at the specified position (optional operation).private voidTwoSidedList. checkRange(int ind, TwoSidedList.Direction dir)Checks whether indexindis in range and throws an appropriate exception if not.ETwoSidedList. remove(int ind, TwoSidedList.Direction dir)Removes the element at the specified position in this list (optional operation).booleanTwoSidedList. removeAll(Collection<?> coll, TwoSidedList.Direction dir)Removes from this list all of its elements that are contained incoll(optional operation).booleanTwoSidedList. retainAll(Collection<?> coll, TwoSidedList.Direction dir)Retains only the elements in this list that are contained incoll(optional operation).
-