| Package | Description |
|---|---|
| eu.simuline.util |
Utility classes: very inhomogeneous.
|
| Modifier and Type | Method and Description |
|---|---|
static TwoSidedList.Direction |
TwoSidedList.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.
|
| Modifier and Type | Method and Description |
|---|---|
void |
TwoSidedList.add(int ind,
E obj,
TwoSidedList.Direction dir)
Inserts
obj at the specified position ind
in this list (optional operation). |
boolean |
TwoSidedList.addAll(int ind,
Collection<? extends E> coll,
TwoSidedList.Direction dir)
Inserts all of the elements in
coll into this list
at the specified position (optional operation). |
private void |
TwoSidedList.checkRange(int ind,
TwoSidedList.Direction dir)
Checks whether index
ind is in range
and throws an appropriate exception if not. |
E |
TwoSidedList.remove(int ind,
TwoSidedList.Direction dir)
Removes the element at the specified position in this list
(optional operation).
|
boolean |
TwoSidedList.removeAll(Collection<?> coll,
TwoSidedList.Direction dir)
Removes from this list all of its elements
that are contained in
coll (optional operation). |
boolean |
TwoSidedList.retainAll(Collection<?> coll,
TwoSidedList.Direction dir)
Retains only the elements in this list
that are contained in
coll (optional operation). |
Copyright © 2012–2018 Simuline Organization (l2r). All rights reserved.