public interface SequentialCollectionOperations extends OrderedCollectionOperations
| Modifier and Type | Method and Description |
|---|---|
void |
add_element_as_first_set_iterator(Any element,
Iterator where) |
void |
add_element_as_first(Any element) |
void |
add_element_as_last_set_iterator(Any element,
Iterator where) |
void |
add_element_as_last(Any element) |
void |
add_element_as_next(Any element,
Iterator where) |
void |
add_element_as_previous(Any element,
Iterator where) |
void |
add_element_at_position_set_iterator(int position,
Any element,
Iterator where) |
void |
add_element_at_position(int position,
Any element) |
void |
replace_element_at_position(int position,
Any element) |
void |
replace_first_element(Any element) |
void |
replace_last_element(Any element) |
void |
reverse() |
void |
sort(Comparator comparison) |
create_ordered_iterator, remove_element_at_position, remove_first_element, remove_last_element, retrieve_element_at_position, retrieve_first_element, retrieve_last_elementadd_all_from, add_element_set_iterator, add_element, all_elements_do, create_iterator, destroy, element_type, is_empty, number_of_elements, remove_all, remove_element_at, replace_element_at, retrieve_element_atvoid add_element_as_first(Any element) throws ElementInvalid
ElementInvalidvoid add_element_as_first_set_iterator(Any element, Iterator where) throws ElementInvalid, IteratorInvalid
ElementInvalidIteratorInvalidvoid add_element_as_last(Any element) throws ElementInvalid
ElementInvalidvoid add_element_as_last_set_iterator(Any element, Iterator where) throws ElementInvalid, IteratorInvalid
ElementInvalidIteratorInvalidvoid add_element_as_next(Any element, Iterator where) throws ElementInvalid, IteratorInvalid
ElementInvalidIteratorInvalidvoid add_element_as_previous(Any element, Iterator where) throws ElementInvalid, IteratorInvalid
ElementInvalidIteratorInvalidvoid add_element_at_position(int position,
Any element)
throws PositionInvalid,
ElementInvalid
PositionInvalidElementInvalidvoid add_element_at_position_set_iterator(int position,
Any element,
Iterator where)
throws PositionInvalid,
ElementInvalid,
IteratorInvalid
void replace_element_at_position(int position,
Any element)
throws PositionInvalid,
ElementInvalid
PositionInvalidElementInvalidvoid replace_first_element(Any element) throws EmptyCollection, ElementInvalid
EmptyCollectionElementInvalidvoid replace_last_element(Any element) throws EmptyCollection, ElementInvalid
EmptyCollectionElementInvalidvoid sort(Comparator comparison)
void reverse()
Copyright © 2015 JacORB. All rights reserved.