Schnittstelle IndexRequestable<E>
- Typparameter:
E
- is the type of the elements aIndexRequestable
.
- Alle bekannten Unterschnittstellen:
IArrayList<E>
,ICachingContainer<E>
,IContainer<E>
,ILinkedList<E>
,IMatrix<E>
,ISqlRecord
- Alle bekannten Implementierungsklassen:
ArrayList
,ArrayView
,CachingContainer
,Container
,ContainerView
,ContainerView
,FilterContainerView
,ImmutableList
,IterableView
,LinkedList
,Matrix
,MatrixColumn
,MatrixRow
,MultiContainerView
,SqlRecord
public interface IndexRequestable<E>
- Version:
- 2024-11-12
- Autor:
- Silvan Wyss
-
Methodenübersicht
-
Methodendetails
-
get1BasedIndexOfFirst
- Parameter:
selector
-- Gibt zurück:
- the 1-based index of the first element the given selector selects
from the current
IndexRequestable
. Ignores null elements. - Löst aus:
RuntimeException
- if the given selector is null.RuntimeException
- if the currentIndexRequestable
does not contain an element the given selector selects.
-
get1BasedIndexOfFirstEqualElement
- Parameter:
object
-- Gibt zurück:
- the 1-based index of the first element of the current
IndexRequestable
that equals the given object. - Löst aus:
RuntimeException
- if the currentIndexRequestable
does not contain an element that equals the given object.
-
get1BasedIndexOfFirstOccurrenceOf
- Parameter:
object
-- Gibt zurück:
- the 1-based index of the first occurrence of the given object in the
current
IndexRequestable
. - Löst aus:
RuntimeException
- if the currentIndexRequestable
does not contain the given object.
-